Skip to content

Commit de66b31

Browse files
committed
add a graphing script to display mem and state growth during conversion
1 parent 27f5b35 commit de66b31

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

scripts/gen_mem_disk_graph.m

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
M = csvread("monitor.csv");
2+
X = M(:,1) - M(1,1);
3+
plot(X,M(:,2),X,M(:,3)/1024);
4+
legend("memory", "database", "location", "southeast")
5+
title("state and memory growth for the verkle conversion")
6+
ylabel("MB")
7+
xlabel("seconds")
8+
print("monitor.png", "-dpng")

0 commit comments

Comments
 (0)