2016-11-09 22:30:52 +01:00
|
|
|
maxx = 256
|
2013-02-01 16:44:36 +01:00
|
|
|
set xrange [1:maxx]
|
|
|
|
set xlabel "bytes "
|
|
|
|
set ylabel "cycles"
|
|
|
|
set xtics 0,32,maxx
|
|
|
|
set grid
|
|
|
|
set key left
|
2016-06-12 18:36:57 +02:00
|
|
|
|
2016-11-09 22:30:52 +01:00
|
|
|
#set terminal png
|
|
|
|
#set output "plotcycles.png"
|
2013-02-01 16:44:36 +01:00
|
|
|
set terminal pdfcairo
|
2016-11-09 22:30:52 +01:00
|
|
|
set output "plotcycles.pdf"
|
2016-06-12 18:36:57 +02:00
|
|
|
|
2016-11-09 22:30:52 +01:00
|
|
|
plot "blake2b.data" using 1:2 with lines title "BLAKE2b"
|
2016-06-12 18:36:57 +02:00
|
|
|
replot "blake2s.data" using 1:2 with lines title "BLAKE2s"
|
|
|
|
replot "md5.data" using 1:2 with lines title "MD5"
|
|
|
|
|
2016-11-09 22:30:52 +01:00
|
|
|
set output "plotcycles.pdf"
|
2016-06-12 18:36:57 +02:00
|
|
|
replot
|