diff options
author | chai <chaifix@163.com> | 2021-12-01 13:34:22 +0800 |
---|---|---|
committer | chai <chaifix@163.com> | 2021-12-01 13:34:22 +0800 |
commit | 09abf1b529b4226f585ecfbb20866715b901755b (patch) | |
tree | 16929f2a6bee3ad4667bdd006cfcc1e683ab7210 /Client/ThirdParty/fpm/benchmarks/benchmark.gnuplot | |
parent | 84d961f754c905b37420f4d1b3fee8f4e523e58a (diff) |
+fpm
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 |