mirror of
https://github.com/cirosantilli/linux-kernel-module-cheat.git
synced 2026-01-25 19:21:35 +01:00
mtops.h is perfect now
This commit is contained in:
25
bst-vs-heap.gnuplot
Executable file
25
bst-vs-heap.gnuplot
Executable file
@@ -0,0 +1,25 @@
|
||||
#!/usr/bin/env gnuplot
|
||||
set terminal png size 1024, 2048
|
||||
set output "bst-vs-heap.tmp.png"
|
||||
set multiplot layout 5,1 title "Heap vs BST vs Hash map insert time"
|
||||
set xlabel "size"
|
||||
set ylabel "nanoseconds"
|
||||
|
||||
set title "Heap"
|
||||
plot "bst_vs_heap.dat" using 1:2 notitle
|
||||
|
||||
set title "Heap (zoom)"
|
||||
set yrange [0:25]
|
||||
plot "bst_vs_heap.dat" using 1:2 notitle
|
||||
|
||||
set title "BST"
|
||||
set yrange [*:*]
|
||||
plot "bst_vs_heap.dat" using 1:3 notitle
|
||||
|
||||
#set title "Hash map"
|
||||
#set yrange [*:*]
|
||||
#plot "bst_vs_heap.dat" using 1:4 notitle
|
||||
#
|
||||
#set title "Hash map zoom"
|
||||
#set yrange [0:350]
|
||||
#plot "bst_vs_heap.dat" using 1:4 notitle
|
||||
Reference in New Issue
Block a user