Added new files...

This commit is contained in:
Zhengyi Chen 2024-03-20 14:14:32 +00:00
parent 7b475ae100
commit 4fcb10fddc
6 changed files with 27 additions and 0 deletions

View file

@ -0,0 +1,8 @@
# Too tired to gather "proper" data...
# x: alloc_order y: avg. runtime (us)
0 39.555
2 52.955
4 54.005
6 85.529
8 276.263
10 1060.197

View file

@ -0,0 +1,13 @@
# Again, too tired to write any script
set terminal pdfcairo size 6in, 4in
set output "var_alloc_size.pdf"
set style data linespoints
set autoscale
set logscale y 10
set xrange [-1:11]
set xlabel "Order"
set ylabel "Avg. Latency (μs)"
plot "var_alloc_size.dat"