Sunday, June 14, 2026

Today’s Edition

AI Intel Report

MARKETS

Research

What Is a Spiking Neural Network? A 2026 Explainer on Brain-Inspired AI

A spiking neural network (SNN) is a brain-inspired model whose neurons communicate with discrete electrical spikes over time instead of continuous numbers. Here is how SNNs work, how they differ from standard neural networks, and where they run in 2026.

9 MIN READ
A close-up macro photograph of a circuit board with fine traces lit by scattered pinpoints of light, suggesting brief electrical pulses moving across the silicon.
Illustration: AI Intel Report
In short

A spiking neural network (SNN) is a brain-inspired neural network whose neurons communicate with discrete electrical pulses, called spikes, over time rather than continuous numbers. A neuron fires only when its accumulated input crosses a threshold, making computation event-driven, sparse, and well suited to ultra-low-power, real-time hardware.

Most of the AI that reached the mainstream over the past few years runs on conventional artificial neural networks built from dense, floating-point math. Spiking neural networks take a different path, modeling computation more closely on how biological brains actually work. As the energy cost of AI inference becomes a serious constraint in 2026, SNNs and the neuromorphic chips that run them have moved from a niche neuroscience curiosity toward a credible answer for efficient AI at the edge. This explainer covers what an SNN is, how it works, how it is trained, and where it genuinely fits.

What is a spiking neural network?

A spiking neural network is an artificial neural network whose neurons exchange information as discrete spikes instead of continuous activation values. Each neuron maintains an internal state, the membrane potential, that rises as it receives incoming spikes. When that potential crosses a set threshold, the neuron emits a single spike to the neurons it connects to and resets its potential; otherwise it stays silent and emits nothing. The most common neuron model is the leaky integrate-and-fire (LIF) neuron, where the membrane potential also slowly "leaks" back toward rest over time, so old inputs fade unless reinforced. Because a neuron only acts when it fires, the network's activity is naturally sparse, and the timing of spikes, not just their presence, carries information.

How is a spiking neural network different from a regular neural network?

The defining contrast is what travels between neurons and when. A conventional artificial neural network (ANN) sends continuous, multi-bit floating-point values and computes its output in a single synchronous forward pass. An SNN sends one-bit spikes that unfold over a series of time steps, so the network is dynamic rather than static, and time becomes part of the representation. The table below maps the practical consequences.

Spiking neural networks vs. traditional artificial neural networks across the dimensions that matter in practice
DimensionTraditional ANNSpiking neural network (SNN)
Signal between neuronsContinuous floating-point valuesDiscrete one-bit spikes
Use of timeStatic; one forward passDynamic; many time steps
ComputationDense multiply-accumulateSparse, event-driven additions
Best hardwareGPUs and TPUsNeuromorphic chips
Training maturityMature, well-tooledHarder; active research area
Typical strengthHigh accuracy at scaleUltra-low-power, real-time edge

In short, ANNs optimize for accuracy and ease of training on dense data, while SNNs optimize for energy efficiency and responsiveness on sparse, event-based data. They are different tools for different constraints, not a strict upgrade in either direction.

Why are spiking neural networks more energy efficient?

The efficiency story rests on two ideas. First is event-driven computation: a spiking neuron draws power only when it fires, so at any moment the large fraction of neurons that are silent cost almost nothing. A conventional network, by contrast, evaluates every value on every clock cycle whether or not it changed. Second is the hardware. Neuromorphic chips are built to co-locate memory and compute, placing synaptic weights next to the neurons that use them. That sidesteps the von Neumann bottleneck — the constant, power-hungry movement of data between separate memory and processing units that dominates energy use on standard architectures. Survey research finds that on suitable workloads, SNNs running on neuromorphic hardware can reach roughly two orders of magnitude better energy efficiency than equivalent conventional networks, as summarized in a 2026 arXiv survey on spiking networks for ubiquitous computing. The honest caveat is that this advantage is conditional: it depends on genuinely sparse spiking activity and matching hardware, and it can erode on dense tasks where neurons fire often.

How are spiking neural networks trained?

Training is the central technical challenge. A spike is an all-or-nothing event, mathematically a step function that is non-differentiable, so the gradients that power ordinary backpropagation simply do not exist at the spike. The field has three main answers. The dominant one is the surrogate gradient: the network uses the real, hard spike function on the forward pass but swaps in a smooth, differentiable approximation on the backward pass, which lets standard optimizers like Adam update the weights, typically via backpropagation through time across the time steps. The second is ANN-to-SNN conversion, where a normal network is trained with mature tools and then mapped onto a spiking equivalent, trading some accuracy for efficiency. The third is biologically inspired spike-timing-dependent plasticity (STDP), an unsupervised rule that strengthens or weakens a connection based on the relative timing of the spikes flowing through it. STDP also enables on-chip learning, letting some neuromorphic systems adapt after deployment rather than only running fixed, pre-trained models.

What hardware runs spiking neural networks?

SNNs reveal their advantages on dedicated neuromorphic silicon. Intel's Loihi 2 is the most widely used research platform, with each chip able to model up to one million neurons. Intel's large-scale Hala Point system, deployed at Sandia National Laboratories, packages 1,152 Loihi 2 chips to reach 1.15 billion neurons and 128 billion synapses while drawing a maximum of about 2,600 watts, according to Intel. IBM has driven the research frontier with TrueNorth and the newer NorthPole chip; on the ResNet-50 image benchmark, IBM reported NorthPole was roughly 25 times more energy efficient than a comparable GPU, as published in Science. On the commercial side, the market is shifting from labs toward products: BrainChip (Akida), Innatera (whose Pulsar processor launched in 2025), and SynSense ship low-power neuromorphic chips for always-on sensing, with BrainChip raising $25 million in late 2025 to scale edge deployments, per Business Wire. SNNs can also be simulated on ordinary CPUs and GPUs for development, but without neuromorphic hardware they forfeit the efficiency that is their main reason to exist.

Where do spiking neural networks fit in 2026?

The realistic picture is one of focused strengths rather than wholesale replacement. SNNs shine where data arrives as a stream of events and power is tightly constrained: event-based vision from neuromorphic cameras, gesture and keyword spotting, audio detection, sensor fusion, robotics, predictive maintenance, and always-on monitoring in wearables and industrial IoT. They are not yet the default for large-scale, accuracy-first workloads — big language models, general image classification — where conventional networks on GPUs remain ahead and far easier to build. The durable case for SNNs is sustainability and latency: as AI's energy footprint grows and more inference pushes to the edge, a model that computes only when something happens, on hardware that keeps memory and compute together, is an increasingly attractive complement to the GPU-driven mainstream rather than a one-for-one substitute.

Frequently asked

What is a spiking neural network in simple terms?

A spiking neural network (SNN) is a type of artificial neural network whose neurons communicate the way biological brain cells do: by sending short electrical pulses, called spikes, instead of continuous numbers. Each neuron accumulates incoming signals into an internal value called a membrane potential, and only when that value crosses a threshold does it fire a single spike to the neurons downstream, then reset. Because a neuron stays silent until it has something to say, computation happens only when a spike occurs. This event-driven, sparse behavior makes SNNs naturally efficient for streaming, time-based data, and it is why they are the core model behind brain-inspired neuromorphic computing hardware.

How is a spiking neural network different from a regular neural network?

A standard artificial neural network (ANN) passes continuous, floating-point numbers between layers and computes everything in one synchronous forward pass. A spiking neural network sends discrete one-bit spikes that unfold over multiple time steps, so time itself carries information. The practical differences follow from that: ANNs do dense multiply-accumulate math on every value, while SNNs do sparse, event-driven additions only when a neuron spikes. ANNs run best on GPUs and TPUs; SNNs are designed for neuromorphic chips that co-locate memory and compute. The trade is that ANNs are far easier to train with today's tools and reach higher accuracy on most tasks, while SNNs target ultra-low-power, real-time, edge workloads.

Why are spiking neural networks more energy efficient?

Two properties drive the efficiency. First, SNNs are event-driven: a neuron consumes power only when it spikes, so the many neurons that stay quiet at any moment cost almost nothing, unlike a conventional network that processes every value on every clock cycle. Second, the neuromorphic chips built to run SNNs place memory next to compute, avoiding the constant shuttling of data between separate memory and processors known as the von Neumann bottleneck. Combined, these let SNNs on purpose-built hardware reach roughly two orders of magnitude better energy efficiency than conventional networks for suitable workloads, per research surveys. The caveat: the advantage depends on sparse activity and matching hardware, and it shrinks on dense tasks.

How are spiking neural networks trained?

Training is the hardest part of SNNs because a spike is a non-differentiable, all-or-nothing event, so ordinary backpropagation cannot compute gradients through it. The dominant fix is the surrogate gradient: the network uses the true spike function on the forward pass but substitutes a smooth, differentiable stand-in on the backward pass, letting standard optimizers like Adam update the weights, usually with backpropagation through time across the time steps. A second route is ANN-to-SNN conversion, where a conventional network is trained normally and then mapped onto a spiking one. A third is the biologically inspired spike-timing-dependent plasticity (STDP) rule, which adjusts a connection based on the relative timing of the spikes it carries.

What hardware runs spiking neural networks?

SNNs are typically run on neuromorphic chips designed for spike-based, event-driven computation. Intel's Loihi 2 is the most widely used research platform, with each chip simulating up to one million neurons; Intel's Hala Point system packs 1,152 of these chips to reach 1.15 billion neurons within roughly 2,600 watts, per Intel. IBM's research chips, including TrueNorth and the newer NorthPole, demonstrated large efficiency gains over GPUs. On the commercial side, BrainChip (Akida), Innatera (Pulsar), and SynSense ship low-power neuromorphic processors aimed at always-on sensing at the edge. SNNs can also be simulated on conventional CPUs and GPUs for development, but they only show their efficiency advantage on dedicated neuromorphic silicon.

What are spiking neural networks used for?

SNNs are best suited to tasks where data arrives as a stream of events over time and power is scarce. Common targets include event-based vision from neuromorphic cameras, gesture and keyword spotting, audio and speech detection, sensor fusion, robotics control, and always-on monitoring in wearables and industrial Internet-of-Things devices. They also fit predictive maintenance and edge cases in autonomous systems where a sensor must react in microseconds without sending data to the cloud. SNNs are not yet the default for large-scale, accuracy-driven workloads like big language models or general image classification, where conventional networks on GPUs still lead. The sweet spot is ultra-low-power, real-time inference at the edge, plus brain-simulation research.