| 1 | #!/usr/bin/gnuplot -persist |
| 2 | set title "Boehm-GC: Pause Times - Classic vs. Optimized Modes" font ",18" |
| 3 | set xlabel "Interval #" |
| 4 | set xtics out nomirror |
| 5 | set xtic 1000000 |
| 6 | set grid noxtics ytics |
| 7 | set ylabel "Pause Time [ms]" |
| 8 | set terminal pdfcairo transparent enhanced fontscale 0.5 size 5.00in, 3.00in |
| 9 | set key box at 4810000,77 Left enhanced opaque samplen 3 height 0.5 |
| 10 | set output "GC_bench.pdf" |
| 11 | plot "boehm_full.txt" title "{/Monospace -gc boehm\\_full}" w i lt 1, "boehm_incr_opt.txt" title "{/Monospace -gc boehm\\_incr\\_opt}" w i lt 2, "boehm_full_opt.txt" title "{/Monospace -gc boehm\\_full\\_opt}" w i lt 7 |
| 12 | set output |
| 13 | set terminal svg size 900,600 dynamic enhanced |
| 14 | set output "GC_bench.svg" |
| 15 | replot |
| 16 | set output |
| 17 | # EOF |
| 18 | |