12 lines
205 B
Gnuplot
12 lines
205 B
Gnuplot
|
load '../main.plt'
|
||
|
|
||
|
set output 'server.eps'
|
||
|
|
||
|
set nokey
|
||
|
|
||
|
set xlabel "Number of Participating Minions"
|
||
|
set ylabel "Approximate CPU utilization (% CPU)"
|
||
|
|
||
|
# set log xy
|
||
|
plot 'server.out' u 1:2 w lp t 'Speedup'
|