Skip to content
Technology How it works Breeder — Hyperion Burner — Aegis Burner — MetroVolt AI-Native Architecture Magnets Fuel cycle Safety Roadmap
Solutions AI & Data Centers Defense & Government Grid & Baseload Neutron Detection Quantum
Learn Technical Library
Proof Publications Whitepapers Technical Library Open Science & Reproducibility The Honest Gates
Company About / Mission Leadership Environment Health & Safety Investors Careers Press Contact
3D Model
AI Architecture › Mathematical Foundations
Mathematical Foundations

Equivariance and Invariance in Graph Networks

Symmetry is a modeling asset; building permutation, and where relevant geometric, symmetry into GNNs cuts data needs and enables breeder-to-burner transfer.

STRATEGY / SLOW ▲ ▼ MICROSECOND REAL-TIMEL7Ecosystem & Strategytelemetry ▲ control ▼open ▸L6Experience & Visualizationtelemetry ▲ control ▼open ▸L5Applications & Copilotstelemetry ▲ control ▼open ▸L4Orchestrationtelemetry ▲ control ▼open ▸L3Twin Modeling & AItelemetry ▲ control ▼open ▸L2Data Fabrictelemetry ▲ control ▼open ▸L1Control Planetelemetry ▲ control ▼open ▸L0Foundationtelemetry ▲ control ▼open ▸PHYSICAL S.M.A.R.T. GENERATOR PLANTBREEDER · HYPERION1R0 1.2 m · A 2.5 · 16.84 T · δ −0.30BURNER · TANDEM MIRROR2317 T throat · 26.49 T plug · fₙ 5.44% · DEC1 center stack + plasma · 2 high-field plug · 3 expander → direct converterCOLOR GRAMMAR strategy AI-workflow infra/data models reactor/DECLINE SEMANTICStelemetry (µs)controlKRONOS FUSION ENERGYAI-NATIVE S.M.A.R.T. GENERATORMASTER BLUEPRINTSHEET 01REV. 2026-08L0-L7 · 2 MACHINES
The AI-Native S.M.A.R.T. Generator Master Blueprint — eight layers (L0→L7), one control stack, wired to both machines. Telemetry rises in microseconds; control descends the same path.

Two symmetries that matter

A correct model of the sensor graph should not depend on the arbitrary order in which sensors are listed (permutation symmetry), and physical vector quantities should transform consistently under rotation/reflection (geometric symmetry). Encoding these directly means the network cannot waste capacity learning them from data, and it generalizes across configurations it has not seen.

text
Permutation equivariance / invariance:

  For any node permutation P:
    GNN_layer(P x, P A P^T) = P * GNN_layer(x, A)   (equivariant)
    readout( P x ) = readout( x )                   (invariant)

  Guaranteed if aggregation AGG is order-independent
  (sum / mean / attention) -> node ordering irrelevant

Why it enables transfer

Permutation equivariance is what lets a GNN trained on the breeder's diagnostic topology apply to the burner's different sensor set, and lets sensors be added or retired mid-life without retraining. The learned message and update functions act on features and local structure, not on fixed node indices, so the model transfers where the physics is analogous.

python
# invariant graph readout (order-independent)
def readout(h_nodes):
    return concat(sum(h_nodes, axis=0),
                  mean(h_nodes, axis=0),
                  max(h_nodes, axis=0))   # all permutation-invariant

Geometric equivariance where needed

For quantities that are vectors in space - field perturbations, displacements - the stack uses equivariant message functions so that rotating the inputs rotates the outputs identically. This keeps learned dynamics physically consistent and reduces the data needed to cover orientations, which matters given how little device-relevant data exists, especially for the burner.

Symmetry is treated as free, verified physics knowledge: building it in is preferred over hoping the network learns it, particularly in the data-poor burner regime where every prior counts.

Content reviewed August 2026 · design-and-simulation stage