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
+49
View File
@@ -0,0 +1,49 @@
#!/usr/bin/env python3
import os
import csv
import json
# Collect data from all languages
data = {}
languages = []
# Read data from each language
for lang in os.listdir('data'):
lang_dir = os.path.join('data', lang)
if os.path.isdir(lang_dir):
summary_file = os.path.join(lang_dir, 'summary.csv')
if os.path.exists(summary_file):
languages.append(lang)
with open(summary_file, 'r') as f:
reader = csv.DictReader(f)
lang_data = {}
for row in reader:
lang_data[row['metric']] = float(row['value'])
data[lang] = lang_data
# Sort by time
sorted_by_time = sorted(languages, key=lambda x: data[x].get('time_ms', float('inf')))
# Print analysis
print("\n=== Top 10 snabbaste språk ===")
for i, lang in enumerate(sorted_by_time[:10], 1):
d = data[lang]
print(f"{i}. {lang:15} {d['time_ms']:6.0f} ms, {d['memory_bytes']:10.0f} bytes, IPC: {d['ipc']:.2f}")
print("\n=== Top 10 minneseffektiva språk ===")
sorted_by_memory = sorted(languages, key=lambda x: data[x].get('memory_bytes', float('inf')))
for i, lang in enumerate(sorted_by_memory[:10], 1):
d = data[lang]
print(f"{i}. {lang:15} {d['memory_bytes']:10.0f} bytes, {d['time_ms']:6.0f} ms, IPC: {d['ipc']:.2f}")
print("\n=== Top 10 högsta IPC (effektivitet) ===")
sorted_by_ipc = sorted(languages, key=lambda x: data[x].get('ipc', 0), reverse=True)
for i, lang in enumerate(sorted_by_ipc[:10], 1):
d = data[lang]
print(f"{i}. {lang:15} IPC: {d['ipc']:.2f}, {d['time_ms']:6.0f} ms")
# Save data for visualization
with open('data/analysis.json', 'w') as f:
json.dump(data, f, indent=2)
print("\n=== Data sparad till data/analysis.json ===")
+2
View File
@@ -0,0 +1,2 @@
timestamp_ms,memory_bytes,cpu_percent
12,0,0
1 timestamp_ms memory_bytes cpu_percent
2 12 0 0
+2
View File
@@ -0,0 +1,2 @@
timestamp_ms,memory_bytes,cpu_percent
15,0,0
1 timestamp_ms memory_bytes cpu_percent
2 15 0 0
+2
View File
@@ -0,0 +1,2 @@
timestamp_ms,memory_bytes,cpu_percent
21,0,0
1 timestamp_ms memory_bytes cpu_percent
2 21 0 0
+2
View File
@@ -0,0 +1,2 @@
timestamp_ms,memory_bytes,cpu_percent
10,0,0
1 timestamp_ms memory_bytes cpu_percent
2 10 0 0
+10
View File
@@ -0,0 +1,10 @@
metric,value
time_ms,32
memory_bytes,1409024
peak_memory_bytes,1409024
real_time_s,0
user_time_s,0
sys_time_s,0
instructions,12558975
cycles,6069377
ipc,2.06
1 metric value
2 time_ms 32
3 memory_bytes 1409024
4 peak_memory_bytes 1409024
5 real_time_s 0
6 user_time_s 0
7 sys_time_s 0
8 instructions 12558975
9 cycles 6069377
10 ipc 2.06
+2
View File
@@ -0,0 +1,2 @@
timestamp_ms,memory_bytes,cpu_percent
19,1179648,0
1 timestamp_ms memory_bytes cpu_percent
2 19 1179648 0
+2
View File
@@ -0,0 +1,2 @@
timestamp_ms,memory_bytes,cpu_percent
19,1179648,0
1 timestamp_ms memory_bytes cpu_percent
2 19 1179648 0
+2
View File
@@ -0,0 +1,2 @@
timestamp_ms,memory_bytes,cpu_percent
23,1196032,0
1 timestamp_ms memory_bytes cpu_percent
2 23 1196032 0
+2
View File
@@ -0,0 +1,2 @@
timestamp_ms,memory_bytes,cpu_percent
18,1179648,0
1 timestamp_ms memory_bytes cpu_percent
2 18 1179648 0
+10
View File
@@ -0,0 +1,10 @@
metric,value
time_ms,34
memory_bytes,2058922
peak_memory_bytes,2064384
real_time_s,.013
user_time_s,0
sys_time_s,.006
instructions,18550685
cycles,8090090
ipc,2.29
1 metric value
2 time_ms 34
3 memory_bytes 2058922
4 peak_memory_bytes 2064384
5 real_time_s .013
6 user_time_s 0
7 sys_time_s .006
8 instructions 18550685
9 cycles 8090090
10 ipc 2.29
+4
View File
@@ -0,0 +1,4 @@
timestamp_ms,memory_bytes,cpu_percent
16,1179648,0
35,1179648,0
51,0,0
1 timestamp_ms memory_bytes cpu_percent
2 16 1179648 0
3 35 1179648 0
4 51 0 0
+4
View File
@@ -0,0 +1,4 @@
timestamp_ms,memory_bytes,cpu_percent
15,1179648,0
37,1179648,0
51,0,0
1 timestamp_ms memory_bytes cpu_percent
2 15 1179648 0
3 37 1179648 0
4 51 0 0
+4
View File
@@ -0,0 +1,4 @@
timestamp_ms,memory_bytes,cpu_percent
14,1179648,0
29,1179648,0
45,0,0
1 timestamp_ms memory_bytes cpu_percent
2 14 1179648 0
3 29 1179648 0
4 45 0 0
+4
View File
@@ -0,0 +1,4 @@
timestamp_ms,memory_bytes,cpu_percent
13,1179648,0
26,1179648,0
39,1179648,0
1 timestamp_ms memory_bytes cpu_percent
2 13 1179648 0
3 26 1179648 0
4 39 1179648 0
+10
View File
@@ -0,0 +1,10 @@
metric,value
time_ms,56
memory_bytes,9185962
peak_memory_bytes,9256960
real_time_s,.033
user_time_s,.010
sys_time_s,.010
instructions,17501272
cycles,8126562
ipc,2.15
1 metric value
2 time_ms 56
3 memory_bytes 9185962
4 peak_memory_bytes 9256960
5 real_time_s .033
6 user_time_s .010
7 sys_time_s .010
8 instructions 17501272
9 cycles 8126562
10 ipc 2.15
+2
View File
@@ -0,0 +1,2 @@
timestamp_ms,memory_bytes,cpu_percent
17,0,0
1 timestamp_ms memory_bytes cpu_percent
2 17 0 0
+2
View File
@@ -0,0 +1,2 @@
timestamp_ms,memory_bytes,cpu_percent
14,1179648,0
1 timestamp_ms memory_bytes cpu_percent
2 14 1179648 0
+2
View File
@@ -0,0 +1,2 @@
timestamp_ms,memory_bytes,cpu_percent
15,1179648,0
1 timestamp_ms memory_bytes cpu_percent
2 15 1179648 0
+2
View File
@@ -0,0 +1,2 @@
timestamp_ms,memory_bytes,cpu_percent
14,0,0
1 timestamp_ms memory_bytes cpu_percent
2 14 0 0
+10
View File
@@ -0,0 +1,10 @@
metric,value
time_ms,26
memory_bytes,1523712
peak_memory_bytes,1523712
real_time_s,0
user_time_s,0
sys_time_s,0
instructions,23545731
cycles,9050444
ipc,2.60
1 metric value
2 time_ms 26
3 memory_bytes 1523712
4 peak_memory_bytes 1523712
5 real_time_s 0
6 user_time_s 0
7 sys_time_s 0
8 instructions 23545731
9 cycles 9050444
10 ipc 2.60
+2
View File
@@ -0,0 +1,2 @@
timestamp_ms,memory_bytes,cpu_percent
13,0,0
1 timestamp_ms memory_bytes cpu_percent
2 13 0 0
+2
View File
@@ -0,0 +1,2 @@
timestamp_ms,memory_bytes,cpu_percent
12,1179648,0
1 timestamp_ms memory_bytes cpu_percent
2 12 1179648 0
+2
View File
@@ -0,0 +1,2 @@
timestamp_ms,memory_bytes,cpu_percent
13,0,0
1 timestamp_ms memory_bytes cpu_percent
2 13 0 0
+2
View File
@@ -0,0 +1,2 @@
timestamp_ms,memory_bytes,cpu_percent
16,0,0
1 timestamp_ms memory_bytes cpu_percent
2 16 0 0
+10
View File
@@ -0,0 +1,10 @@
metric,value
time_ms,27
memory_bytes,1687552
peak_memory_bytes,1687552
real_time_s,0
user_time_s,0
sys_time_s,0
instructions,14479010
cycles,6499773
ipc,2.22
1 metric value
2 time_ms 27
3 memory_bytes 1687552
4 peak_memory_bytes 1687552
5 real_time_s 0
6 user_time_s 0
7 sys_time_s 0
8 instructions 14479010
9 cycles 6499773
10 ipc 2.22
+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
+1
View File
@@ -0,0 +1 @@
timestamp_ms,memory_bytes,cpu_percent
1 timestamp_ms memory_bytes cpu_percent
+2
View File
@@ -0,0 +1,2 @@
timestamp_ms,memory_bytes,cpu_percent
10,0,0
1 timestamp_ms memory_bytes cpu_percent
2 10 0 0
+2
View File
@@ -0,0 +1,2 @@
timestamp_ms,memory_bytes,cpu_percent
11,1179648,0
1 timestamp_ms memory_bytes cpu_percent
2 11 1179648 0
+2
View File
@@ -0,0 +1,2 @@
timestamp_ms,memory_bytes,cpu_percent
13,0,0
1 timestamp_ms memory_bytes cpu_percent
2 13 0 0
+10
View File
@@ -0,0 +1,10 @@
metric,value
time_ms,22
memory_bytes,3293184
peak_memory_bytes,3293184
real_time_s,0
user_time_s,0
sys_time_s,0
instructions,29546282
cycles,9885445
ipc,2.98
1 metric value
2 time_ms 22
3 memory_bytes 3293184
4 peak_memory_bytes 3293184
5 real_time_s 0
6 user_time_s 0
7 sys_time_s 0
8 instructions 29546282
9 cycles 9885445
10 ipc 2.98
+2
View File
@@ -0,0 +1,2 @@
timestamp_ms,memory_bytes,cpu_percent
12,1179648,0
1 timestamp_ms memory_bytes cpu_percent
2 12 1179648 0
+2
View File
@@ -0,0 +1,2 @@
timestamp_ms,memory_bytes,cpu_percent
14,1179648,0
1 timestamp_ms memory_bytes cpu_percent
2 14 1179648 0
+2
View File
@@ -0,0 +1,2 @@
timestamp_ms,memory_bytes,cpu_percent
12,1179648,0
1 timestamp_ms memory_bytes cpu_percent
2 12 1179648 0
+2
View File
@@ -0,0 +1,2 @@
timestamp_ms,memory_bytes,cpu_percent
15,1179648,0
1 timestamp_ms memory_bytes cpu_percent
2 15 1179648 0
+10
View File
@@ -0,0 +1,10 @@
metric,value
time_ms,24
memory_bytes,2479445
peak_memory_bytes,2490368
real_time_s,0
user_time_s,0
sys_time_s,0
instructions,80920081
cycles,20218601
ipc,4.00
1 metric value
2 time_ms 24
3 memory_bytes 2479445
4 peak_memory_bytes 2490368
5 real_time_s 0
6 user_time_s 0
7 sys_time_s 0
8 instructions 80920081
9 cycles 20218601
10 ipc 4.00
+2
View File
@@ -0,0 +1,2 @@
timestamp_ms,memory_bytes,cpu_percent
18,1179648,0
1 timestamp_ms memory_bytes cpu_percent
2 18 1179648 0
+2
View File
@@ -0,0 +1,2 @@
timestamp_ms,memory_bytes,cpu_percent
19,1179648,0
1 timestamp_ms memory_bytes cpu_percent
2 19 1179648 0
+2
View File
@@ -0,0 +1,2 @@
timestamp_ms,memory_bytes,cpu_percent
23,1179648,0
1 timestamp_ms memory_bytes cpu_percent
2 23 1179648 0
+2
View File
@@ -0,0 +1,2 @@
timestamp_ms,memory_bytes,cpu_percent
24,1179648,0
1 timestamp_ms memory_bytes cpu_percent
2 24 1179648 0
+10
View File
@@ -0,0 +1,10 @@
metric,value
time_ms,35
memory_bytes,14641834
peak_memory_bytes,14680064
real_time_s,.013
user_time_s,0
sys_time_s,0
instructions,63451402
cycles,27183385
ipc,2.33
1 metric value
2 time_ms 35
3 memory_bytes 14641834
4 peak_memory_bytes 14680064
5 real_time_s .013
6 user_time_s 0
7 sys_time_s 0
8 instructions 63451402
9 cycles 27183385
10 ipc 2.33
+29
View File
@@ -0,0 +1,29 @@
timestamp_ms,memory_bytes,cpu_percent
17,1179648,0
33,1179648,0
49,1179648,0
65,1179648,0
86,1179648,0
102,1179648,0
119,1179648,0
135,1179648,0
150,1179648,0
166,1179648,0
179,1179648,0
193,1179648,0
206,1179648,0
218,1179648,0
231,1179648,0
245,1179648,0
256,1179648,0
271,1179648,0
296,1179648,0
311,1179648,0
324,1179648,0
335,1179648,0
350,1179648,0
363,1179648,0
377,1179648,0
392,1179648,0
406,1179648,0
418,1179648,0
1 timestamp_ms memory_bytes cpu_percent
2 17 1179648 0
3 33 1179648 0
4 49 1179648 0
5 65 1179648 0
6 86 1179648 0
7 102 1179648 0
8 119 1179648 0
9 135 1179648 0
10 150 1179648 0
11 166 1179648 0
12 179 1179648 0
13 193 1179648 0
14 206 1179648 0
15 218 1179648 0
16 231 1179648 0
17 245 1179648 0
18 256 1179648 0
19 271 1179648 0
20 296 1179648 0
21 311 1179648 0
22 324 1179648 0
23 335 1179648 0
24 350 1179648 0
25 363 1179648 0
26 377 1179648 0
27 392 1179648 0
28 406 1179648 0
29 418 1179648 0
+28
View File
@@ -0,0 +1,28 @@
timestamp_ms,memory_bytes,cpu_percent
15,1179648,0
29,1179648,0
44,1179648,0
56,1179648,0
71,1179648,0
87,1179648,0
102,1179648,0
116,1179648,0
128,1179648,0
143,1179648,0
157,1179648,0
173,1179648,0
193,1179648,0
212,1179648,0
232,1179648,0
248,1179648,0
264,1179648,0
278,1179648,0
292,1179648,0
307,1179648,0
322,1179648,0
336,1179648,0
350,1179648,0
362,1179648,0
374,1179648,0
387,1179648,0
401,1179648,0
1 timestamp_ms memory_bytes cpu_percent
2 15 1179648 0
3 29 1179648 0
4 44 1179648 0
5 56 1179648 0
6 71 1179648 0
7 87 1179648 0
8 102 1179648 0
9 116 1179648 0
10 128 1179648 0
11 143 1179648 0
12 157 1179648 0
13 173 1179648 0
14 193 1179648 0
15 212 1179648 0
16 232 1179648 0
17 248 1179648 0
18 264 1179648 0
19 278 1179648 0
20 292 1179648 0
21 307 1179648 0
22 322 1179648 0
23 336 1179648 0
24 350 1179648 0
25 362 1179648 0
26 374 1179648 0
27 387 1179648 0
28 401 1179648 0
+28
View File
@@ -0,0 +1,28 @@
timestamp_ms,memory_bytes,cpu_percent
12,1179648,0
23,1179648,0
35,1179648,0
48,1179648,0
65,1179648,0
78,1179648,0
94,1179648,0
114,1179648,0
132,1179648,0
147,1179648,0
164,1179648,0
179,1179648,0
197,1179648,0
212,1179648,0
228,1179648,0
243,1179648,0
260,1179648,0
275,1179648,0
290,1179648,0
305,1179648,0
317,1179648,0
330,1179648,0
344,1179648,0
358,1179648,0
374,1179648,0
389,1179648,0
404,1179648,0
1 timestamp_ms memory_bytes cpu_percent
2 12 1179648 0
3 23 1179648 0
4 35 1179648 0
5 48 1179648 0
6 65 1179648 0
7 78 1179648 0
8 94 1179648 0
9 114 1179648 0
10 132 1179648 0
11 147 1179648 0
12 164 1179648 0
13 179 1179648 0
14 197 1179648 0
15 212 1179648 0
16 228 1179648 0
17 243 1179648 0
18 260 1179648 0
19 275 1179648 0
20 290 1179648 0
21 305 1179648 0
22 317 1179648 0
23 330 1179648 0
24 344 1179648 0
25 358 1179648 0
26 374 1179648 0
27 389 1179648 0
28 404 1179648 0
+28
View File
@@ -0,0 +1,28 @@
timestamp_ms,memory_bytes,cpu_percent
14,1179648,0
28,1179648,0
43,1179648,0
59,1179648,0
74,1179648,0
88,1179648,0
103,1179648,0
117,1179648,0
128,1179648,0
143,1179648,0
158,1179648,0
171,1179648,0
184,1179648,0
199,1179648,0
210,1179648,0
222,1179648,0
236,1179648,0
249,1179648,0
262,1179648,0
279,1179648,0
291,1179648,0
303,1179648,0
317,1179648,0
333,1179648,0
352,1179648,0
366,1179648,0
379,1179648,0
1 timestamp_ms memory_bytes cpu_percent
2 14 1179648 0
3 28 1179648 0
4 43 1179648 0
5 59 1179648 0
6 74 1179648 0
7 88 1179648 0
8 103 1179648 0
9 117 1179648 0
10 128 1179648 0
11 143 1179648 0
12 158 1179648 0
13 171 1179648 0
14 184 1179648 0
15 199 1179648 0
16 210 1179648 0
17 222 1179648 0
18 236 1179648 0
19 249 1179648 0
20 262 1179648 0
21 279 1179648 0
22 291 1179648 0
23 303 1179648 0
24 317 1179648 0
25 333 1179648 0
26 352 1179648 0
27 366 1179648 0
28 379 1179648 0
+10
View File
@@ -0,0 +1,10 @@
metric,value
time_ms,406
memory_bytes,89161728
peak_memory_bytes,89260032
real_time_s,.393
user_time_s,.296
sys_time_s,.216
instructions,17505478
cycles,7380020
ipc,2.37
1 metric value
2 time_ms 406
3 memory_bytes 89161728
4 peak_memory_bytes 89260032
5 real_time_s .393
6 user_time_s .296
7 sys_time_s .216
8 instructions 17505478
9 cycles 7380020
10 ipc 2.37
+13
View File
@@ -0,0 +1,13 @@
timestamp_ms,memory_bytes,cpu_percent
16,1179648,0
31,1179648,0
47,1179648,0
66,1179648,0
80,1179648,0
98,1179648,0
112,1179648,0
126,1179648,0
139,1179648,0
150,1179648,0
164,1179648,0
177,1179648,0
1 timestamp_ms memory_bytes cpu_percent
2 16 1179648 0
3 31 1179648 0
4 47 1179648 0
5 66 1179648 0
6 80 1179648 0
7 98 1179648 0
8 112 1179648 0
9 126 1179648 0
10 139 1179648 0
11 150 1179648 0
12 164 1179648 0
13 177 1179648 0
+11
View File
@@ -0,0 +1,11 @@
timestamp_ms,memory_bytes,cpu_percent
15,1179648,0
33,1179648,0
48,1179648,0
65,1179648,0
78,1179648,0
92,1179648,0
106,1179648,0
120,1179648,0
135,1179648,0
152,1179648,0
1 timestamp_ms memory_bytes cpu_percent
2 15 1179648 0
3 33 1179648 0
4 48 1179648 0
5 65 1179648 0
6 78 1179648 0
7 92 1179648 0
8 106 1179648 0
9 120 1179648 0
10 135 1179648 0
11 152 1179648 0
+13
View File
@@ -0,0 +1,13 @@
timestamp_ms,memory_bytes,cpu_percent
16,1179648,0
33,1179648,0
47,1179648,0
62,1179648,0
81,1179648,0
99,1179648,0
115,1179648,0
130,1179648,0
152,1179648,0
174,1179648,0
187,1179648,0
202,1179648,0
1 timestamp_ms memory_bytes cpu_percent
2 16 1179648 0
3 33 1179648 0
4 47 1179648 0
5 62 1179648 0
6 81 1179648 0
7 99 1179648 0
8 115 1179648 0
9 130 1179648 0
10 152 1179648 0
11 174 1179648 0
12 187 1179648 0
13 202 1179648 0
+12
View File
@@ -0,0 +1,12 @@
timestamp_ms,memory_bytes,cpu_percent
13,1179648,0
28,1179648,0
40,1179648,0
56,1179648,0
69,1179648,0
83,1179648,0
97,1179648,0
117,1179648,0
130,1179648,0
147,1179648,0
164,0,0
1 timestamp_ms memory_bytes cpu_percent
2 13 1179648 0
3 28 1179648 0
4 40 1179648 0
5 56 1179648 0
6 69 1179648 0
7 83 1179648 0
8 97 1179648 0
9 117 1179648 0
10 130 1179648 0
11 147 1179648 0
12 164 0 0
+10
View File
@@ -0,0 +1,10 @@
metric,value
time_ms,185
memory_bytes,77048490
peak_memory_bytes,77185024
real_time_s,.166
user_time_s,.120
sys_time_s,.100
instructions,17696158
cycles,7782102
ipc,2.27
1 metric value
2 time_ms 185
3 memory_bytes 77048490
4 peak_memory_bytes 77185024
5 real_time_s .166
6 user_time_s .120
7 sys_time_s .100
8 instructions 17696158
9 cycles 7782102
10 ipc 2.27
+2
View File
@@ -0,0 +1,2 @@
timestamp_ms,memory_bytes,cpu_percent
15,1179648,0
1 timestamp_ms memory_bytes cpu_percent
2 15 1179648 0
+2
View File
@@ -0,0 +1,2 @@
timestamp_ms,memory_bytes,cpu_percent
14,0,0
1 timestamp_ms memory_bytes cpu_percent
2 14 0 0
+2
View File
@@ -0,0 +1,2 @@
timestamp_ms,memory_bytes,cpu_percent
11,0,0
1 timestamp_ms memory_bytes cpu_percent
2 11 0 0
+2
View File
@@ -0,0 +1,2 @@
timestamp_ms,memory_bytes,cpu_percent
11,0,0
1 timestamp_ms memory_bytes cpu_percent
2 11 0 0
+10
View File
@@ -0,0 +1,10 @@
metric,value
time_ms,26
memory_bytes,1802240
peak_memory_bytes,1802240
real_time_s,0
user_time_s,0
sys_time_s,0
instructions,27378187
cycles,8787318
ipc,3.11
1 metric value
2 time_ms 26
3 memory_bytes 1802240
4 peak_memory_bytes 1802240
5 real_time_s 0
6 user_time_s 0
7 sys_time_s 0
8 instructions 27378187
9 cycles 8787318
10 ipc 3.11
+2
View File
@@ -0,0 +1,2 @@
timestamp_ms,memory_bytes,cpu_percent
18,1179648,0
1 timestamp_ms memory_bytes cpu_percent
2 18 1179648 0
+2
View File
@@ -0,0 +1,2 @@
timestamp_ms,memory_bytes,cpu_percent
16,0,0
1 timestamp_ms memory_bytes cpu_percent
2 16 0 0
+2
View File
@@ -0,0 +1,2 @@
timestamp_ms,memory_bytes,cpu_percent
15,0,0
1 timestamp_ms memory_bytes cpu_percent
2 15 0 0
+2
View File
@@ -0,0 +1,2 @@
timestamp_ms,memory_bytes,cpu_percent
20,0,0
1 timestamp_ms memory_bytes cpu_percent
2 20 0 0
+10
View File
@@ -0,0 +1,10 @@
metric,value
time_ms,31
memory_bytes,4041386
peak_memory_bytes,4145152
real_time_s,0
user_time_s,0
sys_time_s,0
instructions,19473738
cycles,8671903
ipc,2.24
1 metric value
2 time_ms 31
3 memory_bytes 4041386
4 peak_memory_bytes 4145152
5 real_time_s 0
6 user_time_s 0
7 sys_time_s 0
8 instructions 19473738
9 cycles 8671903
10 ipc 2.24
+3
View File
@@ -0,0 +1,3 @@
timestamp_ms,memory_bytes,cpu_percent
15,1179648,0
28,1179648,0
1 timestamp_ms memory_bytes cpu_percent
2 15 1179648 0
3 28 1179648 0
+3
View File
@@ -0,0 +1,3 @@
timestamp_ms,memory_bytes,cpu_percent
16,1196032,0
31,0,0
1 timestamp_ms memory_bytes cpu_percent
2 16 1196032 0
3 31 0 0
+3
View File
@@ -0,0 +1,3 @@
timestamp_ms,memory_bytes,cpu_percent
19,1196032,0
36,0,0
1 timestamp_ms memory_bytes cpu_percent
2 19 1196032 0
3 36 0 0
+3
View File
@@ -0,0 +1,3 @@
timestamp_ms,memory_bytes,cpu_percent
14,1179648,0
26,1179648,0
1 timestamp_ms memory_bytes cpu_percent
2 14 1179648 0
3 26 1179648 0
+10
View File
@@ -0,0 +1,10 @@
metric,value
time_ms,46
memory_bytes,12053162
peak_memory_bytes,12058624
real_time_s,.013
user_time_s,0
sys_time_s,0
instructions,49928755
cycles,18118511
ipc,2.75
1 metric value
2 time_ms 46
3 memory_bytes 12053162
4 peak_memory_bytes 12058624
5 real_time_s .013
6 user_time_s 0
7 sys_time_s 0
8 instructions 49928755
9 cycles 18118511
10 ipc 2.75
+4
View File
@@ -0,0 +1,4 @@
timestamp_ms,memory_bytes,cpu_percent
21,1196032,0
38,1196032,0
52,1196032,0
1 timestamp_ms memory_bytes cpu_percent
2 21 1196032 0
3 38 1196032 0
4 52 1196032 0
+5
View File
@@ -0,0 +1,5 @@
timestamp_ms,memory_bytes,cpu_percent
13,1179648,0
30,1179648,0
46,1179648,0
59,0,0
1 timestamp_ms memory_bytes cpu_percent
2 13 1179648 0
3 30 1179648 0
4 46 1179648 0
5 59 0 0
+4
View File
@@ -0,0 +1,4 @@
timestamp_ms,memory_bytes,cpu_percent
18,1179648,0
35,1179648,0
55,1179648,0
1 timestamp_ms memory_bytes cpu_percent
2 18 1179648 0
3 35 1179648 0
4 55 1179648 0
+4
View File
@@ -0,0 +1,4 @@
timestamp_ms,memory_bytes,cpu_percent
15,1179648,0
31,1179648,0
47,1179648,0
1 timestamp_ms memory_bytes cpu_percent
2 15 1179648 0
3 31 1179648 0
4 47 1179648 0
+10
View File
@@ -0,0 +1,10 @@
metric,value
time_ms,68
memory_bytes,43073536
peak_memory_bytes,43106304
real_time_s,.046
user_time_s,.030
sys_time_s,.016
instructions,17776760
cycles,8998434
ipc,1.97
1 metric value
2 time_ms 68
3 memory_bytes 43073536
4 peak_memory_bytes 43106304
5 real_time_s .046
6 user_time_s .030
7 sys_time_s .016
8 instructions 17776760
9 cycles 8998434
10 ipc 1.97
+5
View File
@@ -0,0 +1,5 @@
timestamp_ms,memory_bytes,cpu_percent
22,1179648,0
42,1179648,0
74,1179648,0
90,1179648,0
1 timestamp_ms memory_bytes cpu_percent
2 22 1179648 0
3 42 1179648 0
4 74 1179648 0
5 90 1179648 0
+6
View File
@@ -0,0 +1,6 @@
timestamp_ms,memory_bytes,cpu_percent
14,1179648,0
32,1179648,0
54,1179648,0
79,1179648,0
93,1179648,0
1 timestamp_ms memory_bytes cpu_percent
2 14 1179648 0
3 32 1179648 0
4 54 1179648 0
5 79 1179648 0
6 93 1179648 0
+7
View File
@@ -0,0 +1,7 @@
timestamp_ms,memory_bytes,cpu_percent
17,1179648,0
36,1179648,0
54,1179648,0
78,1179648,0
102,1179648,0
119,0,0
1 timestamp_ms memory_bytes cpu_percent
2 17 1179648 0
3 36 1179648 0
4 54 1179648 0
5 78 1179648 0
6 102 1179648 0
7 119 0 0
+6
View File
@@ -0,0 +1,6 @@
timestamp_ms,memory_bytes,cpu_percent
22,1196032,0
52,1196032,0
67,1196032,0
89,1196032,0
105,0,0
1 timestamp_ms memory_bytes cpu_percent
2 22 1196032 0
3 52 1196032 0
4 67 1196032 0
5 89 1196032 0
6 105 0 0
+10
View File
@@ -0,0 +1,10 @@
metric,value
time_ms,118
memory_bytes,44417024
peak_memory_bytes,44580864
real_time_s,.090
user_time_s,.070
sys_time_s,.010
instructions,18142055
cycles,9003896
ipc,2.01
1 metric value
2 time_ms 118
3 memory_bytes 44417024
4 peak_memory_bytes 44580864
5 real_time_s .090
6 user_time_s .070
7 sys_time_s .010
8 instructions 18142055
9 cycles 9003896
10 ipc 2.01
+11
View File
@@ -0,0 +1,11 @@
timestamp_ms,memory_bytes,cpu_percent
15,1179648,0
31,1179648,0
46,1179648,0
77,1179648,0
96,1179648,0
112,1179648,0
126,1179648,0
142,1179648,0
161,1179648,0
178,1179648,0
1 timestamp_ms memory_bytes cpu_percent
2 15 1179648 0
3 31 1179648 0
4 46 1179648 0
5 77 1179648 0
6 96 1179648 0
7 112 1179648 0
8 126 1179648 0
9 142 1179648 0
10 161 1179648 0
11 178 1179648 0
+11
View File
@@ -0,0 +1,11 @@
timestamp_ms,memory_bytes,cpu_percent
13,1179648,0
31,1179648,0
49,1179648,0
67,1179648,0
87,1179648,0
106,1179648,0
120,1179648,0
138,1179648,0
152,1179648,0
167,1179648,0
1 timestamp_ms memory_bytes cpu_percent
2 13 1179648 0
3 31 1179648 0
4 49 1179648 0
5 67 1179648 0
6 87 1179648 0
7 106 1179648 0
8 120 1179648 0
9 138 1179648 0
10 152 1179648 0
11 167 1179648 0
+11
View File
@@ -0,0 +1,11 @@
timestamp_ms,memory_bytes,cpu_percent
13,1179648,0
26,1179648,0
40,1179648,0
58,1179648,0
75,1179648,0
88,1179648,0
107,1179648,0
123,1179648,0
139,1179648,0
154,1179648,0
1 timestamp_ms memory_bytes cpu_percent
2 13 1179648 0
3 26 1179648 0
4 40 1179648 0
5 58 1179648 0
6 75 1179648 0
7 88 1179648 0
8 107 1179648 0
9 123 1179648 0
10 139 1179648 0
11 154 1179648 0
+14
View File
@@ -0,0 +1,14 @@
timestamp_ms,memory_bytes,cpu_percent
15,1196032,0
29,1196032,0
45,1196032,0
60,1196032,0
78,1196032,0
96,1196032,0
113,1196032,0
131,1196032,0
145,1196032,0
162,1196032,0
177,1196032,0
196,1196032,0
217,1196032,0
1 timestamp_ms memory_bytes cpu_percent
2 15 1196032 0
3 29 1196032 0
4 45 1196032 0
5 60 1196032 0
6 78 1196032 0
7 96 1196032 0
8 113 1196032 0
9 131 1196032 0
10 145 1196032 0
11 162 1196032 0
12 177 1196032 0
13 196 1196032 0
14 217 1196032 0
+10
View File
@@ -0,0 +1,10 @@
metric,value
time_ms,190
memory_bytes,236235434
peak_memory_bytes,236355584
real_time_s,.173
user_time_s,.116
sys_time_s,.033
instructions,17691121
cycles,7819185
ipc,2.26
1 metric value
2 time_ms 190
3 memory_bytes 236235434
4 peak_memory_bytes 236355584
5 real_time_s .173
6 user_time_s .116
7 sys_time_s .033
8 instructions 17691121
9 cycles 7819185
10 ipc 2.26
+5
View File
@@ -0,0 +1,5 @@
timestamp_ms,memory_bytes,cpu_percent
18,1179648,0
35,1179648,0
54,1179648,0
70,1179648,0
1 timestamp_ms memory_bytes cpu_percent
2 18 1179648 0
3 35 1179648 0
4 54 1179648 0
5 70 1179648 0
+5
View File
@@ -0,0 +1,5 @@
timestamp_ms,memory_bytes,cpu_percent
16,1196032,0
30,1196032,0
45,1196032,0
59,1196032,0
1 timestamp_ms memory_bytes cpu_percent
2 16 1196032 0
3 30 1196032 0
4 45 1196032 0
5 59 1196032 0
+5
View File
@@ -0,0 +1,5 @@
timestamp_ms,memory_bytes,cpu_percent
11,1179648,0
23,1179648,0
35,1179648,0
47,1179648,0
1 timestamp_ms memory_bytes cpu_percent
2 11 1179648 0
3 23 1179648 0
4 35 1179648 0
5 47 1179648 0
+5
View File
@@ -0,0 +1,5 @@
timestamp_ms,memory_bytes,cpu_percent
14,1179648,0
30,1179648,0
42,1179648,0
58,1179648,0
1 timestamp_ms memory_bytes cpu_percent
2 14 1179648 0
3 30 1179648 0
4 42 1179648 0
5 58 1179648 0
+10
View File
@@ -0,0 +1,10 @@
metric,value
time_ms,65
memory_bytes,45208917
peak_memory_bytes,45383680
real_time_s,.046
user_time_s,.040
sys_time_s,.013
instructions,17527899
cycles,7459125
ipc,2.34
1 metric value
2 time_ms 65
3 memory_bytes 45208917
4 peak_memory_bytes 45383680
5 real_time_s .046
6 user_time_s .040
7 sys_time_s .013
8 instructions 17527899
9 cycles 7459125
10 ipc 2.34
+2
View File
@@ -0,0 +1,2 @@
timestamp_ms,memory_bytes,cpu_percent
14,1179648,0
1 timestamp_ms memory_bytes cpu_percent
2 14 1179648 0
+2
View File
@@ -0,0 +1,2 @@
timestamp_ms,memory_bytes,cpu_percent
15,1179648,0
1 timestamp_ms memory_bytes cpu_percent
2 15 1179648 0
+2
View File
@@ -0,0 +1,2 @@
timestamp_ms,memory_bytes,cpu_percent
13,1179648,0
1 timestamp_ms memory_bytes cpu_percent
2 13 1179648 0
+2
View File
@@ -0,0 +1,2 @@
timestamp_ms,memory_bytes,cpu_percent
21,1179648,0
1 timestamp_ms memory_bytes cpu_percent
2 21 1179648 0
+10
View File
@@ -0,0 +1,10 @@
metric,value
time_ms,29
memory_bytes,2091690
peak_memory_bytes,2097152
real_time_s,.010
user_time_s,0
sys_time_s,0
instructions,17419324
cycles,8017680
ipc,2.17
1 metric value
2 time_ms 29
3 memory_bytes 2091690
4 peak_memory_bytes 2097152
5 real_time_s .010
6 user_time_s 0
7 sys_time_s 0
8 instructions 17419324
9 cycles 8017680
10 ipc 2.17
+2
View File
@@ -0,0 +1,2 @@
timestamp_ms,memory_bytes,cpu_percent
11,0,0
1 timestamp_ms memory_bytes cpu_percent
2 11 0 0
+2
View File
@@ -0,0 +1,2 @@
timestamp_ms,memory_bytes,cpu_percent
16,0,0
1 timestamp_ms memory_bytes cpu_percent
2 16 0 0
+2
View File
@@ -0,0 +1,2 @@
timestamp_ms,memory_bytes,cpu_percent
11,0,0
1 timestamp_ms memory_bytes cpu_percent
2 11 0 0
+2
View File
@@ -0,0 +1,2 @@
timestamp_ms,memory_bytes,cpu_percent
17,0,0
1 timestamp_ms memory_bytes cpu_percent
2 17 0 0

Some files were not shown because too many files have changed in this diff Show More