MICRO Experiments
MICRO's evaluation culture is instrument-centric: the community knows exactly what
each measurement tool can and cannot prove, and reviewers score the match between
claim and instrument before they look at the numbers.
The instrument ladder
| Instrument |
Proves |
Cannot prove |
Typical tools |
| Analytical / trace model |
First-order potential, limit studies |
Interaction effects, timing |
custom, trace-driven models |
| Cycle-level simulation |
Relative performance of mechanisms |
Absolute wall-clock, physical cost |
gem5, ChampSim, Sniper, Ramulator/DRAMsim3 |
| Power/area models on top of sim |
Energy and area trends |
Sign-off-quality numbers |
McPAT, CACTI, Accelergy |
| RTL + synthesis |
Timing closure, real area/power at a node |
Full-system performance |
Verilog/Chisel + synthesis flow |
| FPGA prototype |
Functional correctness at scale, OS interaction |
ASIC frequency/power |
FireSim, custom boards |
| Silicon measurement |
Everything, for that one chip |
Generality across designs |
perf counters, power rails |
Rule: claim one rung below your strongest instrument. Cycle-level simulation
plus McPAT supports "reduces memory-stall cycles by X% with ~Y mm² estimated
overhead"; it does not support "improves datacenter TCO." The lineage here is the
venue's own: CACTI 6.0 (MICRO 2007) and McPAT (MICRO 2009) were published at MICRO
precisely because the community polices modeling fidelity.
Baseline construction — where most rejections start
- The baseline core must be configured like a current product, not a textbook
default: wide OoO, capable branch predictor, competent multi-stream prefetcher,
realistic DRAM timing. A win over gem5's out-of-the-box config is a non-result.
- Include the best prior mechanism in your exact category, re-implemented in
your simulator with its published parameters — not just numbers copied from its
paper under a different config.
- Add an idealized upper bound (oracle predictor, infinite table) so readers see
what fraction of the headroom you capture.
- If your mechanism uses N KB of extra storage, give the baseline the same N KB as
additional cache/predictor capacity in at least one comparison — the
"iso-storage" check reviewers ask for in rebuttal anyway.
Workloads
- Name the suite and the subsetting rule: SPEC CPU2017 (all, or a stated-criterion
subset), PARSEC/GAP for multithreaded, MLPerf or named DNNs for accelerators,
plus the domain traces your mechanism targets.
- Disclose sampling methodology: SimPoint regions, warmup lengths, instruction
budgets per region. Cherry-picked "representative regions" without a stated
selection rule are a rebuttal magnet.
- Report per-workload bars plus geomean — never arithmetic means of speedups,
and never geomean-only (it hides the regressions reviewers will hunt for).
# the only defensible summary statistic for speedups
from math import prod
def geomean(xs):
return prod(xs) ** (1.0 / len(xs))
speedups = per_workload_ipc_new / per_workload_ipc_base # elementwise
print(f"geomean {geomean(list(speedups)):.3f}, "
f"min {min(speedups):.3f} ({worst_workload}), "
f"regressions: {(speedups < 1.0).sum()} of {len(speedups)}")
The ablation and sensitivity contract
Every design decision named in the mechanism section owes the evaluation section a
figure or table row:
- Ablate each component (drop the filter, halve the table, disable the guard)
to show each earns its area.
- Sweep the structural parameters: table sizes, associativities, thresholds,
core counts, LLC capacities, DRAM bandwidth. The mechanism should degrade
gracefully at the sweep edges — cliffs demand explanation in the text.
- Stress adversarially: the workload class the mechanism should not help, the
access pattern designed to defeat it. Reporting a bounded loss builds more trust
than an unbroken win column.
Simulation-length and validation sanity
Two credibility checks reviewers apply that authors often skip:
- Enough simulated instructions per region. Sub-100M-instruction detailed
windows on memory-bound workloads mostly measure the warmup transient. State
warmup and detailed lengths, and show at least once that doubling them does not
move the headline.
- Baseline validation against published numbers. Before trusting relative
results, show your baseline's absolute behavior is sane: IPC or MPKI within
the published envelope for the same suite and a comparable config. A baseline
whose branch predictor achieves 2x the published MPKI of the modeled design
invalidates the comparison silently.
For multicore results, disclose how heterogeneity was handled: mix construction
rule, per-mix repetitions, and whether throughput is weighted speedup, harmonic
mean, or raw IPC sum — each answers a different question and reviewers check that
the metric matches the claim (fairness claims need a fairness metric).
Overhead accounting checklist
Output format
[Instrument] <rung used> — claim height matches: yes / no (quote the overclaim)
[Baseline strength] product-like config / best-prior reimplemented / oracle bound /
iso-storage check: present-absent each
[Workloads] suite + subset rule + sampling disclosure: complete / gaps listed
[Summary stats] per-workload + geomean + regression count: yes / no
[Ablations] each mechanism component covered: list of unablated components
[Sensitivity] parameters swept vs parameters hardcoded
[Overheads] storage / area / power / latency / energy: quantified-missing each
1---2name: micro-experiments3description: Use when designing or auditing the evaluation of a MICRO paper — choosing the right instrument on the ladder from analytical model to cycle-level simulator to RTL to silicon, tuning baselines the PC will respect, selecting workload suites, running ablations and sensitivity sweeps, and reporting geomeans with full overhead accounting.4---56# MICRO Experiments78MICRO's evaluation culture is instrument-centric: the community knows exactly what9each measurement tool can and cannot prove, and reviewers score the *match between10claim and instrument* before they look at the numbers.1112## The instrument ladder1314| Instrument | Proves | Cannot prove | Typical tools |15|---|---|---|---|16| Analytical / trace model | First-order potential, limit studies | Interaction effects, timing | custom, trace-driven models |17| Cycle-level simulation | Relative performance of mechanisms | Absolute wall-clock, physical cost | gem5, ChampSim, Sniper, Ramulator/DRAMsim3 |18| Power/area models on top of sim | Energy and area trends | Sign-off-quality numbers | McPAT, CACTI, Accelergy |19| RTL + synthesis | Timing closure, real area/power at a node | Full-system performance | Verilog/Chisel + synthesis flow |20| FPGA prototype | Functional correctness at scale, OS interaction | ASIC frequency/power | FireSim, custom boards |21| Silicon measurement | Everything, for that one chip | Generality across designs | perf counters, power rails |2223Rule: **claim one rung below your strongest instrument.** Cycle-level simulation24plus McPAT supports "reduces memory-stall cycles by X% with ~Y mm² estimated25overhead"; it does not support "improves datacenter TCO." The lineage here is the26venue's own: CACTI 6.0 (MICRO 2007) and McPAT (MICRO 2009) were published *at MICRO*27precisely because the community polices modeling fidelity.2829## Baseline construction — where most rejections start3031- The baseline core must be **configured like a current product**, not a textbook32 default: wide OoO, capable branch predictor, competent multi-stream prefetcher,33 realistic DRAM timing. A win over gem5's out-of-the-box config is a non-result.34- Include the **best prior mechanism in your exact category**, re-implemented in35 your simulator with its published parameters — not just numbers copied from its36 paper under a different config.37- Add an **idealized upper bound** (oracle predictor, infinite table) so readers see38 what fraction of the headroom you capture.39- If your mechanism uses N KB of extra storage, give the baseline the same N KB as40 additional cache/predictor capacity in at least one comparison — the41 "iso-storage" check reviewers ask for in rebuttal anyway.4243## Workloads4445- Name the suite and the subsetting rule: SPEC CPU2017 (all, or a stated-criterion46 subset), PARSEC/GAP for multithreaded, MLPerf or named DNNs for accelerators,47 plus the domain traces your mechanism targets.48- Disclose sampling methodology: SimPoint regions, warmup lengths, instruction49 budgets per region. Cherry-picked "representative regions" without a stated50 selection rule are a rebuttal magnet.51- Report **per-workload bars plus geomean** — never arithmetic means of speedups,52 and never geomean-only (it hides the regressions reviewers will hunt for).5354```python55# the only defensible summary statistic for speedups56from math import prod57def geomean(xs):58 return prod(xs) ** (1.0 / len(xs))59speedups = per_workload_ipc_new / per_workload_ipc_base # elementwise60print(f"geomean {geomean(list(speedups)):.3f}, "61 f"min {min(speedups):.3f} ({worst_workload}), "62 f"regressions: {(speedups < 1.0).sum()} of {len(speedups)}")63```6465## The ablation and sensitivity contract6667Every design decision named in the mechanism section owes the evaluation section a68figure or table row:6970- **Ablate** each component (drop the filter, halve the table, disable the guard)71 to show each earns its area.72- **Sweep** the structural parameters: table sizes, associativities, thresholds,73 core counts, LLC capacities, DRAM bandwidth. The mechanism should degrade74 gracefully at the sweep edges — cliffs demand explanation in the text.75- **Stress adversarially:** the workload class the mechanism should *not* help, the76 access pattern designed to defeat it. Reporting a bounded loss builds more trust77 than an unbroken win column.7879## Simulation-length and validation sanity8081Two credibility checks reviewers apply that authors often skip:8283- **Enough simulated instructions per region.** Sub-100M-instruction detailed84 windows on memory-bound workloads mostly measure the warmup transient. State85 warmup and detailed lengths, and show at least once that doubling them does not86 move the headline.87- **Baseline validation against published numbers.** Before trusting relative88 results, show your baseline's absolute behavior is sane: IPC or MPKI within89 the published envelope for the same suite and a comparable config. A baseline90 whose branch predictor achieves 2x the published MPKI of the modeled design91 invalidates the comparison silently.9293For multicore results, disclose how heterogeneity was handled: mix construction94rule, per-mix repetitions, and whether throughput is weighted speedup, harmonic95mean, or raw IPC sum — each answers a different question and reviewers check that96the metric matches the claim (fairness claims need a fairness metric).9798## Overhead accounting checklist99100- [ ] Storage: bits/entry × entries, totaled in KB, per core and shared.101- [ ] Area and power: model named with version (e.g., McPAT vX at Ynm), numbers102 labeled as estimates.103- [ ] Latency: added pipeline stages or access-path cycles; off critical path104 claims justified.105- [ ] Energy: dynamic + leakage deltas, not just "negligible."106- [ ] Complexity: verification surface, new SRAM ports, wiring — one honest107 paragraph.108109## Output format110111```text112[Instrument] <rung used> — claim height matches: yes / no (quote the overclaim)113[Baseline strength] product-like config / best-prior reimplemented / oracle bound /114 iso-storage check: present-absent each115[Workloads] suite + subset rule + sampling disclosure: complete / gaps listed116[Summary stats] per-workload + geomean + regression count: yes / no117[Ablations] each mechanism component covered: list of unablated components118[Sensitivity] parameters swept vs parameters hardcoded119[Overheads] storage / area / power / latency / energy: quantified-missing each120```