May 30, 2024

thermox: The First Thermodynamic Computing Simulator

Table of contents
Authors:
Sam Duffield and Kaelan Donatella
5/30/2024

Conventional Computing is Hindering AI Progress

Energy consumption has become the primary bottleneck for AI, with growing concerns around the overall cost, waste heat, and emissions associated with AI infrastructure. This highlights a deep problem due the mismatch between underlying digital hardware and the computations required for AI. Moreover, there is a clear need to democratize AI research, which has become inaccessible to many due to massive energy consumption, cost, and compute requirements. These issues are especially pronounced when one desires AI with high-level reasoning, where probabilistic AI plays a key role but is highly computationally expensive. Overall, this provides motivation for a novel computational paradigm to make AI faster, more capable, and energy-efficient.

Democratizing Thermodynamic Computing

At Normal Computing, our team has been pioneering physics-based hardware utilizing thermodynamics (i.e., a thermodynamic computer) to address the above issues. To accelerate the development of efficient AI with reasoning capabilities, we aim to grow the community around thermodynamic computing. To this end, we have made many of our hardware designs and results publicly available in our publications and github repositories. Advancing thermodynamic computing out of the lab and into large-scale devices will be accelerated by coordination between public, private, and academic entities. This is why we have made publicly available the results necessary to understand how thermodynamic computing devices work, and the knowledge necessary to build them. We are now taking another step towards democratization by open-sourcing a cutting-edge tool developed at Normal: thermox, a fast and exact thermodynamic computing simulator.

At a fundamental level, the thermodynamic computer we are building – coined the Stochastic Processing Unit (SPU) – is a physical device that evolves according to a stochastic differential equation (SDE).

Possibly the simplest SDE and the focus of our first prototype is the Ornstein-Uhlenbeck (OU) process, which takes the form:

d x = A ( x b ) d t + N ( 0 , D d t ) ,

where π‘₯ and 𝑏 are 𝑑-dimensional vectors, 𝐴 and 𝐷 are 𝑑×𝑑 matrices1, and 𝑁(0,𝐷) denotes a normal distribution with covariance 𝐷.

Accelerating Linear Algebra with OU Processes

As we describe in our foundational paper, one may perform computations by building a device that simulates that OU process. One may send in the problem inputs to the SPU, wait for some time, and measure the state of the SPU to get a solution to the problem at hand. One reason why this is exciting is that, for a scaled-up system, we can get a speedup over digital computers on a range of linear algebra primitives. Let us take solving a linear system as an example. We wish to solve:

A x = b ,

that is, find the π‘₯βˆ— that satisfies this equation. By sending in 𝐴 and 𝑏 to the device, after some relaxation time, the average value of π‘₯ will be π‘₯βˆ—, up to some error. It turns out that with this method, we obtain an asymptotic speedup over digital methods, with a runtime that is linear in 𝑑!

Thermodynamic linear system solving is part of a broader range of thermodyamic linear algebra primitives including full inverse 𝐴 -1 and matrix exponentials.

thermox: Fast and Exact OU Processes

Studying our SPU at the large-scale (think thousands of dimensions) requires solving SDEs of the form described above. This is computationally expensive, so we really needed to have a fast and efficient tool to simulate OU processes, and for it to work on any machine. So as jax-aficionados, we built thermox.

On a digital computer, one needs to discretize time to simulate an OU process (and this is what is typically done in the community). SDEs are especially sensitive to this, and although some second-order solvers are more robust, it is generally a pain to simulate SDEs.

Let us consider the case that we have an initial point π‘₯0 and want to sample a point from the process π‘₯𝑇 at time 𝑇. The simplest way to do this is to use the Euler-Maruyama method, which is a first-order method that discretizes the SDE as:

x ( t + δ ) = A ( x ( t ) b ) δ + δ w ,

with 𝑀 a random draw from 𝑁(0,𝐷). Here 𝛿 is a stepsize that is required to be small enough to ensure the discretization error is small. The process is repeated until we reach time 𝑇.

The time-complexity of running 𝑛steps steps is 𝑂(𝑑2𝑛steps) because of matrix-vector multiplications, which doesn’t look too bad at first. But remember there will be some discretization error, which can be kept down by having a large number of steps2. For long OU trajectories where we want samples at many times, this can quickly become intractable. As an example, in molecular dynamics simulations, up to billions of time steps are needed 🫠. Most existing libraries, such as diffrax would typically run OU processes in a similar way, with better solvers but which still suffer from discretization error. Thankfully, it turns out that we don’t need to discretize time if we want to simulate multivariate OU processes.

With thermox, a trajectory is run very differently. For a multivariate OU process, there are analytical expressions for the mean and covariance matrix at all times. The mean reads:

μ ( t ) = x ( t ) = x 0 exp ( A t ) + A 1 b ,

and the covariance:

Σ ( t ) = [ x ( t ) x ( t ) ] [ x ( t ) x ( t ) ] , = 0 t exp [ A ( t t ) ] D D exp [ A ( t t ) ] d t ,

assuming Ξ£(0)=0. By diagonalizing 𝐴 and 𝐷, it turns out we can construct these matrices (with a 𝑂(𝑑3) preprocessing step), and simply sample from 𝑁(πœ‡(𝑑),Ξ£(𝑑)) for any time 𝑑 to obtain a sample. This is convenient as it avoids discretization errors altogether and eliminates the dependence on the number (and sparsity) of time steps from the time complexity. The total thermox complexity is 𝑂(𝑑3+𝑁𝑑2) to collect 𝑁 samples, which can provide a huge improvement over the 𝑂(𝑁𝑑2𝑛steps) complexity of discretized methods.3

Comparison to diffrax

diffrax is an awesome library for discretizing generic SDEs, but as shown above we can simulate OU processes exactly. Let’s show that numerically! Here we compare thermox and diffrax to simulate a multivariate OU process. Details of the code can be found here. Here are the results we get:

And there you see it. For 𝑑=100 and a large number of time steps, you get up to 800Γ— speedup and the simulation is exact (no discretization error).

Quick Example

Let’s simulate a 5-dimensional OU process with thermox:

1import thermox
2import jax
3import jax.numpy as jnp
4
5# Set random seed
6key = jax.random.PRNGKey(0)
7
8# Timeframe
9ts = jnp.arange(0, 1, 0.01)
10
11# System parameters for a 5-dimensional OU process
12A = jnp.array([[2.0, 0.5, 0.0, 0.0, 0.0],
13               [0.5, 2.0, 0.5, 0.0, 0.0],
14               [0.0, 0.5, 2.0, 0.5, 0.0],
15               [0.0, 0.0, 0.5, 2.0, 0.5],
16               [0.0, 0.0, 0.0, 0.5, 2.0]])
17
18b, x0 = jnp.zeros(5), jnp.zeros(5) # Zero drift displacement vector and initial state
19
20# Diffusion matrix with correlations between x_1 and x_2
21D = jnp.array([[2, 1, 0, 0, 0],
22               [1, 2, 0, 0, 0],
23               [0, 0, 2, 0, 0],
24               [0, 0, 0, 2, 0],
25               [0, 0, 0, 0, 2]])
26
27# Collect samples
28samples = thermox.sample(key, ts, x0, A, b, D)

‍

Ok let’s plot those OU samples:

Code:

1import matplotlib.pyplot as plt
2plt.figure(figsize=(12, 5))
3plt.plot(ts, samples, label=[f'Dimension {i+1}' for i in range(5)])
4plt.xlabel('Time', fontsize=16)
5plt.ylabel('Value', fontsize=16)
6plt.title('Trajectories of 5-Dimensional OU Process', fontsize=16)
7plt.legend(fontsize=16)
8plt.show()

‍

How pretty!

A First Thermodynamic Computing Simulator

As mentioned, thermox is a great tool to run benchmarks for thermodynamic computers. With thermox you can run such thermodynamic simulations in a single line of code (similarly to the widely-used scipy.linalg.solve):

1x_s = thermox.linalg.solve(A, b, num_samples=1000)

‍

Here, 1000 samples are collected from an OU process and then averaged to obtain an approximate solution to the linear system 𝐴π‘₯=𝑏, with a preset sampling interval. In fact, we believe that any thermodynamic advantage experiment would have to beat thermox, as it provides a baseline for digital computers simulating OU process. We can therefore view thermox as the first open-source thermodynamic computing simulator. This is analogous to how quantum computing simulators (e.g., IBM Qiskit or tensor-network methods) provide a classical baseline for quantum computers to beat. For further details on this, please take a look at this notebook. We hope to see the community also run its own thermodynamic experiments, propose new thermodynamic experiments and run custom applications with thermox!

posteriors and thermox

We recently released posteriors, a Python library for uncertainty quantification which features a few methods that can leverage thermox. For example, consider that you wish to apply a Laplace approximation to a desired application, and sample from it. You can do this with thermox to get an idea of how using a thermodynamic device to collect samples would influence your end result. In the long-term, our vision is to use a real thermodynamic device in conjunction with posteriors for uncertainty quantification in machine learning.

What’s next?

thermox is an open source project, we welcome contributions, and particularly further research into thermodynamic computation and its applications in machine learning and other topics, such as finance and evolutionary biology! We hope that thermox can accelerate research and our journey to practical thermodynamic computation. Come join the thermox fun on GitHub!

‍

  1. With the matrix 𝐷 being symmetric positive-definite.
  2. And therefore small stepsize 𝛿.
  3. Of course, thermodynamic devices will ultimately be faster than thermox. More specifically, for solving a linear system, we expect a runtime scaling as 𝑂(π‘‘πœ…2), with πœ… the condition number of 𝐴, as shown here.