rustyphoenixmicrobenchmark 1.4.0

Toolset for function micro-benchmarking. Rust equivalent of C++ [PhoenixMicroBenchmark](https://gitlab.in2p3.fr/CTA-LAPP/PHOENIX_LIBS2/test-benchmark/PhoenixMicroBenchmark)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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