-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbench.gp
More file actions
23 lines (20 loc) · 771 Bytes
/
Copy pathbench.gp
File metadata and controls
23 lines (20 loc) · 771 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
set datafile separator comma
set autoscale fix
set ylabel "nanosseconds"
set xlabel "n. of operations"
set terminal pngcairo size 3702,2048
set xzeroaxis
set output "gp_out.png"
sources = system("ls *.csv")
set multiplot layout 3,2 columns
do for [source in sources] {
set title source
plot source using 1:2 title "first" with lines linewidth 3, \
source using 1:3 title "best" with lines linewidth 3, \
source using 1:4 title "bump" with lines linewidth 3, \
source using 1:5 title "debump" with lines linewidth 3, \
source using 1:6 title "pool" with lines linewidth 3, \
source using 1:7 title "statiq" with lines linewidth 3, \
source using 1:8 title "system" with lines linewidth 3
}
unset multiplot