We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 27f5b35 commit de66b31Copy full SHA for de66b31
scripts/gen_mem_disk_graph.m
@@ -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