set terminal png notransparent crop enhanced size 800,600 font "arial,14"
set grid xtics ytics mytics
set key top right
set logscale y
set xlabel "nb elements"
set ylabel "elapsed time per element [ns/el]"
set output "generated/hadamardProductElapsedTimeNsEl.png"
plot "generated/hadamard_product_perf.txt" using 1:($4/$1):($3/$1):($5/$1) title "Hadamard Product Median Rust" with errorlines lw 2
set ylabel "elapsed time [ns]"
set output "generated/hadamardProductElapsedTimeNs.png"
plot "generated/hadamard_product_perf.txt" using 1:4:3:5 title "Hadamard Product Median Rust" with errorlines lw 2