set terminal png size 800,600
set output 'images/perf-al-append.png'
set title "Append: Array List Variants"
set xlabel "Total Collection Size"
set ylabel "Average Clocks Per Element Appended"
set yrange [0 : 40]
plot "data/append-al-initial.txt" skip 1 using 1:3 with lines \
title "Array List (initial)", \
"data/append-al-insertopt.txt" skip 1 using 1:3 with lines \
title "Array List (ins-opt)", \
"data/append-al-resizeopt.txt" skip 1 using 1:3 with lines \
title "Array List (res-opt)", \
"data/append-al-insertopt-resizeopt.txt" skip 1 using 1:3 with lines \
title "Array List (ins/res-opt)", \
"data/append-al-fastest.txt" skip 1 using 1:3 with lines \
title "Array List (-O3/opt)"
-
Adam Blank authored13eee77b