Overview
On August 24, 2026, Anima Anandkumar, Bren Professor of Computing and Mathematical Sciences at Caltech, posted a paper on arXiv. The same day, Reuters reported that her AI physics-simulation startup Accelerated Understanding, co-founded with Benedikt Jenik, had emerged from stealth.
The paper uses a variant of the Fourier Neural Operator (FNO) to approximate the Kohn-Sham forward map in density functional theory (DFT). Translated into industry terms, it is a proof point that "AI replacing supercomputers" can move from slogan to reality.
Key points
- Training data: only 8,504 structures (not millions), with a single model handling both molecules and solid materials across the first five rows of the periodic table.
- Extrapolation to unseen drug-scale macromolecules: Kohn-Sham FNO density error 2.23% vs 9.97% for direct-prediction models.
- At 45 heavy atoms: direct prediction error balloons to 41%; Kohn-Sham FNO stays at 4%.
- Magnesium dislocation benchmark: a single NVIDIA B300 GPU completed full DFT for 8,250 atoms and 82,500 valence electrons.
- 2019 equivalent: the Summit supercomputer needed roughly 7,800 NVIDIA V100 GPUs for a smaller system (ACM Gordon Bell Prize finalist study).
- Scaling exponent: Kohn-Sham FNO 1.03 (near-linear) vs conventional DFT 3.37 (cubic).
- This is not "a bit faster" — the computational complexity curve itself is rewritten from O(N³) to O(N log N).
- Route A: directly predict final electron density. Works on easy cases; fails on hard ones. Extrapolating to drug-scale molecules, error grows from ~1% to 10%, up to 41%.
- Route B: learn the inverse map (potential → density). Mathematically unstable. In the paper's tests, every calculation diverged within a few iterations.
- Route C (the paper's approach): FNO learns the single-step forward map and is embedded back into the physicists' original iteration loop. Complexity drops to O(N log N), and divergence in the loop acts as a built-in alarm.
- 2019 (Gordon Bell finalist): 6,164 magnesium atoms, Summit supercomputer, ~7,800 V100 GPUs.
- 2026 (Kohn-Sham FNO): 8,250 atoms, 82,500 valence electrons (34% larger), one NVIDIA B300 GPU, all calculations converged.
- Anima Anandkumar: PhD from Cornell, MIT postdoc, Bren Professor at Caltech; former Chief Scientist at AWS and Senior Director of AI Research at NVIDIA (joined 2018); originated FNO in 2020 and co-launched FourCastNet (2022) for global weather forecasting.
- Benedikt Jenik: background in large-scale ML systems, autonomous driving research, and ML infrastructure for large online platforms.
Why direct prediction fails and the forward-map approach works
DFT is the foundation of modern computational chemistry, and its bottleneck has not changed in 60 years: each iteration step requires solving a cubic-scaling Kohn-Sham equation.
AI attempts over the past five years took two failed routes:
The philosophy parallels LLMs: direct prediction is like asking a model for the final answer in one shot, while embedding in iteration is like chain-of-thought reasoning with self-verification at each step.
Data efficiency: one model for molecules and solids
The 8,504-structure dataset seems small, but the paper's engineering answer is a domain-invariant FNO variant: systems of different sizes share the same learned filters. Small molecules (10–50 atoms) and bulk crystals (1,000+ atoms) use the same model, and training data does not need to scale with system size.
Extrapolation results
| Test | Direct prediction | Kohn-Sham FNO | |---|---|---| | Drug-scale macromolecules (unseen) | 9.97% | 2.23% | | 45 heavy atoms (extreme extrapolation) | 41% | 4% |
Beyond the training distribution, direct-prediction models fail entirely while Kohn-Sham FNO remains usable — an extrapolation-robustness gap of more than 10×.
Magnesium dislocation: 1 B300 vs 7,800 V100
The critical number is the scaling exponent (hardware-independent): conventional DFT at 3.37 (cubic) vs Kohn-Sham FNO at 1.03 (near-linear). Doubling system size doubles compute in the latter; it multiplies compute ~1000× per 10× system growth in the former.
Built-in safety valve
Because the FNO sits inside the iteration loop, it "knows what it doesn't know": if pushed beyond its capability, the iteration diverges and flags the result as untrustworthy; if it converges, confidence is equivalent to traditional DFT. The magnesium dislocation first attempt diverged immediately with the generic pretrained model — the divergence itself was the alarm.
The company: Accelerated Understanding
Anandkumar's split from NVIDIA (reportedly encouraged by Jensen Huang to grow the FNO line internally) means NVIDIA loses an internal neural-operator mainline, while Accelerated Understanding occupies the "AI-replacement" quadrant — a mirror competition with NVIDIA's "GPU acceleration" story.
Limitations
1. Functional choice remains the bottleneck — FNO accelerates computation given a functional; it does not fix systematic errors of LDA/GGA for strongly correlated systems. 2. System size ceiling — for 10⁵+ atoms, FNO memory will exceed single-GPU VRAM without further engineering. 3. Non-equilibrium dynamics — excited states, transition states, and molecular dynamics extrapolation remain open problems. 4. Training-data cost — the 8,504 structures were generated by traditional DFT; scaling coverage could erode the gains.
Outlook
Three things to watch over 12–24 months: Accelerated Understanding's first commercial contract; whether Kohn-Sham FNO weights are open-sourced; and whether a team in China (DP Technology, XtalPi, CAS, Tsinghua/Peking University) independently reproduces the single-GPU-vs-7,800-GPU comparison within six months. Any of these could turn AI for Science from a GPU-accelerated assistant into an engineering foundation that replaces traditional numerical methods.
Sources: arXiv paper (2026-08-24, Anima Anandkumar, Benedikt Jenik et al.); Reuters (2026-08-24) startup coverage; ACM Gordon Bell Prize finalist study (2019); NVIDIA FourCastNet (2022).