| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 | #!/usr/bin/gnuplot -persist# StarPU --- Runtime system for heterogeneous multicore architectures.## Copyright (C) 2008-2020  Université de Bordeaux, CNRS (LaBRI UMR 5800), Inria## StarPU is free software; you can redistribute it and/or modify# it under the terms of the GNU Lesser General Public License as published by# the Free Software Foundation; either version 2.1 of the License, or (at# your option) any later version.## StarPU is distributed in the hope that it will be useful, but# WITHOUT ANY WARRANTY; without even the implied warranty of# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.## See the GNU Lesser General Public License in COPYING.LGPL for more details.#set term postscript eps enhanced colorset output "gflops_sched.eps"set title "LU Decomposition : scheduling strategies"set grid yset key boxset xlabel "problem size (unknowns)"set ylabel "GFlop/s"set logscale x#set pointsize	2set key right bottomset datafile missing 'x'plot "timings/gflops.merged.data" usi 1:(2*$1*$1*$1 / (3*$2* 1000000)) with linespoint title "greedy"  ,\     "timings/gflops.merged.data" usi 1:(2*$1*$1*$1 / (3*$4* 1000000)) with linespoint title "prio" 	    ,\     "timings/gflops.merged.data" usi 1:(2*$1*$1*$1 / (3*$4* 1000000)) with linespoint title "ws" 	    ,\     "timings/gflops.merged.data" usi 1:(2*$1*$1*$1 / (3*$6* 1000000)) with linespoint title "lws" set output "gflops_sched_gain.eps"set title "LU Decomposition : scheduling strategies : gain"set grid yset key boxset xlabel "problem size (unknowns)"set ylabel "Gain"set logscale x#set pointsize	2set key right bottomset datafile missing 'x'plot "timings/gflops.merged.data" usi 1:(100*(($2 / $4)-1)) with linespoint title "gain prio"	,\	"timings/gflops.merged.data" usi 1:(100*(($2 / $6)-1)) with linespoint title "gain ws"    ,\	"timings/gflops.merged.data" usi 1:(100*(($2 / $6)-1)) with linespoint title "gain lws"    
 |