aboutsummaryrefslogtreecommitdiff
path: root/clap/clap-perf
diff options
context:
space:
mode:
Diffstat (limited to 'clap/clap-perf')
-rw-r--r--clap/clap-perf/clap_perf.dat8
-rw-r--r--clap/clap-perf/clap_perf.pngbin0 -> 9702 bytes
-rwxr-xr-xclap/clap-perf/plot_perf.gp26
3 files changed, 34 insertions, 0 deletions
diff --git a/clap/clap-perf/clap_perf.dat b/clap/clap-perf/clap_perf.dat
new file mode 100644
index 0000000..6a8592c
--- /dev/null
+++ b/clap/clap-perf/clap_perf.dat
@@ -0,0 +1,8 @@
+#Version Date Builder Err Usage Err Parse1 Err Parse2 Err
+1.0 2015-07-07 12408 840 16830 229 21235 725 27387 910
+1.1 2015-07-16 11885 191 16670 595 20919 252 26868 457
+1.2 2015-08-14 12563 587 17190 311 22421 233 28232 624
+1.3 2015-09-01 10534 131 14648 874 18213 1070 24101 361
+1.4 2015-09-09 10223 852 13203 749 18924 1216 23492 944
+1.5 2015-11-12 5422 416 7974 680 9723 792 13389 1151
+2.0 2016-01-27 4783 376 5263 481 9651 1015 10577 191
diff --git a/clap/clap-perf/clap_perf.png b/clap/clap-perf/clap_perf.png
new file mode 100644
index 0000000..caaefb0
--- /dev/null
+++ b/clap/clap-perf/clap_perf.png
Binary files differ
diff --git a/clap/clap-perf/plot_perf.gp b/clap/clap-perf/plot_perf.gp
new file mode 100755
index 0000000..4db6a87
--- /dev/null
+++ b/clap/clap-perf/plot_perf.gp
@@ -0,0 +1,26 @@
+#!/usr/bin/gnuplot
+reset
+set terminal png
+set output "clap_perf.png"
+
+set xlabel "Version"
+set xrange [0.9:2.1]
+set ylabel "Time (ns)"
+set yrange [0:35000]
+
+set title "clap-rs Performance (Parse Time - Lower is Better) by Version"
+set key inside right top
+set grid
+set style line 1 lc rgb '#0060ad' lt 1 lw 1 pt 7 ps .5 # --- blue
+set style line 2 lc rgb '#dd181f' lt 1 lw 1 pt 5 ps .5 # --- red
+set style line 3 lc rgb '#18dd00' lt 1 lw 1 pt 7 ps .5 # --- green
+set style line 4 lc rgb '#000000' lt 1 lw 1 pt 5 ps .5 # --- black
+
+plot "clap_perf.dat" u 1:3:4 notitle w yerrorbars ls 1, \
+ "" u 1:3 t "Create Parser Using Builder" w lines ls 1, \
+ "" u 1:5:6 notitle w yerrorbars ls 2, \
+ "" u 1:5 t "Create Parser Usage String" w lines ls 2, \
+ "" u 1:7:8 notitle "Parse Complex Args" w yerrorbars ls 3, \
+ "" u 1:7 t "Parse Complex Args" w lines ls 3, \
+ "" u 1:9:10 notitle w yerrorbars ls 4, \
+ "" u 1:9 t "Parse Very Complex Args" w lines ls 4