Welcome to mirror list, hosted at ThFree Co, Russian Federation.

do.gplot « bench - github.com/BLAKE2/BLAKE2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bb7575ef8899ff1f082a8c5d851580289812896d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
maxx = 256
set xrange [1:maxx]
set xlabel "bytes "
set ylabel "cycles"
set xtics 0,32,maxx
set grid
set key left

#set terminal png
#set output "plotcycles.png"
set terminal pdfcairo
set output "plotcycles.pdf"

plot    "blake2b.data" using 1:2 with lines title "BLAKE2b"
replot  "blake2s.data" using 1:2 with lines title "BLAKE2s"
replot  "md5.data" using 1:2 with lines title "MD5"

set output "plotcycles.pdf"
replot