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
+5
View File
@@ -0,0 +1,5 @@
timestamp_ms,memory_bytes,cpu_percent
13,1179648,0
27,1179648,0
40,1179648,0
52,0,0
1 timestamp_ms memory_bytes cpu_percent
2 13 1179648 0
3 27 1179648 0
4 40 1179648 0
5 52 0 0
+4
View File
@@ -0,0 +1,4 @@
timestamp_ms,memory_bytes,cpu_percent
20,1179648,0
37,1179648,0
54,1179648,0
1 timestamp_ms memory_bytes cpu_percent
2 20 1179648 0
3 37 1179648 0
4 54 1179648 0
+4
View File
@@ -0,0 +1,4 @@
timestamp_ms,memory_bytes,cpu_percent
14,1179648,0
32,1179648,0
46,1179648,0
1 timestamp_ms memory_bytes cpu_percent
2 14 1179648 0
3 32 1179648 0
4 46 1179648 0
+4
View File
@@ -0,0 +1,4 @@
timestamp_ms,memory_bytes,cpu_percent
16,1179648,0
32,1179648,0
49,1179648,0
1 timestamp_ms memory_bytes cpu_percent
2 16 1179648 0
3 32 1179648 0
4 49 1179648 0
+10
View File
@@ -0,0 +1,10 @@
metric,value
time_ms,64
memory_bytes,41462442
peak_memory_bytes,41566208
real_time_s,.036
user_time_s,.020
sys_time_s,.010
instructions,17452260
cycles,8624146
ipc,2.02
1 metric value
2 time_ms 64
3 memory_bytes 41462442
4 peak_memory_bytes 41566208
5 real_time_s .036
6 user_time_s .020
7 sys_time_s .010
8 instructions 17452260
9 cycles 8624146
10 ipc 2.02