1
1
mirror of https://github.com/BLAKE2/BLAKE2 synced 2024-09-18 08:51:39 +02:00
BLAKE2/bench/do.gplot

19 lines
419 B
Plaintext
Raw Normal View History

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
#set terminal png
#set output "plotcycles.png"
2013-02-01 16:44:36 +01:00
set terminal pdfcairo
set output "plotcycles.pdf"
2016-06-12 18:36:57 +02: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"
set output "plotcycles.pdf"
2016-06-12 18:36:57 +02:00
replot