diff options
Diffstat (limited to 'report/graphs/tot-time.gp')
-rw-r--r-- | report/graphs/tot-time.gp | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/report/graphs/tot-time.gp b/report/graphs/tot-time.gp new file mode 100644 index 0000000..3cc3d84 --- /dev/null +++ b/report/graphs/tot-time.gp @@ -0,0 +1,18 @@ +# combox - report - 2016 +# +# +# benchmark - total time to process all files - gnuplot +# +# By Siddharth Ravikumar <sravik@bgsu.edu> +# +# No rights reserved. Dedicated to Public Domain. +# <https://creativecommons.org/publicdomain/zero/1.0/> + +set terminal latex size 13cm, 8cm +set output "tot-time.tex" +set format xy '%g' +set xlabel 'data processed (MiB)' +set ylabel 'time taken (s)' offset 0, 2, 0 +set grid +set key left +plot 'tot-time' u 1:2 t 'time to process all files' w linespoints |