uralstech commited on
Commit
5db915b
·
verified ·
1 Parent(s): d0f560f

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +74 -2
README.md CHANGED
@@ -4,8 +4,6 @@ pretty_name: AIDE-Chip 15K gem5 Simulation Dataset
4
  license: cc-by-nc-sa-4.0
5
  task_categories:
6
  - tabular-regression
7
- - simulation
8
- - design-space-exploration
9
  language:
10
  - en
11
  tags:
@@ -20,3 +18,77 @@ tags:
20
  size_categories:
21
  - 10K<n<100K
22
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4
  license: cc-by-nc-sa-4.0
5
  task_categories:
6
  - tabular-regression
 
 
7
  language:
8
  - en
9
  tags:
 
18
  size_categories:
19
  - 10K<n<100K
20
  ---
21
+
22
+ # AIDE-Chip 15K gem5 Simulation Dataset
23
+
24
+ AIDE-Chip-15K-gem5-Sims is a structured dataset of approximately 15,000 validated RISC-V gem5 simulations covering cache hierarchy design-space exploration (DSE) for single-core processors.
25
+
26
+ The dataset was generated using gem5's Syscall Emulation (SE) mode and six representative workloads, spanning compute-bound, memory-bound, and irregular access patterns. Each sample maps cache configuration parameters to IPC and L2 miss rate, enabling training of fast, physically consistent surrogate models.
27
+
28
+ This dataset accompanies the paper:
29
+
30
+ > Udayshankar Ravikumar . Fast, Explainable Surrogate Models for gem5 Cache Design Space Exploration. Authorea. January 14, 2026.
31
+ > <https://doi.org/10.22541/au.176843174.46109183/v1>
32
+
33
+ ## Supported Tasks
34
+
35
+ * Cache performance regression (IPC)
36
+ * Cache miss-rate regression (L2 miss rate)
37
+
38
+ ## Workloads
39
+
40
+ | Workload | Description |
41
+ | ------------ | ---------------------------------- |
42
+ | `crc32` | Streaming, low locality |
43
+ | `dijkstra` | Pointer-chasing, irregular |
44
+ | `fft` | Strided, cache-sensitive |
45
+ | `matrix_mul` | Dense compute, high reuse |
46
+ | `qsort` | Branchy, mixed locality |
47
+ | `sha` | Compute-bound, near-zero miss rate |
48
+
49
+ The C code of the workloads can be found at: <https://github.com/Uralstech/AIDE-Chip-Surrogates/tree/main/15k-Sims/benchmarks>
50
+
51
+ ## Dataset Structure
52
+
53
+ The dataset is released as sharded CSV files for scalability.
54
+
55
+ Each row contains:
56
+
57
+ | Column | Description |
58
+ | ------------------------------ | ------------------------- |
59
+ | l1d_size, l1i_size, l2_size | Cache sizes (KB) |
60
+ | l1d_assoc, l1i_assoc, l2_assoc | Associativities |
61
+ | workload | Benchmark name |
62
+ | ipc | Instructions per cycle |
63
+ | l2_miss_rate | L2 miss rate |
64
+ | sim_duration_s | gem5 simulation wall time |
65
+ | error | Simulation success flag |
66
+ | error_msg | Simulation error message |
67
+
68
+ ## Generation Details
69
+
70
+ * Simulator: gem5 (SE mode)
71
+ * Execution platform:
72
+ * 4× AWS c6g + 4× AWS c7g
73
+ * 64 vCPUs each
74
+
75
+ * Sampling strategy:
76
+ * Constrained grid over cache sizes & associativities
77
+ * Validity constraints enforced
78
+ * Randomized execution order
79
+
80
+ * Dataset split:
81
+ * 70% train / 15% validation / 15% test (per workload)
82
+
83
+ The script used to generate the configuration set can be found at: <https://github.com/Uralstech/AIDE-Chip-Surrogates/blob/main/15k-Sims/config-gen/generate_configs.py>
84
+
85
+ ## Intended Use
86
+
87
+ This dataset is intended for:
88
+
89
+ * Research on surrogate modeling for architecture simulation
90
+ * Cache design-space exploration
91
+ * Explainable ML for systems
92
+ * Educational and academic use
93
+
94
+ **Not intended for commercial use** (see License).