Add comprehensive performance metrics and data collection

- Added instructions, cycles, and IPC metrics to all reports
- Created CSV data files for each language with detailed metrics
- Added timeline data (memory and CPU over time) for each run
- Updated all reports with new metrics
- Created analysis script to analyze collected data
- Generated reports for all decimal levels (1, 2, 5, 10, 100, 1000, 2000)

Key findings:
- D has highest IPC (4.00) - most efficient CPU usage
- Crystal is fastest (22ms) - faster than C and C++
- Assembly is most memory efficient (1.4MB)
- Rust and Fortran have IPC 3.11 - good optimization
This commit is contained in:
Ein Anderssono
2026-04-23 14:39:13 +02:00
parent 443172606b
commit a2e13a70a1
303 changed files with 2281 additions and 1810 deletions
+29
View File
@@ -0,0 +1,29 @@
timestamp_ms,memory_bytes,cpu_percent
18,1179648,0
34,1179648,0
53,1179648,0
72,1179648,0
89,1179648,0
107,1179648,0
120,1179648,0
131,1179648,0
143,1179648,0
154,1179648,0
165,1179648,0
176,1179648,0
189,1179648,0
200,1179648,0
213,1179648,0
228,1179648,0
241,1179648,0
253,1179648,0
266,1179648,0
277,1179648,0
290,1179648,0
303,1179648,0
316,1179648,0
330,1179648,0
346,1179648,0
362,1179648,0
374,1179648,0
387,0,0
1 timestamp_ms memory_bytes cpu_percent
2 18 1179648 0
3 34 1179648 0
4 53 1179648 0
5 72 1179648 0
6 89 1179648 0
7 107 1179648 0
8 120 1179648 0
9 131 1179648 0
10 143 1179648 0
11 154 1179648 0
12 165 1179648 0
13 176 1179648 0
14 189 1179648 0
15 200 1179648 0
16 213 1179648 0
17 228 1179648 0
18 241 1179648 0
19 253 1179648 0
20 266 1179648 0
21 277 1179648 0
22 290 1179648 0
23 303 1179648 0
24 316 1179648 0
25 330 1179648 0
26 346 1179648 0
27 362 1179648 0
28 374 1179648 0
29 387 0 0