Exploring the Efficiency of 3D-Stacked AI Chip Architecture for LLM Inference with Voxel
A simulator for 3D-stacked AI chips reveals that memory mapping decisions matter as much as raw hardware specs for LLM inference.

The Thesis
Running large language models efficiently requires moving data as much as crunching numbers — and today's flat chip designs hit a memory bandwidth wall. 3D-stacked chips solve this by placing DRAM memory banks directly on top of compute cores, connected through thousands of tiny vertical wires called through-silicon vias (TSVs), dramatically shrinking the distance data must travel. The catch is that this architecture is fiendishly complex to optimize: decisions about how to assign computational tiles to cores and how to map data tensors to specific memory banks can swing performance dramatically. This paper introduces Voxel, a fast simulation framework that lets chip designers and ML compiler engineers explore those tradeoffs together before committing to silicon. The authors validated Voxel against real hardware and found that mapping strategies — not just raw bandwidth or compute — are the dominant efficiency lever.
Catalyst
LLM inference at scale has exposed memory bandwidth as the binding constraint on AI accelerator performance, pushing the industry toward 3D packaging at a moment when TSV-based stacking has matured enough for production chips. At the same time, the cost of tape-outs (first physical silicon runs) has risen sharply, making pre-silicon simulation tools economically essential. The planned open-source release of Voxel arrives just as multiple chipmakers are actively designing 3D-stacked AI accelerators, giving the research community a shared testbed.
What's New
Prior chip simulators — tools like Timeloop or MAESTRO — were built around conventional 2D chip layouts and treat memory as a uniform, centrally accessible resource. They don't model the distributed, tile-local memory banks that define 3D-stacked architectures, nor do they let ML compilers inject custom execution plans into the simulation loop. Voxel introduces a compiler-aware programming interface that allows the simulation to reflect real software optimization decisions, closing the gap between theoretical hardware potential and what compilers actually achieve.
The Counter
Voxel is a simulator, not a shipping chip — and the history of computer architecture is littered with simulation frameworks that revealed beautiful tradeoffs that nobody could actually manufacture at yield. The paper validates against an emulator on 'real silicon,' but the details of what chip, at what scale, and with what production-representative workloads are thin. More importantly, the core finding — that mapping matters as much as hardware — is well-known to practitioners; experienced compiler teams at Nvidia, Google, and Meta already spend enormous effort on exactly these mapping problems for conventional architectures. It's not obvious that a new simulator changes that equation. The open-source release is promised but not yet delivered, so reproducibility can't be assessed. Finally, 3D stacking solves bandwidth but introduces severe thermal constraints that the paper acknowledges but does not fully resolve — heat trapped under stacked dies is a genuine manufacturing and reliability problem that no simulation framework can paper over.
Longs
- AMD (AMD) — HBM and advanced packaging are core to its MI-series AI accelerators
- SK Hynix (000660.KS) — leading supplier of HBM3 memory used in 3D-stacked AI chips
- Amkor Technology (AMKR) — advanced packaging and TSV assembly services
- Onto Innovation (ONTO) — semiconductor inspection tools critical for 3D stacking yield
- SOXX (semiconductor ETF) — broad exposure to memory and logic chipmakers benefiting from 3D packaging trends
Shorts
- Nvidia (NVDA) — its HGX platform relies on conventional HBM attached via interposer rather than full 3D stacking; validated simulation tools accelerate competitors' ability to close the performance gap
- Existing flat-chip AI accelerator vendors — simulation clarity around 3D advantages makes the case for architectural transitions that could displace current designs
Enablers (Picks & Shovels)
- TSMC CoWoS and SoIC advanced packaging processes — the manufacturing foundation for TSV-based 3D stacking
- HBM3/HBM3E DRAM from SK Hynix and Micron — the memory components being modeled
- MLIR and TVM ML compiler frameworks — the compiler infrastructure Voxel's programming interface is designed to integrate with
- Open-source Voxel simulator (planned release) — the direct research artifact enabling further co-design work
Private Watchlist
- Tenstorrent — designing AI chips with novel memory architectures where simulation tools like Voxel are directly relevant
- Enfabrica — network and memory fabric startup targeting AI inference bottlenecks
- d-Matrix — digital in-memory compute chip startup targeting LLM inference efficiency
Resources
The Paper
To overcome the well-known memory bottleneck of AI chips, 3D stacked architectures that employ advanced packaging technology with high-density through-silicon vias (TSVs) pins have proven to be a promising solution. The 3D-stacked AI chip enables ultra-high memory bandwidth between compute and memory by stacking numerous DRAM banks atop many AI cores in a distributed manner. However, it is not easy to explore the efficiency of the 3D-stacked AI chip, due to its unique distributed nature. And we need to carefully consider multiple intertwined factors that range from upper-level computing paradigm to machine learning (ML) compiler optimizations, and to the underlying hardware architecture. In this paper, we develop Voxel, a fast and compiler-aware end-to-end simulation framework to facilitate exploring the efficiency of 3D-stacked AI chips for large language model (LLM) inference. Voxel enables the software/hardware co-exploration by employing a programming interface that allows ML compilers to customize the model execution plans. After validating the results of Voxel with an emulator on real silicon, we thoroughly examine the impact and correlation of different aspects of 3D-stacked AI chips, including state-of-the-art compute paradigms, tile-to-core mapping, tensor-to-bank mapping, NoC topologies and link bandwidth, DRAM bank bandwidth, per-core SRAM capacity, and energy/thermal constraints. Our findings disclose that the end-to-end efficiency of a 3D stacked AI chip not only is determined by the cooperative function of these factors, but also significantly depends on the mappings from tiles to AI core and DRAM banks. We report our findings throughout the paper, with the expectation that they will shed light on the development of the 3D-stacked AI chip ecosystem. We will open source Voxel and our study results for public research.