| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 | #!/usr/bin/gnuplot -persist## StarPU# Copyright (C) INRIA 2008-2009 (see AUTHORS file)## This program 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.## This program 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*$6* 1000000)) with linespoint title "ws" 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"    
 |