IBM Research and ETH Zurich published GENCO (GEometric Neural Corrective Optimizer) on August 10 — a single neural architecture replacing three classical solvers for power grid steady-state analysis: power flow (PF), optimal power flow (OPF), and state estimation (SE). Benchmark: 30x faster than Newton-Raphson on large-scale PF, and 85x faster than IPOPT on OPF, while returning full AC-accurate results instead of the DC approximation most fast alternatives rely on.

GENCO benchmark speedups: 30× over Newton-Raphson on large-scale power flow, 85× over IPOPT on optimal power flow.
FIG. 02 GENCO benchmark speedups: 30× over Newton-Raphson on large-scale power flow, 85× over IPOPT on optimal power flow. — IBM Research / ETH Zurich, GENCO paper (arXiv:2608.09921)

Classical solvers force a choice. Newton-Raphson solves nonlinear AC power flow iteratively but becomes expensive and fragile on large transmission grids — convergence passes are costly and the method fails on stressed topologies. IPOPT, the standard interior-point OPF solver, has identical scaling limits: it handles offline planning but breaks under real-time dispatch with high renewable variability. DC-PF sidesteps both by linearizing equations and dropping reactive power entirely, running fast — but approximation error compounds in heavily loaded networks. Grid operators today choose between accuracy and speed. GENCO claims both.

SolverTask(s)Speed on Large GridsAccuracyKey Limitation
Newton-RaphsonPower Flow (PF)Slow — iterative, costly convergence passesFull AC (voltage magnitudes + reactive power)Fails on stressed/heavily loaded topologies
IPOPTOptimal Power Flow (OPF)Offline only — cannot meet real-time dispatchFull ACBreaks under high renewable variability
DC-PFPower Flow (PF)Fast — linearized equationsDC approximation — drops reactive power entirelyApproximation error compounds on heavily loaded networks
GENCOPF, OPF, State Estimation (SE)30× faster than Newton-Raphson (PF); 85× faster than IPOPT (OPF)Full AC-accurate resultsTransmission grids, steady-state only; generalization to unseen topologies is open
FIG. 03 Classical solvers vs. GENCO across task coverage, speed, accuracy, and key limitations — IBM Research / ETH Zurich, GENCO paper (arXiv:2608.09921)

The architecture is a graph neural network with buses as nodes and transmission lines as edges. The key innovation: a "corrective optimizer" layer. The network produces an approximate solution, then projects it back onto the physically feasible manifold. This blocks the failure mode of earlier neural OPF solvers, which produce infeasible outputs violating Kirchhoff's laws or generator limits. For PF, GENCO matches DC-PF convergence while recovering voltage magnitudes and reactive power — data DC-PF discards. For OPF, it improves feasibility and optimality over DC-OPF. For SE, it stabilizes under noisy SCADA measurements and network parameter errors where classical weighted least squares diverges.

GENCO architecture: GNN over the grid graph → approximate solution → corrective optimizer projects onto the feasible AC manifold, enforcing Kirchhoff's laws across all three tasks.
FIG. 04 GENCO architecture: GNN over the grid graph → approximate solution → corrective optimizer projects onto the feasible AC manifold, enforcing Kirchhoff's laws across all three tasks. — IBM Research / ETH Zurich, GENCO paper (arXiv:2608.09921)

Real-world testing strengthens the claim. The team validated GENCO on Hydro-Québec SCADA data, not synthetic benchmarks alone. The paper also establishes the PFDelta and OPFData benchmarks and releases millions of PF and OPF scenarios across diverse grid topologies — a reproducible benchmarking standard notably absent from this subfield, which has made side-by-side comparison between neural solvers nearly impossible.

GridFM Development Framework ships alongside the model, standardizing synthetic data generation and training in a low-code environment aimed at power system engineers without ML expertise. The authors position GENCO as a step toward a Grid Foundation Model — analogous to how large language models unified NLP tasks under a single pre-trained backbone.

Constraints remain. GENCO targets steady-state AC analysis on transmission grids only. Dynamic simulation — fault propagation, transient stability, sub-second response — is unaddressed. The 30x and 85x speedups are benchmarked against single-threaded classical solvers; production operators often run parallelized Newton-Raphson or warm-started IPOPT, which compresses that margin. Generalization to unseen grid topologies is an open question in a domain where operators regularly reconfigure assets.

For real-time dispatch architects: if Newton-Raphson latency is a bottleneck and your team can retrain on your topology using the open-source GridFM framework, GENCO is the most complete neural solver available — three tasks, AC accuracy, convergence guarantees on SE, and a million-scenario dataset to bootstrap from.