diff options
Diffstat (limited to 'Client/ThirdParty/fpm/benchmarks/benchmark.gnuplot')
-rw-r--r-- | Client/ThirdParty/fpm/benchmarks/benchmark.gnuplot | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/Client/ThirdParty/fpm/benchmarks/benchmark.gnuplot b/Client/ThirdParty/fpm/benchmarks/benchmark.gnuplot new file mode 100644 index 0000000..e97a3f3 --- /dev/null +++ b/Client/ThirdParty/fpm/benchmarks/benchmark.gnuplot @@ -0,0 +1,20 @@ +#!/usr/bin/gnuplot +set terminal png size 860,350 font "Arial,8" +set datafile separator "," +set datafile missing "-" + +set style data histogram +set style fill solid border linecolor black +set style histogram clustered gap 2 +set boxwidth 1 + +set key left top noenhanced + +set xtics scale 0 +set grid ytics +set ylabel "avg. time (ns)" + +DATA_FILE="performance.csv" +set output "performance.png" + +plot for [COL=2:6] DATA_FILE using COL:xtic(1) title columnheader
\ No newline at end of file |