File: alloc.gnuplot

package info (click to toggle)
rust-vec-collections 0.4.3-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 3,088 kB
  • sloc: makefile: 2
file content (13 lines) | stat: -rw-r--r-- 508 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
set datafile separator ","
set terminal png size 1024, 768
set output 'alloc.png'
set ylabel "bytes"
set xlabel "size (u32)"
# set key autotitle columnhead
plot \
  'alloc.csv' using 1:2 title 'BTreeSet allocations' with lines, \
  '' using 1:3 title 'BTreeSet permanent' with lines, \
  '' using 1:5 title 'VecSet allocations' with lines, \
  '' using 1:6 title 'VecSet permanent' with lines, \
  '' using 1:8 title 'HashSet allocations' with lines, \
  '' using 1:9 title 'HashSet permanent' with lines, \