diff --git a/gnuplot_templates/common.inc.p b/gnuplot_templates/common.inc.p index fbcfed5..1232119 100644 --- a/gnuplot_templates/common.inc.p +++ b/gnuplot_templates/common.inc.p @@ -13,4 +13,5 @@ set style line 12 lt 2 pt 4 lw 5 # scalloc-eager-reuse set style line 13 lt 4 pt 3 lw 5 # scalloc-static-assign set style line 14 lt 5 pt 3 lw 5 # scalloc-lazy-init set style line 15 lt 6 pt 5 lw 5 # scalloc-hugepage +set style line 16 lt 7 pt 5 lw 5 # scalloc-active-threads diff --git a/gnuplot_templates/plot_access.p b/gnuplot_templates/plot_access.p index bcda9cf..eccb3c8 100644 --- a/gnuplot_templates/plot_access.p +++ b/gnuplot_templates/plot_access.p @@ -30,5 +30,6 @@ plot \ "scalloc-lazy-init-access.dat" using 1:($2/2000000000):($3/2000000000):xticlabel(1) with errorlines ls 14 title 'scalloc-lazy-init', \ "scalloc-hugepage-access.dat" using 1:($2/2000000000):($3/2000000000):xticlabel(1) with errorlines ls 15 title 'scalloc-hugepage', \ "scalloc-access.dat" using 1:($2/2000000000):($3/2000000000):xticlabel(1) with errorlines ls 9 title 'scalloc-cl' \ +"scalloc-active-threads-access.dat" using 1:($2/2000000000):($3/2000000000):xticlabel(1) with errorlines ls 16 title 'scalloc-active-threads' \ ; diff --git a/gnuplot_templates/plot_alloc.p b/gnuplot_templates/plot_alloc.p index 6e766b7..c61ede5 100644 --- a/gnuplot_templates/plot_alloc.p +++ b/gnuplot_templates/plot_alloc.p @@ -32,5 +32,6 @@ plot \ "scalloc-lazy-init-alloc.dat" using 1:($2/2000000000):($3/2000000000):xticlabel(1) with errorlines ls 14 title 'scalloc-lazy-init', \ "scalloc-hugepage-alloc.dat" using 1:($2/2000000000):($3/2000000000):xticlabel(1) with errorlines ls 15 title 'scalloc-hugepage', \ "scalloc-alloc.dat" using 1:($2/2000000000):($3/2000000000):xticlabel(1) with errorlines ls 9 title 'scalloc-cl' \ +"scalloc-active-threads-alloc.dat" using 1:($2/2000000000):($3/2000000000):xticlabel(1) with errorlines ls 16 title 'scalloc-active-threads' \ ; diff --git a/gnuplot_templates/plot_combined.p b/gnuplot_templates/plot_combined.p index 77f3478..d7b700c 100644 --- a/gnuplot_templates/plot_combined.p +++ b/gnuplot_templates/plot_combined.p @@ -31,6 +31,6 @@ plot \ "scalloc-static-combined.dat" using 1:($2/2000000000):($3/2000000000):xticlabel(1) with errorlines ls 13 title 'scalloc-static-assign', \ "scalloc-lazy-init-combined.dat" using 1:($2/2000000000):($3/2000000000):xticlabel(1) with errorlines ls 14 title 'scalloc-lazy-init', \ "scalloc-hugepage-combined.dat" using 1:($2/2000000000):($3/2000000000):xticlabel(1) with errorlines ls 15 title 'scalloc-hugepage', \ -"scalloc-combined.dat" using 1:($2/2000000000):($3/2000000000):xticlabel(1) with errorlines ls 9 title 'scalloc-cl' \ +"scalloc-active-threads-combined.dat" using 1:($2/2000000000):($3/2000000000):xticlabel(1) with errorlines ls 16 title 'scalloc-active-threads' \ ; diff --git a/gnuplot_templates/plot_free.p b/gnuplot_templates/plot_free.p index 471125f..7dede5e 100644 --- a/gnuplot_templates/plot_free.p +++ b/gnuplot_templates/plot_free.p @@ -32,4 +32,5 @@ plot \ "scalloc-lazy-init-free.dat" using 1:($2/2000000000):($3/2000000000):xticlabel(1) with errorlines ls 14 title 'scalloc-lazy-init', \ "scalloc-hugepage-free.dat" using 1:($2/2000000000):($3/2000000000):xticlabel(1) with errorlines ls 15 title 'scalloc-hugepage', \ "scalloc-free.dat" using 1:($2/2000000000):($3/2000000000):xticlabel(1) with errorlines ls 9 title 'scalloc-cl' \ +"scalloc-active-threads-free.dat" using 1:($2/2000000000):($3/2000000000):xticlabel(1) with errorlines ls 16 title 'scalloc-active-threads' \ ; diff --git a/gnuplot_templates/plot_memcons.p b/gnuplot_templates/plot_memcons.p index 7e7bcbf..4f06bd5 100644 --- a/gnuplot_templates/plot_memcons.p +++ b/gnuplot_templates/plot_memcons.p @@ -31,5 +31,5 @@ plot \ "scalloc-static-memcons.dat" using 1:($2/1024):($3/1024):xticlabel(1) with errorlines ls 13 title 'scalloc-static-assign', \ "scalloc-lazy-init-memcons.dat" using 1:($2/1024):($3/1024):xticlabel(1) with errorlines ls 14 title 'scalloc-lazy-init', \ "scalloc-hugepage-memcons.dat" using 1:($2/1024):($3/1024):xticlabel(1) with errorlines ls 15 title 'scalloc-hugepage', \ -"scalloc-memcons.dat" using 1:($2/1024):($3/1024):xticlabel(1) with errorlines ls 9 title 'scalloc-cl' \ +"scalloc-active-threads-memcons.dat" using 1:($2/1024):($3/1024):xticlabel(1) with errorlines ls 16 title 'scalloc-active-threads' \ ;