search_benchmarks/times.plt

16 lines
560 B
Gnuplot

set log x
set log y
set xrange [1:1000]
set yrange [1:3000]
set grid
set terminal pngcairo size 1024, 1024
set output "times.png"
plot "data_c8" using 2:($3/$1/4) w l lw 2 t "linear, iterator, consecutive", \
"" using 2:($4/$1/4) w l lw 2 t "linear, loop, consecutive", \
"" using 2:($5/$1/4) w l lw 2 t "binary, consecutive", \
"data_c7" using 2:($3/$1/4) w l lw 2 t "linear, iterator, spread", \
"" using 2:($4/$1/4) w l lw 2 t "linear, loop, spread", \
"" using 2:($5/$1/4) w l lw 2 t "binary, spread"