← All Explainers
AI hardware, heat, and a possible detour

Can AI Stop Being a Space Heater?

Thermodynamic computing, p-bits, and the race to build AI hardware that wastes less power moving bits around.

This explainer separates physics, startups, and wishful thinking as cleanly as possible.

If you ask why AI burns so much electricity, the naive answer is "because the models are huge." The less naive answer is "because we're forcing a probabilistic workload through deterministic hardware while hauling weights back and forth like groceries across a parking lot."

Thermodynamic computing starts from a rude question: what if some of that randomness, heat, and physical relaxation isn't a bug to suppress, but the computation itself?

I.

The Problem Is Not Just Compute. It's Heat.

Every serious conversation about AI hardware eventually collapses into thermodynamics, whether people admit it or not. A chip consumes electricity. That electricity becomes useful switching, leakage, signaling, and then, with brutal inevitability, heat. The more compute you pack into a rack, the more aggressively you must remove that heat or the rack throttles, fails, or both.

The International Energy Agency estimated that data centres consumed about 415 TWh of electricity in 2024, and projects roughly 945 TWh by 2030 in its base case. That is not a rounding error. It means AI is no longer just a software story or even a chip story. It is a building, utility, cooling, and transmission story.

People often talk as if cooling is a separate tax imposed on top of compute. Physically, it is the same tax viewed from another angle. If your hardware dissipates a megawatt, your facility now has a megawatt-shaped problem to get rid of. Fans, chillers, pumps, liquid loops, power delivery losses, and airflow design are not side quests. They are the invoice for your choice of computing substrate.

Plain-English version: when someone promises "low-cooling AI," what they usually mean is "less electrical power burned per useful result." You do not beat cooling with clever HVAC slogans. You beat it by wasting less energy in the first place.
Interactive 1 · Datacenter Heat Budget
AI rack cooling loop
Count64
Power700 W
Power Usage Effectiveness1.25
IT load44.8 kW
Facility load56.0 kW
Cooling + overhead11.2 kW
Daily energy1.34 MWh/day

The compute bill and the cooling bill are coupled. Higher device power density can be worth it, but only if the extra useful work outruns the extra heat, power delivery, and facility complexity.

Thermodynamic computing only makes sense against that backdrop. If the problem were merely "we need a slightly better GPU," the entire field would sound eccentric. But once energy becomes the limiting resource, even odd ideas deserve a hearing. The question is no longer only "how many operations per second?" It is "how many useful answers per joule, per rack, per liter of cooling water, per megawatt of site capacity?"

II.

Why GPUs Turn Probability Into Plumbing

GPUs are extraordinary machines. They also carry historical baggage. They were refined for graphics, then reused for machine learning because the math lined up beautifully with massively parallel linear algebra. That was a brilliant hack. It may not remain the optimal long-term substrate for every AI workload.

The central annoyance is the so-called memory wall. Arithmetic units are cheap only if data arrives exactly when needed. In large models, especially generative ones, moving activations, keys, values, and especially weights around the system becomes an energy problem in its own right. IBM's recent analog in-memory work phrases the issue plainly: every time you move weights on a traditional architecture, you spend time and energy just getting computation into position.

This is why so many "next-wave" hardware companies sound different but rhyme technically. Some want to compute inside memory. Some want to move information with photons. Some want to make randomness native instead of synthesizing it expensively with deterministic circuits. All of them are, in one way or another, rebelling against the same plumbing bill.

Interactive 2 · Move Bits or Move Physics?
Conventional accelerator
Main ideaseparate memory and compute
Traffic patternlong-haul shuttling
Best atdense deterministic math
Energy pressurecommunication heavy
Interpret the cartoon correctly: this widget is not claiming exact joules or exact layouts. It is showing where each architecture is trying to spend less energy: by shortening travel distance, merging storage with compute, or using local stochastic dynamics instead of shipping data to arithmetic blocks and back.

Thermodynamic computing is not the only anti-plumbing strategy. It is one member of a larger family of attempts to reduce the cost of moving information around while AI workloads explode.

This is also why "AI without massive cooling" is a slightly misleading dream. You probably do not get there by abolishing heat. You get there by changing the ratio of useful reasoning to wasteful movement. That is a much harder, much more interesting target.

III.

What Thermodynamic Computing Actually Is

First, a defensive clarification. Thermodynamic computing does not mean you pour heat onto a chip until it becomes intelligent. The more sober idea is this: some physical systems naturally fluctuate, relax, and settle into patterns that correspond to probability distributions. If the computational problem you care about is itself about probabilities, then maybe you can let the physics do more of the work.

Classical digital chips work very hard to suppress ambiguity. A voltage must be cleanly interpreted as 0 or 1. Noise margins exist precisely so random fluctuations do not leak into the logic. Probabilistic hardware takes the opposite posture. It says: for certain tasks, especially sampling and uncertainty, that randomness is not contamination. It is raw material.

The cleanest entry point is the p-bit, or probabilistic bit. The literature describes it as a bit that flips between 0 and 1 with a controllable probability. Not a quantum state. Not a mysterious superposition marketing term. Think of a weighted coin that keeps tossing itself. Change its bias and it spends more time as heads than tails. Couple many such coins together and the network starts to represent a whole distribution rather than a single hard-coded answer.

Not quantum, but also not ordinary digital: p-bits live in the awkward, interesting middle ground. They are classical devices, often at room temperature, but their whole value proposition is that they represent and explore uncertainty natively instead of numerically emulating it one deterministic instruction at a time.

How Do You Physically Build A P-bit?

The canonical hardware story in the p-bit literature is spintronic. A 2019 review by Çamsarı, Sutton, and Datta argues that low-barrier magnets are a natural physical representation of p-bits. In that picture, a stochastic magnetic tunnel junction, or sMTJ, fluctuates spontaneously because its magnetic free layer is intentionally made unstable enough to keep wandering. Attach standard transistor logic to that fluctuating element and you get a noisy bit whose mean value can be biased up or down by an input signal.

But that is not the only route. Early hardware demonstrations also emulated p-bits with microcontrollers, while newer work uses CMOS plus stochastic nanomagnets, oscillator-based p-bits, or other tunable noisy circuits. The common recipe stays the same even when the substrate changes: you need one element that naturally fluctuates, one mechanism that biases its average behavior, and a coupling scheme that lets many such units influence one another.

The brain comparison is useful here if handled carefully. A neuron is not literally a p-bit. It does not emit a perfectly memoryless random telegraph signal, and synapses are richer than a simple scalar coupling matrix. But as an analogy it is good: neurons integrate inputs, sit near thresholds, spike stochastically, and recurrent circuits can settle into attractors or clean up noisy evidence. So when people say "in brains this is neural spiking," the careful version is: brains are not p-bit chips, but noisy spiking neurons are the closest biological cousin to the basic computational idea.

Spintronic p-bit
A fluctuating magnetic element, often an sMTJ or related low-barrier nanomagnet, plus transistor circuitry that biases how often it outputs 0 versus 1.
CMOS / oscillator p-bit
A noisy voltage source, oscillator, or pseudo/true-random circuit plus local digital/analog logic that turns the fluctuations into a tunable probabilistic bit.
Brain analogy
Noisy thresholded spikes plus recurrent synaptic couplings. Not literally a p-bit implementation, but conceptually similar in its use of stochastic local dynamics.

This matters because many AI and scientific workloads are secretly sampling problems. Bayesian inference asks you to reason over distributions. Diffusion-style generation repeatedly denoises random states. Monte Carlo methods wander through state spaces. Optimization routines often benefit from controlled stochasticity because it helps them escape brittle local structure. A thermodynamic machine does not have to be good at everything to be economically relevant. It only has to be much better at the subset of workloads that are becoming expensive enough to hurt.

Interactive 3 · P-bit Playground
Outcome mix 1s 50% 0s 50% Blue and red cells keep flipping. Coupling makes neighbors prefer agreement.
direction and strengthneutral
toward 0neutraltoward 1
neighbor influence1.10
how jittery the system is1.00
Mean spin
0.00
Agreement
mixed and restless
Interpretation
The system is exploring many nearby states.

A real thermodynamic computer is not literally this toy. But this is the core intuition: a network of locally coupled random elements can sample rather than merely evaluate.

If that sounds suspiciously like "an Ising machine with better branding," you are not entirely wrong to notice the family resemblance. The important question is not the label. It is whether a given physical implementation can be manufactured, programmed, benchmarked, and integrated cheaply enough that the sampling advantage survives contact with the rest of the system.

IV.

What Could You Actually Compute With P-bits?

Before talking about startups, it is fair to ask a more basic question: what kind of useful computation would a p-bit network even perform? The answer is not "instantly run GPT-7." The more honest answer is: p-bit networks are naturally good at problems where you want a system to settle into a self-consistent low-energy state. That includes toy versions of denoising, associative memory, error correction, optimization, and constraint satisfaction.

A classic mental model is a noisy memory. You store a few patterns in the couplings between bits. Then you present a corrupted clue. If the clue is not too damaged, and the network's dynamics are set up sensibly, the local stochastic updates can pull the state toward the nearest stored pattern. That is already a real computational act: the machine is cleaning up ambiguity by wandering through an energy landscape instead of following a fixed deterministic recipe.

The widget below is exactly that sort of toy. It is not modern machine learning. It is the conceptual bridge you need before Extropic or Normal start talking about denoising, diffusion-like models, or hardware-native sampling.

Interactive 4 · Pattern Cleanup With A P-bit Network
What this is trying to show: the couplings store a few simple patterns. You give the network a noisy clue. The p-bits keep flipping locally, and the network tries to settle into the nearest remembered pattern. This is the style of computation people mean when they talk about denoising, associative memory, or energy minimization in stochastic hardware.

Stored pattern

Noisy clue

Current network state

1-bit 0-bit differs from target
how corrupted the starting hint is22%
higher means more wandering0.90
Clue corruption
22% of bits flipped
Current match
76% match to target
Nearest attractor
Pattern X
Interpretation
The network is cleaning up the noisy clue by drifting toward a stored pattern.
This is already a genuine computing use case: store structure in local couplings, then use stochastic updates to recover a consistent answer from ambiguous evidence.

This is the missing conceptual step before the startup claims: the hardware is not "doing AI" in the abstract. It is performing local stochastic relaxation that can be useful for denoising, recall, optimization, and related probabilistic workloads.

Scale this idea up and you can at least see why the AI connection exists. Diffusion models are denoisers. Bayesian inference is distributional. Many optimization problems want systems to explore, then settle. None of that proves a startup has solved the problem. But it does explain why people are chasing hardware whose native behavior looks less like rigid logic and more like guided probabilistic relaxation.

A useful biological comparison: brains do not run at room temperature; they run warm, wet, and noisy at roughly body temperature, around 37°C, without cryogenic cooling or data-center-scale thermal infrastructure. They get away with that because they rely on extreme locality, sparse spikes, analog dynamics, and a lot of computation that looks more like noisy relaxation than precise clocked digital logic. That does not prove thermodynamic-computing startups are right. But it does show the basic design instinct is not absurd.
V.

What Extropic Is Building

As of October 29, 2025, Extropic publicly laid out the cleanest startup version of the thermodynamic-computing thesis. The company describes its hardware as thermodynamic sampling units, or TSUs. Notice the naming move. Not processing units. Sampling units. Extropic's argument is that if generative AI ultimately needs samples from complicated probability distributions, then it is wasteful to route everything through ordinary deterministic processing first.

Its public materials say TSUs keep memory and compute distributed, and allow communication mostly between physically local circuits. That matters because the company explicitly identifies communication, not arithmetic alone, as the real energy sink in standard architectures. In its telling, TSUs do not merely run existing GPU-style models a little faster. They change the primitive from programmable deterministic compute to programmable probabilistic sampling.

Extropic also introduced a software layer, THRML, and a model family it calls Denoising Thermodynamic Models, or DTMs. The rhetorical intent is obvious and smart: show that the hardware is paired with an algorithmic stack rather than arriving as an isolated lab toy. DTMs are framed as diffusion-inspired generative models that use TSUs for the denoising process. That is a better story than "please rewrite AI from scratch for our exotic chip." It is still, importantly, a rewrite of meaningful parts of the stack.

Extropic's Public Stack, As Described In Its October 2025 Materials

THRML

Open-source Python library for simulating thermodynamic hardware and developing algorithms before broad hardware availability.

DTM

Denoising Thermodynamic Models, presented as a diffusion-like generative architecture built for TSUs.

XTR-0

Experimental platform combining a traditional processor path with Extropic chips for development and testing.

Z1

Public roadmap chip for early access in 2026, described as production-scale and CMOS manufacturable.

public roadmap prototype platform simulation efficiency claim new model stack required

The hardware roadmap on Extropic's site currently lists X0 as a Q1 2025 silicon prototype, XTR-0 as a Q3 2025 experimental platform, and Z1 for early access in 2026. The Z1 page describes hundreds of thousands of probabilistic circuits per chip and millions per card. That is meaningful because it tells you the company is thinking beyond toy boards and toward something card-shaped and rack-adjacent.

The important caveat: Extropic's most eye-catching number, that running DTMs on TSUs could be up to 10,000× more energy efficient, comes from simulations on small benchmarks described in its materials and paper. That is interesting. It is not the same thing as a deployed datacenter result.

The charitable interpretation is that Extropic has a coherent thesis: sampling is native, locality matters, and probabilistic AI may deserve hardware built for it rather than inherited from graphics. The skeptical interpretation is equally obvious: the company must prove that a custom probabilistic stack can beat incredibly optimized GPU software once all the unglamorous system costs show up. Both interpretations can be true at once.

VI.

What Normal Computing Is Building

Normal Computing takes a related but stylistically different route. Its language is less about a sampling unit stack and more about physics-based ASICs. The company says the infrastructure behind today's AI was never designed for current scale or energy demands, and its research pages tie the program explicitly to probabilistic reasoning, diffusion-like models, and stochastic differential equation emulation.

There are two public milestones worth separating. First, on November 9, 2023, the company published a demonstration of thermodynamic matrix inversion using coupled electrical oscillators on a real board. That was not a production chip, but it was a concrete proof that physical equilibration could be used for a nontrivial numerical primitive. Second, on August 12, 2025, Normal announced tape-out of CN101, which it described as the world's first thermodynamic computing chip and as a validation step for its Carnot architecture.

Normal's framing differs slightly from Extropic's. Extropic emphasizes arrays of p-bits and energy-based generative models. Normal emphasizes fluctuations, dissipation, stochasticity, and hardware built for diffusion-like models and other probabilistic workloads. Underneath, though, the family resemblance is strong: both are trying to exploit local stochastic physics to do useful AI work more efficiently than a conventional deterministic stack.

Normal's Public Thermodynamic Roadmap

2023 PCB demo

Coupled-oscillator board used for thermodynamic matrix inversion experiments.

CN101

Taped out in 2025 as first silicon validation step for the Carnot architecture.

CN201

Publicly framed for 2026 with higher-resolution diffusion workloads.

CN301

Late 2027 / early 2028 roadmap aimed at advanced video diffusion scaling.

real board experiment taped-out chip up to 1000× on targeted workloads diffusion-focused roadmap

Again, the number that grabs attention needs careful handling. Normal's CN101 announcement says the architecture could achieve up to 1000× energy-consumption efficiency on targeted AI and scientific workloads. The phrasing matters: targeted workloads, not all workloads; company announcement, not neutral production benchmark.

The most useful way to read Normal today is: this is no longer just an idea on a whiteboard. There was a coupled-oscillator demo, then a taped-out chip, and a roadmap that explicitly targets diffusion-like AI. That is substantial progress. It is still very far from proving broad datacenter replacement.

If you put Extropic and Normal side by side, the high-level pattern becomes visible. Both are betting that uncertainty is not a nuisance to be emulated on rigid hardware, but a computational primitive to be harnessed directly. Both also face the same brutal test: can that physical elegance survive the messiness of software stacks, I/O, manufacturing, economics, and customer adoption?

VII.

The Broader War on AI Power

Thermodynamic computing is the flashy new entrant because it proposes a different primitive. But it is not the only serious attempt to reduce AI's power bill. The more general story is that the industry is attacking the same bottleneck from several angles at once: reduce data movement, shorten communication distance, lower numerical precision, push more work into memory, or use a different physical carrier entirely.

Analog in-memory computing is the most direct rebellion against the memory wall. IBM describes it succinctly: if traditional architectures burn time and energy every time they move weights to compute on them, then blend memory and compute until that movement shrinks. EnCharge frames its own technology the same way, emphasizing robust analog in-memory computing that reduces data movement. Mythic's pitch is similar again, but aimed especially at edge devices where power, cooling, and size are brutally constrained.

Photonics attacks a different slice of the problem. Lightmatter's public materials emphasize interconnect and bandwidth: if electrical signaling and chip-to-chip movement are becoming dominant costs, send information with light where that physics helps. Their recent public work also argues that lower-precision AI workloads make photonic compute more plausible than earlier generations of photonic hype did.

These are not mutually exclusive worlds. In fact, the most realistic future probably looks like a strange coalition: digital control logic, memory-centric compute for weight-heavy paths, photonic fabrics for bandwidth, and perhaps thermodynamic samplers where uncertainty and local stochastic relaxation are the natural fit.

Interactive 5 · Startup Landscape Map
native sampling

Extropic

TSUs, THRML, and diffusion-like thermodynamic models.

native sampling

Normal Computing

Physics-based ASICs for diffusion-like and stochastic workloads.

move less data

EnCharge AI

Analog in-memory computing with an emphasis on efficiency and programmability.

move less data

Mythic

Analog compute-in-memory for low-power inference, especially at the edge.

research / memory

IBM Research

Analog in-memory work for transformer and MoE bottlenecks.

light-based

Lightmatter

Photonic compute and photonic interconnect for AI bandwidth problems.

edge-first

MemryX

Dataflow and at-memory architecture for efficient edge AI deployment.

Extropic

Attacks probabilistic AI most directly. The bet is that sampling itself should be a hardware primitive, not just the last step after a deterministic pipeline.

simulation-heavy claim set prototype platform new software stack

Different companies are swinging at different pain points. Thermodynamic computing is the most radical proposal; in-memory and photonics are, today, the more legible cousins.

The right mental model is not "who wins?" It is "which part of the energy bill is each approach trying to delete?" Thermodynamic chips want the sampling bill lower. In-memory chips want the weight-shuttling bill lower. Photonics wants the bandwidth bill lower. Edge accelerators want to avoid pushing everything into giant centralized cooling plants in the first place.

VIII.

Can We Really Get AI Without Giant Cooling Bills?

Here is the honest answer: not literally, no. If by "without significant energy or cooling costs" you mean a future where advanced AI somehow stops obeying physics, that future is not on the menu. A sufficiently valuable model running at sufficiently large scale will still draw serious power and will still need serious thermal management.

But the softer, engineering answer is much more encouraging. You can absolutely imagine a world where the joules per useful token, image, simulation, or control action fall dramatically. If that happens, the cooling problem also shrinks because there is less waste heat to remove per unit of useful work. The real win is not zero power. It is a much better ratio of intelligence to infrastructure.

The likely ingredients are boring in aggregate and radical in combination: lower precision, more sparsity, smarter routing, more work done inside or near memory, hardware tuned to dominant subroutines, more on-device inference when latency allows, and possibly stochastic hardware where the workload is naturally probabilistic anyway. No single ingredient is enough. Together they can bend the curve.

Interactive 6 · Where The Savings Come From
Relative energy index
52 / 100
Relative cooling burden
59 / 100
Interpretation
Substantial improvement, but not a miracle.
Best suited to
served inference before frontier training

This is a systems cartoon, not a forecast model. The point is that the believable future is additive: lots of medium wins stacked together, not one messianic chip abolishing power draw.

Training and inference do not have the same near-term future

Specialized hardware usually has an easier first life in inference than in frontier-scale training. Inference workloads repeat, costs are persistent, and customers tolerate more specialization if the cost per served result collapses. Training is harsher. It requires mature software, robust numerics, huge distributed coordination, reproducibility, and a developer ecosystem that does not break every time the model changes shape.

Frontier training
Hardest target for thermodynamic hardware in the near term. Dense linear algebra, optimizer stability, and cluster software remain dominant.
Served inference
Most plausible place for heterogeneous racks and special-purpose accelerators to carve out serious savings.
Edge inference
Power and cooling constraints are so severe that even modest efficiency gains become economically meaningful very quickly.

So yes: you can plausibly get much cheaper and cooler AI than today's trajectory suggests. No: you should not expect the energy problem to disappear. That distinction matters, because the most dangerous hype in this area usually begins by erasing it.

IX.

What Has To Be True For This To Matter

Interesting physics is cheap. Important computing platforms are expensive. There is a long, brutal funnel between the two. Thermodynamic computing becomes economically meaningful only if it survives every stage of that funnel without losing the very advantage that made it exciting in the first place.

Start with the algorithmic layer. The hardware must map to workloads that people genuinely want to run, not just to elegant toy problems. Then the accuracy story has to hold up: if energy savings buy you unusable outputs, nobody cares. Then the software story arrives with a baseball bat. If model developers cannot target the hardware without inventing a new religion, adoption slows to a crawl.

Then come the unromantic layers. How much host logic is needed? How expensive is calibration? How ugly is the compiler? How much of the promised efficiency vanishes once you include I/O, memory staging, packaging, monitoring, and orchestration? Does the foundry path look normal enough that customers can believe in supply? Do benchmark wins persist on economically relevant workloads rather than hand-picked demos? These are not gotchas. They are the actual job.

physics demo chip demo benchmark win economic adoption Most deep-tech hardware ideas die by leaking away their advantage somewhere in this funnel.
What to distrust
Huge "up to X times" numbers detached from system boundaries. Narrow benchmarks can be real and still fail to generalize.
What to watch
Clear workload mapping, software tooling, measured silicon results, and evidence that host overhead does not eat the gain.
What would be impressive
A deployable system that beats incumbent inference costs on a commercially valuable probabilistic workload while preserving accuracy and usability.

If you keep that filter in mind, the space becomes easier to reason about. You no longer have to choose between breathless belief and lazy cynicism. You can simply ask: where, exactly, is the claimed efficiency coming from, and what would have to remain true after packaging, software, and deployment for that advantage to survive?

X.

The Most Likely Future: Weird, Heterogeneous, and Less Wasteful

The most plausible future is not a thermodynamic-computing monoculture. It is a rack full of specialists. CPUs still orchestrate. GPUs or digital tensor cores still dominate dense deterministic math. In-memory blocks handle weight-heavy inference paths. Photonic links relieve the bandwidth pain between chips and packages. And if thermodynamic hardware proves itself, it gets inserted where sampling, uncertainty, and local stochastic relaxation genuinely outperform the digital alternative.

This is a less cinematic future than "one weird chip kills Nvidia." It is also more believable. Hardware history usually advances by annexation, not revolution. New primitives enter the stack where they are obviously better, then expand outward if they earn the right.

CPU

Control flow, scheduling, orchestration, and all the glue logic nobody escapes.

GPU / digital tensor

Still excellent for dense linear algebra and mainstream training paths.

In-memory tiles

Good place to bury weight movement when inference becomes memory-bound.

Photonic fabric

Best case: less energy lost on interconnect and more bandwidth where clusters need it.

Thermodynamic sampler

If it works, it earns its place on diffusion-like and probabilistic subroutines.

The deepest lesson here is philosophical as much as technical. We have spent years treating AI as if every useful computation should be beaten into the shape of matrix multiply. That was a tremendously productive simplification. It may also be the simplification that starts failing first under energy pressure. Thermodynamic computing is one attempt to ask what comes after that simplification.

So, can AI stop being a space heater? Not entirely. But it can stop being needlessly space-heater-shaped. And that may turn out to matter more than any single miraculous chip.

Further Reading

These links reflect public materials available as of June 19, 2026. Where companies make aggressive efficiency claims, read them as company claims unless and until independent system-level benchmarks say otherwise.

IEA: Energy demand from AI

Best macro backdrop on data-centre electricity growth and why AI is now an energy-system issue.

AIP: Probabilistic computing with p-bits

Good conceptual anchor for probabilistic bits and why classical stochastic hardware is interesting.

Nature Communications: on-chip p-bit core with stochastic MTJs and MoS2

Concrete experimental example of a p-bit built from a fluctuating magnetic device plus transistor circuitry on the same chip.

Extropic: From Zero to One

Public overview of TSUs, DTMs, THRML, and Extropic's own framing of the energy problem.

Extropic hardware roadmap

Current public roadmap for X0, XTR-0, and Z1.

Normal Computing: CN101 announcement

Public statement of its tape-out milestone, targeted-workload claims, and roadmap.

Normal: thermodynamic matrix inversion demo

Useful for separating board-level experiments from later silicon claims.

IBM Research: analog in-memory computing

Clear explanation of why moving model weights is such an expensive part of AI inference.

Lightmatter: A New Kind of Computer

Photonic-computing perspective on bandwidth, precision, and post-transistor AI hardware.

EnCharge AI technology

Official framing of analog in-memory computing as an attack on data movement and efficiency loss.

Mythic: Edge AI and LLMs

Useful for the edge-first angle: why low-power inference matters even more when cooling and form factor are constrained.