-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplot_data.gplot
More file actions
49 lines (40 loc) · 1.72 KB
/
plot_data.gplot
File metadata and controls
49 lines (40 loc) · 1.72 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
reset
set datafile separator comma
set term png #output terminal and file
set xlabel "Cycles"
set format y "%.3f"
set autoscale
set style line 1 lc rgb '#0025ad' lt 1 lw 3
set style line 2 lc rgb '#09ad00' lt 1 lw 3
set output "reductions.png"
plot "stats.output.18" using 1:7 lw 3 w l sm b title "18.3", \
"stats.output.21" using 1:7 lw 3 w l sm b title "21.0rc2"
set output "mem.png"
plot "stats.output.18" using 1:3 lw 3 w l sm b title "18.3", \
"stats.output.21" using 1:3 lw 3 w l sm b title "21.0rc2"
set autoscale
set output "cycle_time.png"
plot "stats.output.18" using 1:4 lw 3 w l sm b title "18.3", \
"stats.output.21" using 1:4 lw 3 w l sm b title "21.0rc2"
set autoscale
set output "rt.png"
plot "stats.output.18" using 1:5 lw 3 w l sm b title "18.3", \
"stats.output.21" using 1:5 lw 3 w l sm b title "21.0rc2"
set output "rt_and_ct.png"
plot "stats.output.18" using 1:5:6 lw 3,3 w l sm b title "18.3", \
'' using 1:5 w l title 'RT(18.3)', \
'' using 1:6 w l title 'CT(18.3)', \
"stats.output.21" using 1:5:6 lw 3,3 w l sm b title "21.0rc2", \
'' using 1:5 w l title 'RT(21.0rc2)', \
'' using 1:6 w l title 'CT(21.0rc2)'
set autoscale
set output "utilization.png"
plot "stats.output.18" every ::100 using 1:9 lw 3 w l sm b title "18.3", \
"stats.output.21" every ::100 using 1:9 lw 3 w l sm b title "21.0rc2"
set autoscale
set output "gc_runs.png"
plot "stats.output.18" every ::100 using 1:10 lw 3 w l sm b title "18.3", \
"stats.output.21" every ::100 using 1:10 lw 3 w l sm b title "21.0rc2"
set output "gc_words_reclaimed.png"
plot "stats.output.18" every ::100 using 1:11 lw 3 w l sm b title "18.3", \
"stats.output.21" every ::100 using 1:11 lw 3 w l sm b title "21.0rc2"