search_benchmarks/times.plt

22 lines
771 B
Gnuplot
Raw Normal View History

set log x
set log y
set xrange [1:1000]
2024-02-23 06:04:49 +00:00
set yrange [1:3000]
set grid
set terminal pngcairo size 1024, 1024
2024-02-23 16:07:53 +00:00
set output "times_e2.png"
2024-02-23 16:07:53 +00:00
plot "<paste data_e2 data_e1" \
2024-02-23 15:02:54 +00:00
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", \
"" using 2:($8/$1/4) w l lw 2 t "linear, iterator, spread", \
"" using 2:($9/$1/4) w l lw 2 t "linear, loop, spread", \
"" using 2:($10/$1/4) w l lw 2 t "binary, spread"
# plot "<paste data_d7 data_d8" \
# using 2:(($8-$3)/$1/4) w l lw 2 t "linear, iterator", \
# "" using 2:(($9-$4)/$1/4) w l lw 2 t "linear, loop", \
# "" using 2:(($10-$5)/$1/4) w l lw 2 t "binary"