Parallelized Hierarchical Connectome (PHC)
- PHC is a framework that transforms diagonal state-space models by integrating structured spatial communication with a shared neuron and synapse layer, all within a hierarchical connectome.
- It decomposes intrinsic dynamics and inter-neuron communication to enforce biological constraints like Dale’s Law and short-term plasticity while preserving O(log T) parallelism.
- The Multi-Transmission Loop enables intra-timestep spatial recurrence, offering a parameter-efficient, competitive alternative to stacked SSM architectures.
Parallelized Hierarchical Connectome (PHC) is a general framework that upgrades temporal-only State-Space Models (SSMs) into spatiotemporal recurrent networks by combining diagonal SSM parallelism with explicit intra-slice neural communication (Chiang, 1 Apr 2026). In the formulation introduced with the PHCSSM instantiation, the diagonal SSM core is mapped to a shared Neuron Layer, inter-neuronal communication is mapped to a shared Synapse Layer, and neurons are partitioned into hierarchical regions governed by a connectome topology. A Multi-Transmission Loop enables spatial recurrence within each temporal window while preserving parallelism, and the framework is presented as the first model to unify recurrent spiking neural network dynamics with diagonal SSM parallelism while enforcing all five biological constraints and learnable lateral connections within a fully parallelizable training pipeline (Chiang, 1 Apr 2026).
1. Diagonal state-space substrate and parallel scan
PHC is defined against the background of the standard discrete-time linear SSM
where is the hidden state, is the input, and . Modern SSMs, including S4, Mamba, and S5 in the exposition, restrict to be diagonal,
so that the state update decouples across dimensions:
This diagonal Jacobian form admits an parallel-scan solution of the leaky-integrator recurrence
via the log-domain prefix-sum trick. Letting
0
and enforcing 1, the exposition gives
2
Here, 3 is the inclusive prefix scan of its argument, implementable in 4 depth via a Hillis–Steele algorithm.
The central limitation identified by PHC is that conventional diagonal SSMs retain only temporal recurrence. They do not natively provide lateral or feedback interactions within a single timestep. PHC therefore preserves the diagonal recurrence that supports scan-based parallelism, but augments it with structured spatial communication. A common misconception is that such augmentation must reintroduce full temporal serialization; in the PHC formulation, that is explicitly not the case, because the temporal recurrences remain scan-solvable.
2. Decomposition into Neuron Layer and Synapse Layer
PHC decomposes the standard diagonal-SSM state transition into two half-steps at each transmission. The Neuron Layer (NL) contains purely diagonal intrinsic dynamics, including per-neuron leaky integration, adaptation, and refractory behavior. The Synapse Layer (SL) contains all inter-neuron communication, including lateral, feedforward, and feedback transmission, mediated by a shared weight matrix.
The notation assumes a batch of size 5, sequence length 6, neuron dimension 7, and 8 hierarchical regions. Neuron indices are 9, region indices are 0, and 1 denotes the number of neurons in region 2. The variables 3, 4, 5, 6, 7, 8, and 9 parameterize the neuronal and synaptic states, while 0 is the unconstrained synaptic weight matrix, 1 is the binary topology mask, and
2
is the effective structural weight matrix.
Within the NL, three parallel scans and spike generation implement adaptive leaky integrate-and-fire behavior:
3
4
5
6
7
Here 8 is the Heaviside step with surrogate gradient, 9 is a softplus for strict positivity, and all three recurrences use the logcumsumexp primitive.
Within the SL, the pre-synaptic stage implements Tsodyks–Markram short-term plasticity:
0
1
with 2, and these recurrences are also cast as affine scans solved in 3.
The post-synaptic stage enforces zero diagonal, imposes Dale’s Law at the level of each presynaptic column, applies the topology mask, and computes structured transmission:
4
The decomposition is significant because it isolates diagonal, scan-friendly intrinsic dynamics from dense but shared spatial connectivity. This suggests that PHC is not a rejection of diagonal SSM design, but a structural generalization of it.
3. Hierarchical region partitioning and connectome topology
A defining feature of PHC is the partition of the 5 neurons into 6 non-overlapping macro-regions of sizes 7. The connectome is encoded by a block-structured binary mask
8
with blocks 9 indicating whether neurons in region 0 may project to neurons in region 1 (Chiang, 1 Apr 2026).
Two canonical masks are specified. The feedforward-only mask 2 permits 3 and 4 from 5, but no feedback 6. The bidirectional mask 7 permits both 8 and 9. In graph-theoretic terms, the system is a graph 0 with
1
and weighted adjacency 2.
The framework’s hierarchical language refers to this regional partition and block-level admissibility structure. It does not merely impose sparsity; it specifies which classes of inter-regional projections are allowed. A plausible implication is that the region mask functions as an architectural prior analogous to a connectome-inspired constraint, making the connectivity pattern itself part of the model class rather than a post hoc regularizer.
Because PHC places the connectome topology in the shared SL rather than across a stack of independent layers, the hierarchy is expressed spatially within each timestep. This differs from a conventional layered interpretation in which depth is accumulated only through serial composition over layers.
4. Multi-Transmission Loop and intra-slice spatial recurrence
PHC recovers within-timestep spatial depth through a Multi-Transmission Loop. Let 3 denote the gated encoder input and initialize 4. Then, for 5,
6
7
8
The loop terminates early when the Cauchy criterion holds,
9
or when 0.
Algorithm 1 in the exposition runs this loop in parallel across 1 by using the log-scan in the NL and STP recurrences, together with a single shared matrix multiply 2 in the SL. The resulting temporal depth is 3 per scan, the spatial depth is 4 iterations, and the total depth is 5 (Chiang, 1 Apr 2026).
This loop is the mechanism by which PHC introduces intra-slice spatial recurrence without abandoning the parallel-scan structure inherited from diagonal SSMs. A common misunderstanding is to equate recurrence with obligatory backpropagation through time over a serial chain of timestep updates. In PHC, the recurrence is split: temporal recurrence remains diagonal and scan-solvable, while spatial recurrence is handled by repeated circulation over a fixed connectome within the same temporal window.
The framework therefore relocates a substantial portion of expressive depth from stacked temporal layers to repeated spatial transmissions over shared structure. The exposition states this directly in complexity terms: PHC collapses the vertical depth 6 of independent SSM layers into spatial circulations 7 over a fixed connectome.
5. Biological priors and plasticity mechanisms
PHC is designed to integrate neuro-physical priors that are described as typically intractable for standard SSMs. The exposition explicitly details adaptive leaky integrate-and-fire dynamics, Dale’s Law, short-term plasticity, and reward-modulated spike-timing-dependent plasticity, all within the same parallelizable framework.
Adaptive leaky integrate-and-fire behavior is implemented in the NL through the recurrences for membrane potential, adaptive threshold, refractory suppression, and spike generation. The model uses the Heaviside step with surrogate gradient, softplus-enforced positivity, and learnable parameters 8, 9, 0, 1, and 2.
Dale’s Law is enforced by clamping each presynaptic column of 3 to be either all nonnegative for excitatory neurons or all nonpositive for inhibitory neurons:
4
The specified excitatory/inhibitory ratio is approximately 5.
Short-term plasticity uses the Tsodyks–Markram formulation with state variables 6 and 7. Because these updates are recast as affine scans, the framework maintains the same scan-based temporal parallelism that motivates diagonal SSMs in the first place.
Reward-modulated spike-timing-dependent plasticity introduces eligibility traces
8
with 9, followed by accumulated weight change
0
Reward gating and synapse-type masking are then applied through
1
followed by reapplication of Dale’s Law, with
2
The significance of these mechanisms is not only biological plausibility. The paper’s framing suggests that biologically grounded inductive biases may serve as a principled route to parameter-efficient sequence modeling. That claim is presented not as a biological argument alone, but as an architectural one: the priors are embedded in a model class that remains fully parallelizable during training.
6. Complexity, training pipeline, and empirical positioning
The complexity comparison given in the exposition contrasts stacked diagonal SSMs and PHC directly. A stacked diagonal-SSM with 3 layers has a diagonal core of 4 time-constants per layer and a dense inter-layer MLP of size 5, for a total parameter count of 6 and compute per sequence of 7. PHC, by contrast, uses one shared NL with 8 time-constants and one shared SL matrix 9 of size 00, reused across 01 transmission steps. Its total parameter count is 02, its overall work per sequence is 03, and its depth is 04 (Chiang, 1 Apr 2026).
The reported implementation notes specify 05 regions, equal partition 06, and an excitatory/inhibitory ratio of 07 in each region. The topology mask choice, either 08 or 09, is selected per task by validation. Additional hyperparameters include synaptic delay 10, STP parameters 11, 12, and 13, loop parameters 14, 15, and 16, an encoder consisting of linear 17 plus LayerNorm with an input mask 18, and a readout defined as mean-over-time of 19 on designated readout neurons followed by RMSNorm and linear decoder 20.
Training uses cross-entropy together with 21 for a mean firing-rate penalty and 22 for a voltage penalty. All recurrences in the NL and STP components are solved via log-domain prefix-sums in 23, eliminating BPTT over time. R-STDP updates are applied after each batch outside the autograd graph, and the framework is described as implementable in JAX/Flax or PyTorch with custom prefix-sum kernels. For inference, the log-scan can be replaced with sequential step-by-step updates for energy-efficient spiking-platform execution.
The empirical results reported for PHCSSM are on physiological benchmarks from the UEA multivariate time-series archive. The model is stated to achieve performance competitive with state-of-the-art SSMs while reducing parameter complexity from 24 for 25-layer stacked architectures to 26. Within the paper’s interpretation, these findings suggest that biologically grounded inductive biases offer a principled route to parameter-efficient sequence modeling and open diagonal SSMs to spatiotemporal recurrence.