10 lines
375 B
Gnuplot
10 lines
375 B
Gnuplot
#!/usr/bin/gnuplot -persist
|
|
set title "Boehm-GC: Full vs. Generational Mode (optimized)"
|
|
set xlabel "Interval #"
|
|
set ylabel "Pause Time [ms]"
|
|
set terminal pdfcairo transparent enhanced fontscale 0.5 size 5.00in, 3.00in
|
|
set output "GC_bench_opt.pdf"
|
|
plot "boehm_full_opt.txt" title "full GC" w i, "boehm_incr_opt.txt" title "incr/generational GC" w i
|
|
set output
|
|
# EOF
|