Papers
Topics
Authors
Recent
Search
2000 character limit reached

Neuromorphic Intermediate Representation (NIR)

Updated 24 May 2026
  • Neuromorphic Intermediate Representation is a standardized, hardware-agnostic formalism that defines neuromorphic systems via hybrid dynamical models combining continuous and event-driven behaviors.
  • It structures models as dataflow graphs with clearly defined computational primitives, enabling precise serialization, quantization, and systematic code generation for various simulators and digital hardware.
  • NIR supports cross-platform research through rigorous abstraction, facilitating reproducible deployment with demonstrated results in systems like SpiNNaker2 and FPGA pipelines.

Neuromorphic Intermediate Representation (NIR) is a standardized, hardware-agnostic model description formalism for specifying, manipulating, and deploying neuromorphic algorithms—particularly Spiking Neural Networks (SNNs)—across heterogeneous simulation environments and digital neuromorphic hardware platforms. NIR enables reproducible, cross-platform research by providing a unifying, mathematically rigorous abstraction that captures both the continuous-time dynamics and discrete event-driven behaviors characteristic of neuronal systems, while systematically decoupling algorithmic specifications from backend discretization, precision, and architectural idiosyncrasies (Pedersen et al., 2023, Arfa et al., 9 Apr 2025, Pachideh et al., 3 Apr 2026).

1. Mathematical Foundations and Formalism

NIR models every component of a neuromorphic system as a hybrid dynamical system, combining ordinary differential equations (ODEs) for continuous-time state evolution and instantaneous, event-triggered state transitions such as spike-induced resets. Specifically, each NIR computational primitive cCc \in \mathcal{C} is defined by:

  • A set of continuous state variables x(t)RNxx(t) \in \mathbb{R}^{N_x}, evolving according to

x˙=fθ(x,u(t))\dot x = f_\theta(x, u(t))

where u(t)u(t) is a continuous input and θ\theta encodes model parameters

  • Event-trigger conditions:

gθ(x,u(t))=0    xhθ(x,u(t))g_\theta(x, u(t)) = 0 \implies x \mapsto h_\theta(x, u(t))

describing jumps or resets.

For instance, a Leaky Integrate-and-Fire (LIF) neuron primitive is defined as:

  • Continuous dynamics:

τdvdt=(vleakv)+Ri(t)\tau \frac{dv}{dt} = (v_{\rm leak} - v) + R i(t)

  • Discrete thresholding and reset rules:

s(t)=δ(v(t)θthr)s(t) = \delta(v(t) - \theta_{\rm thr})

with either hard reset v(t+)=0v(t^+) = 0 or subtractive reset v(t+)=v(t)θresetv(t^+) = v(t) - \theta_{\rm reset} when threshold is crossed.

NIR provides both ideal continuous-time descriptions and canonical discrete approximations (e.g., Euler, exponential Euler), with explicit formulas mapping abstract parameters to backend-specific representations (e.g., fixed-point weights, surrogate gradients, discretized time constants) (Pedersen et al., 2023, Arfa et al., 9 Apr 2025).

2. Instruction Set and Core Primitives

NIR defines a composable palette of parametric primitives, which serve as the "instruction set" for neuromorphic computation. These primitives fall into three broad categories:

  • Stateless linear and spatial operators: Input, Output, Affine, Linear, Convolution, Scale, Flatten, Delay. Each exposes a shape-annotated port-based interface and operates arithmetically on its input (e.g., x(t)RNxx(t) \in \mathbb{R}^{N_x}0 for affine).
  • Stateful continuous-time primitives: Integrator, Leaky Integrator (LI), and Spike/Threshold. Defined by (potentially stiff) ODEs together with event-driven ports.
  • Composite neuron models: IF (Integrate-and-Fire), LIF, CuBa-LIF, typically defined as compositions (e.g., LIF = Reset ∘ Threshold ∘ Leaky Integrator).

Table: Representative NIR Primitives and Their Key Parameters

Primitive Parameters Ports (I/O)
Input shape out
Affine x(t)RNxx(t) \in \mathbb{R}^{N_x}1, x(t)RNxx(t) \in \mathbb{R}^{N_x}2 in → out
Convolution kernel, stride, padding, dilation, bias in → out
LIF x(t)RNxx(t) \in \mathbb{R}^{N_x}3, x(t)RNxx(t) \in \mathbb{R}^{N_x}4, x(t)RNxx(t) \in \mathbb{R}^{N_x}5, x(t)RNxx(t) \in \mathbb{R}^{N_x}6, reset I (current), S_out (spike)
Synapse x(t)RNxx(t) \in \mathbb{R}^{N_x}7, delay S_in (spike), I_out (curr)
Delay d (delay steps) S_in → S_out

The explicit, port-based design and direct mapping of neuron and synapse attributes enable unambiguous serialization and code generation for a wide portfolio of simulators and hardware targets (Pedersen et al., 2023, Pachideh et al., 3 Apr 2026).

3. Dataflow Graph Model and Serialization

NIR expresses an SNN or general neuromorphic system as a directed graph x(t)RNxx(t) \in \mathbb{R}^{N_x}8:

  • x(t)RNxx(t) \in \mathbb{R}^{N_x}9: Nodes, each associated to a primitive and a set of concrete parameter values.
  • x˙=fθ(x,u(t))\dot x = f_\theta(x, u(t))0: Edges, each connecting output ports to input ports, and carrying type- and shape-annotated signals (tensors, events, or states).

A typical NIR model serialization (usually in JSON or equivalent) includes:

  • Node definitions with IDs, primitive types, parameter dictionaries, named in/out ports
  • Edge list specifying (source_node, src_port) → (destination_node, dst_port)
  • Input node and output node specification
  • Optional metadata: quantization scales, delays, reset mechanisms, event routing information

This organization supports direct code generation and transformation passes (quantization, hardware lowering, parameter rescaling) (Pedersen et al., 2023, Arfa et al., 9 Apr 2025, Pachideh et al., 3 Apr 2026).

4. Quantization, Metadata, and Transformation Passes

NIR maintains all parameter values in either full-precision or quantized forms, tracked as node metadata. The standardized representation is essential for efficient deployment on constrained digital neuromorphic platforms.

  • Quantization formats: Node attributes may carry full-precision weights x˙=fθ(x,u(t))\dot x = f_\theta(x, u(t))1, quantized values x˙=fθ(x,u(t))\dot x = f_\theta(x, u(t))2, and associated scaling factors x˙=fθ(x,u(t))\dot x = f_\theta(x, u(t))3 or x˙=fθ(x,u(t))\dot x = f_\theta(x, u(t))4 (percentile- or learned-scaling) (Arfa et al., 9 Apr 2025).
  • Post-Training Quantization (PTQ): Weights rescaled by

x˙=fθ(x,u(t))\dot x = f_\theta(x, u(t))5

(where x˙=fθ(x,u(t))\dot x = f_\theta(x, u(t))6 is the x˙=fθ(x,u(t))\dot x = f_\theta(x, u(t))7th percentile), with LIF thresholds x˙=fθ(x,u(t))\dot x = f_\theta(x, u(t))8 also scaled by x˙=fθ(x,u(t))\dot x = f_\theta(x, u(t))9. Quantization metadata is stored in the NIR graph for precise code emission.

u(t)u(t)1

(see Algorithm 1 in (Arfa et al., 9 Apr 2025)). All relevant quantities are tracked within NIR nodes.

These passes are automated at the NIR level and facilitate backend targeting without loss of algorithmic fidelity.

5. Cross-Platform Interoperability and Deployment

A core property of NIR is backend-agnosticism: the same NIR model can be compiled, unchanged, for a wide spectrum of software simulators (e.g., Lava, Nengo, Norse, snnTorch, Rockpool) and digital neuromorphic hardware (SpiNNaker2, AMD Kria via YANA, Loihi, Xylo) (Pedersen et al., 2023, Pachideh et al., 3 Apr 2026).

Notable outcomes:

  • Empirical equivalence in spike times, membrane voltage traces, and test accuracy across platforms for standard benchmarks (e.g., ≥98% accuracy on N-MNIST SCNN, near-identical firing patterns for LIF single neuron) (Pedersen et al., 2023).
  • Rapid translation from high-level frameworks (PyTorch, Brevitas, Norse) into NIR—then into hardware via per-backend 'emitters', obviating u(t)u(t)2 bespoke translators.
  • Hardware resources and schedules (e.g., SRNN mapping, pipeline timing, sparse event routing) are generated by traversing the NIR graph, with performance optimizations such as blockwise buffer allocation, fused LUT-based leak, and pruning/weight sharing recognized at deploy time (Pachideh et al., 3 Apr 2026).

6. Exemplars: SpiNNaker2 and FPGA Pipelines

Deployment pipelines utilizing NIR illustrate its end-to-end expressivity:

  • SpiNNaker2: NIR graphs are quantized with PTQ or QAT, mapping LIF nodes to M4F core populations and convolution/linear projections. All quantization metadata, delays, and thresholds are directly processed from NIR, achieving 4× model size reduction with ≤1% accuracy drop and sub-joule inference energy per gesture (DVS-Gesture, 94% on-chip accuracy) (Arfa et al., 9 Apr 2025).
  • YANA (FPGA on AMD Kria): NIR is parsed, nodes partitioned and memory-mapped (URAM for weights, BRAM for neuron states), and event-driven stages (RX, Synapse, Neuron, Axon, TX) synthesized. LUT-based leak computation, native weight sharing, and pruning directives are handled at the NIR level. Sustained throughput is one event per cycle, with resource-efficient mapping for up to u(t)u(t)3 synapses and u(t)u(t)4 neurons per core (Pachideh et al., 3 Apr 2026).

7. Benefits, Current Limitations, and Extension Trajectories

NIR provides:

  • Clear separation between algorithmic model and implementation, enabling portable, comparable, and verifiable research and deployment (Pedersen et al., 2023, Arfa et al., 9 Apr 2025, Pachideh et al., 3 Apr 2026).
  • Unified reference semantics for continuous-time, event-driven neuromorphic systems.
  • Precise, typed, and extensible representations suited to compiler-based toolchains.

However:

  • NIR does not enforce strict bitwise-equivalence across platforms: discretization/integration and numeric precision may still yield subtle behavioral divergence (Pedersen et al., 2023).
  • Restricted to a fixed primitive palette (LIF, CuBa-LIF, etc.); explicit representation of advanced plasticity, learning rules, or conductance synapses requires further compositional constructs.
  • No built-in support for analog or hybrid (mixed-signal) backends.

Proposed extensions include broadening primitive sets (adaptation/plasticity), introducing formal mismatch specifications for backend drift, tighter integration of quantization and calibration tooling, and evolution into a compiler intermediate representation with support for algebraic graph optimizations and deployment scheduling (Pedersen et al., 2023).


Key References:

  • “Neuromorphic Intermediate Representation: A Unified Instruction Set for Interoperable Brain-Inspired Computing” (Pedersen et al., 2023)
  • “Efficient Deployment of Spiking Neural Networks on SpiNNaker2 for DVS Gesture Recognition Using Neuromorphic Intermediate Representation” (Arfa et al., 9 Apr 2025)
  • “YANA: Bridging the Neuromorphic Simulation-to-Hardware Gap” (Pachideh et al., 3 Apr 2026)

Topic to Video (Beta)

No one has generated a video about this topic yet.

Whiteboard

No one has generated a whiteboard explanation for this topic yet.

Follow Topic

Get notified by email when new papers are published related to Neuromorphic Intermediate Representation (NIR).