12 lines
181 B
Gnuplot
12 lines
181 B
Gnuplot
load '../main.plt'
|
|
|
|
set output 'speedup.eps'
|
|
|
|
set nokey
|
|
|
|
set xlabel "Number of Participating Minions"
|
|
set ylabel "Speedup (S_p)"
|
|
|
|
set log xy
|
|
plot 'scale.out' u 1:3 w lp t 'Speedup'
|