File: float.template

package info (click to toggle)
moarvm 2022.12%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 42,724 kB
  • sloc: cpp: 378,682; ansic: 288,257; perl: 8,229; java: 2,682; python: 1,287; makefile: 820; sh: 292
file content (13 lines) | stat: -rw-r--r-- 602 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
set title ""
set datafile separator ","
set linetype 1 lc rgb '#396AB1'
set linetype 2 lc rgb '#DA7C30'
set linetype 3 lc rgb '#3E9651'
set term pdf size 25cm, 15cm
set key above left horizontal Left reverse samplen 0.1
set ylabel "Time in ns"
set xrange [0:4294967296.0]
set xtics ("0" 0, "2^{30}" 1073741824.0, "2^{31}" 2147483648.0, "2^{31}+2^{30}" 3221225472.0, "2^{32}" 4294967296.0)
plot "INPUT_FILE" using 2:3 with points ps 0.5 title "Ryƫ", \
     "INPUT_FILE" using 2:4 with points ps 0.5 title "COMPARISON_NAME_1", \
     "INPUT_FILE" using 2:5 with points ps 0.5 title "COMPARISON_NAME_2",