The Discrete Gauge Network (DGN) is a permutation-based neural architecture that uses a static 64-byte bijective lookup table per channel. The forward pass computes output = table[ (state XOR gauge) & 0x3F ] across all positions simultaneously using SIMD vector registers.
State Tensor: LAYERS x CHANNELS x CONTEXT_SZ = 32 x 64 x 1024 = 2 MB
Gauge Tensor: CHANNELS x CONTEXT_SZ = 64 x 1024 = 64 KB
Perm Tables: LAYERS x CHANNELS x 64 = 32 x 64 x 64 = 128 KB
Landing page
Runtime health and configuration
Run layer forward pass
Compute dyadic gauge field
Execute bijective swap
DGN Kernel v0.1.0