Skip to main content
Pre-release

This release is a pre-release and may not be stable for production use.

Stim

Stim is a fast simulator for quantum stabilizer circuits.

API references are available on the stim github wiki: https://github.com/quantumlib/stim/wiki

Stim can be installed into a python 3 environment using pip:

pip install stim

Once stim is installed, you can import stim and use it. There are three supported use cases:

  1. Interactive simulation with stim.TableauSimulator.
  2. High speed sampling with samplers compiled from stim.Circuit.
  3. Independent exploration using stim.Tableau and stim.PauliString.

Interactive Simulation

Use stim.TableauSimulator to simulate operations one by one while inspecting the results:

import stim

s = stim.TableauSimulator()

# Create a GHZ state.
s.h(0)
s.cnot(0, 1)
s.cnot(0, 2)

# Look at the simulator state re-inverted to be forwards:
t = s.current_inverse_tableau()
print(t**-1)
# prints:
# +-xz-xz-xz-
# | ++ ++ ++
# | ZX _Z _Z
# | _X XZ __
# | _X __ XZ

# Measure the GHZ state.
print(s.measure_many(0, 1, 2))
# prints one of:
# [True, True, True]
# or:
# [False, False, False]

High Speed Sampling

By creating a stim.Circuit and compiling it into a sampler, samples can be generated very quickly:

import stim

# Create a circuit that measures a large GHZ state.
c = stim.Circuit()
c.append("H", [0])
for k in range(1, 30):
    c.append("CNOT", [0, k])
c.append("M", range(30))

# Compile the circuit into a high performance sampler.
sampler = c.compile_sampler()

# Collect a batch of samples.
# Note: the ideal batch size, in terms of speed per sample, is roughly 1024.
# Smaller batches are slower because they are not sufficiently vectorized.
# Bigger batches are slower because they use more memory.
batch = sampler.sample(1024)
print(type(batch))  # numpy.ndarray
print(batch.dtype)  # numpy.uint8
print(batch.shape)  # (1024, 30)
print(batch)
# Prints something like:
# [[1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1]
#  [0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0]
#  [1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1]
#  ...
#  [1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1]
#  [1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1]
#  [0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0]
#  [1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1]]

This also works on circuits that include noise:

import stim
import numpy as np

c = stim.Circuit("""
    X_ERROR(0.1) 0
    Y_ERROR(0.2) 1
    Z_ERROR(0.3) 2
    DEPOLARIZE1(0.4) 3
    DEPOLARIZE2(0.5) 4 5
    M 0 1 2 3 4 5
""")
batch = c.compile_sampler().sample(2**20)
print(np.mean(batch, axis=0).round(3))
# Prints something like:
# [0.1   0.2   0.    0.267 0.267 0.266]

You can also sample annotated detection events using stim.Circuit.compile_detector_sampler.

For a list of gates that can appear in a stim.Circuit, see the latest readme on github.

Independent Exploration

Stim provides data types stim.PauliString and stim.Tableau, which support a variety of fast operations.

import stim

xx = stim.PauliString("XX")
yy = stim.PauliString("YY")
assert xx * yy == -stim.PauliString("ZZ")

s = stim.Tableau.from_named_gate("S")
print(repr(s))
# prints:
# stim.Tableau.from_conjugated_generators(
#     xs=[
#         stim.PauliString("+Y"),
#     ],
#     zs=[
#         stim.PauliString("+Z"),
#     ],
# )

s_dag = stim.Tableau.from_named_gate("S_DAG")
assert s**-1 == s_dag
assert s**1000000003 == s_dag

cnot = stim.Tableau.from_named_gate("CNOT")
cz = stim.Tableau.from_named_gate("CZ")
h = stim.Tableau.from_named_gate("H")
t = stim.Tableau(5)
t.append(cnot, [1, 4])
t.append(h, [4])
t.append(cz, [1, 4])
t.prepend(h, [4])
assert t == stim.Tableau(5)

Release files for stim 1.15.dev1742879845

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for stim 1.15.dev1742879845
File Size Uploaded
stim-1.15.dev1742879845.tar.gz 842.2 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for stim 1.15.dev1742879845
File
stim-1.15.dev1742879845-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
stim-1.15.dev1742879845-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ x86-64 Details
stim-1.15.dev1742879845-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
stim-1.15.dev1742879845-cp312-cp312-macosx_10_9_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.9+ x86-64 Details
stim-1.15.dev1742879845-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
stim-1.15.dev1742879845-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-64 Details
stim-1.15.dev1742879845-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
stim-1.15.dev1742879845-cp311-cp311-macosx_10_9_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.9+ x86-64 Details
stim-1.15.dev1742879845-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
stim-1.15.dev1742879845-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-64 Details
stim-1.15.dev1742879845-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
stim-1.15.dev1742879845-cp310-cp310-macosx_10_9_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.9+ x86-64 Details
stim-1.15.dev1742879845-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
stim-1.15.dev1742879845-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ x86-64 Details
stim-1.15.dev1742879845-cp39-cp39-macosx_11_0_arm64.whl CPython 3.9 CPython 3.9 macOS 11.0+ ARM64 Details
stim-1.15.dev1742879845-cp39-cp39-macosx_10_9_x86_64.whl CPython 3.9 CPython 3.9 macOS 10.9+ x86-64 Details
stim-1.15.dev1742879845-cp38-cp38-win_amd64.whl CPython 3.8 CPython 3.8 Windows x86-64 Details
stim-1.15.dev1742879845-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ x86-64 Details
stim-1.15.dev1742879845-cp38-cp38-macosx_11_0_arm64.whl CPython 3.8 CPython 3.8 macOS 11.0+ ARM64 Details
stim-1.15.dev1742879845-cp38-cp38-macosx_10_9_x86_64.whl CPython 3.8 CPython 3.8 macOS 10.9+ x86-64 Details
stim-1.15.dev1742879845-cp37-cp37m-win_amd64.whl CPython 3.7 CPython 3.7 pymalloc Windows x86-64 Details
stim-1.15.dev1742879845-cp37-cp37m-win32.whl CPython 3.7 CPython 3.7 pymalloc Windows x86-32 Details
stim-1.15.dev1742879845-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-64 Details
stim-1.15.dev1742879845-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-32 Details
stim-1.15.dev1742879845-cp37-cp37m-macosx_10_9_x86_64.whl CPython 3.7 CPython 3.7 pymalloc macOS 10.9+ x86-64 Details
stim-1.15.dev1742879845-cp36-cp36m-win_amd64.whl CPython 3.6 CPython 3.6 pymalloc Windows x86-64 Details
stim-1.15.dev1742879845-cp36-cp36m-win32.whl CPython 3.6 CPython 3.6 pymalloc Windows x86-32 Details
stim-1.15.dev1742879845-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ x86-64 Details
stim-1.15.dev1742879845-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ x86-32 Details
stim-1.15.dev1742879845-cp36-cp36m-macosx_10_9_x86_64.whl CPython 3.6 CPython 3.6 pymalloc macOS 10.9+ x86-64 Details

Total release size: 98.2 MB

Release files / stim-1.15.dev1742879845.tar.gz

Download URL stim-1.15.dev1742879845.tar.gz
Size 842.2 kB
Tags Source
SHA-256 checksum
How to use checksums
a28679c58e834a72f1d79a7e5f215e4328bb5d7264667563a65ae7afc222d3aa
BLAKE2b-256 checksum
How to use checksums
5f5d8ed29b4c9c45fc800807501e25b988dc3f152970e84cf4cf7a7ad2eaabe3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.9

Release files / stim-1.15.dev1742879845-cp312-cp312-win_amd64.whl

Download URL stim-1.15.dev1742879845-cp312-cp312-win_amd64.whl
Size 2.6 MB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
f000bd56c2c8d34c96256683bda60a336a7401d781141af184a7f5e5e4304fd6
BLAKE2b-256 checksum
How to use checksums
1ad0260088d0b224fa678f06e45250d4fac5e9c8d5b3365f5287d361385a25df
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.9

Release files / stim-1.15.dev1742879845-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL stim-1.15.dev1742879845-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 4.9 MB
Tags CPython 3.12 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
517fab65b674748854abe0da0ed9599ff8bcbec1d760da1705652d05ab27c2f9
BLAKE2b-256 checksum
How to use checksums
eb91703af3f57538450b6a7f12bab8f3dd3c2387504b4686970636ee297af64a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.9

Release files / stim-1.15.dev1742879845-cp312-cp312-macosx_11_0_arm64.whl

Download URL stim-1.15.dev1742879845-cp312-cp312-macosx_11_0_arm64.whl
Size 1.8 MB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
c6a2e493d9b01660a8fff9b5bf6372df842a8a455fef959d17572def1900319b
BLAKE2b-256 checksum
How to use checksums
9791a149ef2437b77c751ddfaf17307eb42d08450231b46e8fec858672798c5a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.9

Release files / stim-1.15.dev1742879845-cp312-cp312-macosx_10_9_x86_64.whl

Download URL stim-1.15.dev1742879845-cp312-cp312-macosx_10_9_x86_64.whl
Size 2.0 MB
Tags CPython 3.12 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
daf21a364da9defcda43f32de77d9ff20c60453c096e232332c0457072d4b353
BLAKE2b-256 checksum
How to use checksums
636afd42560eba300d7d7d07a231618512f14560020380992f68f5a4762f4858
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.9

Release files / stim-1.15.dev1742879845-cp311-cp311-win_amd64.whl

Download URL stim-1.15.dev1742879845-cp311-cp311-win_amd64.whl
Size 2.6 MB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
08f64f913f7623b355c6cc0d0c584f15d34cd8ee032980f08ab50700e10d03dc
BLAKE2b-256 checksum
How to use checksums
654f7aa9e8b5f6537b65edb5eaaa629430eb33901e659fb7b8d0bc0f71bf9b53
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.9

Release files / stim-1.15.dev1742879845-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL stim-1.15.dev1742879845-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 4.9 MB
Tags CPython 3.11 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
0ea9229e7911a67418860ff71c430f388c00197353ea39212c537127ed321a08
BLAKE2b-256 checksum
How to use checksums
6e8cd60c01a495aaad466ff2bd081b261faafac2ba41646698d10d5bac0b07ff
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.9

Release files / stim-1.15.dev1742879845-cp311-cp311-macosx_11_0_arm64.whl

Download URL stim-1.15.dev1742879845-cp311-cp311-macosx_11_0_arm64.whl
Size 1.8 MB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
5fedd79159dde112c5cdfa082d3fa69c4220c99cc7408cfdff3a15efc8d34ac9
BLAKE2b-256 checksum
How to use checksums
94c1d94c18e96a629ffae51f1dea6861df8f9a5cdd67311c2f33c7ba9a937c46
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.9

Release files / stim-1.15.dev1742879845-cp311-cp311-macosx_10_9_x86_64.whl

Download URL stim-1.15.dev1742879845-cp311-cp311-macosx_10_9_x86_64.whl
Size 1.9 MB
Tags CPython 3.11 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
6931044005a31228f36c866ac7a2be15a9ad308ed82f7c912b42d7b08c26f506
BLAKE2b-256 checksum
How to use checksums
322d5e53387873131db78a50510d18561ba8b0e15b4914308a0d407a962fbbc1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.9

Release files / stim-1.15.dev1742879845-cp310-cp310-win_amd64.whl

Download URL stim-1.15.dev1742879845-cp310-cp310-win_amd64.whl
Size 2.6 MB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
e0a4f4d2ea262dcc01a8ddee8fbce258ce64db314c3bc4c189c84f239d616f42
BLAKE2b-256 checksum
How to use checksums
5edde05fae1a78e55e233f5806898bea73b5050f7aa683b0de8c62d29edd51ba
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.9

Release files / stim-1.15.dev1742879845-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL stim-1.15.dev1742879845-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 4.9 MB
Tags CPython 3.10 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
060db0486c4ed9d5d3f4fe4912aaaee092f07d9d17c45643de09a1cd7402744a
BLAKE2b-256 checksum
How to use checksums
eec49e8e57f9aa7e5679f66987d4def1dde459f3dc53aa600af8f8540b187e2b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.9

Release files / stim-1.15.dev1742879845-cp310-cp310-macosx_11_0_arm64.whl

Download URL stim-1.15.dev1742879845-cp310-cp310-macosx_11_0_arm64.whl
Size 1.8 MB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
e1362fe871147c77d21cf0fbfa43e4a158c54212ec30b146f051fac2ba79c8ce
BLAKE2b-256 checksum
How to use checksums
2530db98b0e0e63a5cf96d6ed41ab3efd432983a9c2950358bd01e5d45bc1744
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.9

Release files / stim-1.15.dev1742879845-cp310-cp310-macosx_10_9_x86_64.whl

Download URL stim-1.15.dev1742879845-cp310-cp310-macosx_10_9_x86_64.whl
Size 1.9 MB
Tags CPython 3.10 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
b57f4ed30738b2c628e40132470620d6e40b44e8a29b2681bc44e99ab519708a
BLAKE2b-256 checksum
How to use checksums
2739a73b6d9e3f9cf4736113a671c1aaeac488e79043636d5a11d06cbad0fdfa
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.9

Release files / stim-1.15.dev1742879845-cp39-cp39-win_amd64.whl

Download URL stim-1.15.dev1742879845-cp39-cp39-win_amd64.whl
Size 2.7 MB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
cb0890631233c49e95bacc876a93d129db60a48d913899bd254cb40f737423c5
BLAKE2b-256 checksum
How to use checksums
4da3c6e2c8eb30cb35b6702d4b56c2ad2dd5c476cbef326a4c25992153db9d26
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.9

Release files / stim-1.15.dev1742879845-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL stim-1.15.dev1742879845-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 4.9 MB
Tags CPython 3.9 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
2b22d4c80fea92d4d3989be0a17288af722fab0fb3685d45ddb5b3cca217e422
BLAKE2b-256 checksum
How to use checksums
40eaa03a09f3c0312f1c42b52529dec426b992f2b76ba3789505bc0155cbe0c8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.9

Release files / stim-1.15.dev1742879845-cp39-cp39-macosx_11_0_arm64.whl

Download URL stim-1.15.dev1742879845-cp39-cp39-macosx_11_0_arm64.whl
Size 1.8 MB
Tags CPython 3.9 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
ce3ede648ba251bbbd7f9c89c710c669e59d15c5a26bd6920b0a4530f34ddc70
BLAKE2b-256 checksum
How to use checksums
2d859d53b7e49fb327eb6842e7521e8d64b0da060fdb408704882f1a97473d49
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.9

Release files / stim-1.15.dev1742879845-cp39-cp39-macosx_10_9_x86_64.whl

Download URL stim-1.15.dev1742879845-cp39-cp39-macosx_10_9_x86_64.whl
Size 1.9 MB
Tags CPython 3.9 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
b55b2bf6d13b89acb9ce97ac61586821e0dc270156593d47a5d007dc36e2df90
BLAKE2b-256 checksum
How to use checksums
2a680f470f647358ef1b77b324c0b68031081d9fc5d27bc4e5c10f78b2062338
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.9

Release files / stim-1.15.dev1742879845-cp38-cp38-win_amd64.whl

Download URL stim-1.15.dev1742879845-cp38-cp38-win_amd64.whl
Size 2.6 MB
Tags CPython 3.8 Windows x86-64
SHA-256 checksum
How to use checksums
698eab1d4428e468d4ca7ad01091a1d99d6e3666d4d467d4fb64aa1f3e47fa6c
BLAKE2b-256 checksum
How to use checksums
5efb23f0a191c27a63c12672bf65bd4ff8644b27ac6f8d32dbb7bb8a0bba0e5a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.9

Release files / stim-1.15.dev1742879845-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL stim-1.15.dev1742879845-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 4.9 MB
Tags CPython 3.8 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
e718cf81787db64af5e8165608a5f5a73ed7b302e308c7b7c6a443d9b54f8db4
BLAKE2b-256 checksum
How to use checksums
58f953d06a8ae5bc15c34ec7bb55004878b8012c8f43c97e3495a1a16e447441
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.9

Release files / stim-1.15.dev1742879845-cp38-cp38-macosx_11_0_arm64.whl

Download URL stim-1.15.dev1742879845-cp38-cp38-macosx_11_0_arm64.whl
Size 3.5 MB
Tags CPython 3.8 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
28b83c2c734654adf16bfa0c53788a4d646aff3c6079c2c2f452b8f1170cf233
BLAKE2b-256 checksum
How to use checksums
6f67ee05a41722e44345d3599fbe28425edc4e2371f56ac0da38ecdaa1f590a9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.9

Release files / stim-1.15.dev1742879845-cp38-cp38-macosx_10_9_x86_64.whl

Download URL stim-1.15.dev1742879845-cp38-cp38-macosx_10_9_x86_64.whl
Size 3.7 MB
Tags CPython 3.8 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
0f9daf736a518f6c198bfbf45bcb2b9657cf0fcede9efb5183c9a372861cd1f0
BLAKE2b-256 checksum
How to use checksums
ebb6f1d165d83f470562c8b643695ced342d6bbd1e8f1e985013e64d12f14119
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.9

Release files / stim-1.15.dev1742879845-cp37-cp37m-win_amd64.whl

Download URL stim-1.15.dev1742879845-cp37-cp37m-win_amd64.whl
Size 2.6 MB
Tags CPython 3.7 CPython 3.7 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
01ed5594c592e8b33cefe4efb55ef937be25d30740bb33c6fa2e066046d3c1af
BLAKE2b-256 checksum
How to use checksums
1f93b6db695d517f0b8911b2bd79dbb40295def3fa61bada2cdfc8da6bf99370
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.9

Release files / stim-1.15.dev1742879845-cp37-cp37m-win32.whl

Download URL stim-1.15.dev1742879845-cp37-cp37m-win32.whl
Size 2.3 MB
Tags CPython 3.7 CPython 3.7 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
a25adaedc3c9ed703b4e9e309d1fc038850a03469d00f7ada2b0d97399d7466e
BLAKE2b-256 checksum
How to use checksums
9b648e176670b566412aed2875d6c0f3c262d1565cc04c204a5988234976ad8c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.9

Release files / stim-1.15.dev1742879845-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL stim-1.15.dev1742879845-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 5.0 MB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
4cd8e4a72f989162bdf454535ecc7add797ae6dc41cc40c1cf65ce02f9e418bd
BLAKE2b-256 checksum
How to use checksums
8cfa58b3413afa891dac3d46743ffffa40bf45f1f6adc0078409af612e435b96
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.9

Release files / stim-1.15.dev1742879845-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL stim-1.15.dev1742879845-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Size 5.2 MB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
270349b13d423a9a61c7628285c1299be1845cf27ef505aac143d338dd2c2ab1
BLAKE2b-256 checksum
How to use checksums
f7dd84ceb77618acf74c7ee8dd9522486ad65056bd0ef4c0a35620dba7562a02
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.9

Release files / stim-1.15.dev1742879845-cp37-cp37m-macosx_10_9_x86_64.whl

Download URL stim-1.15.dev1742879845-cp37-cp37m-macosx_10_9_x86_64.whl
Size 3.7 MB
Tags CPython 3.7 CPython 3.7 pymalloc macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
2c7d59e60b7c9c49635d7f9a24301536625d7c509a4d89dc1ee447f41c4096f1
BLAKE2b-256 checksum
How to use checksums
b29ed708d4af21308dc74c15528cc2d43491ea9728cb36ad8592780466770bab
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.9

Release files / stim-1.15.dev1742879845-cp36-cp36m-win_amd64.whl

Download URL stim-1.15.dev1742879845-cp36-cp36m-win_amd64.whl
Size 2.6 MB
Tags CPython 3.6 CPython 3.6 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
7cca7bbd2e59ccf8feab58cb5366d73aac0dfea9ec6bbee38ee6de63fa0821f7
BLAKE2b-256 checksum
How to use checksums
c9c066030f547355de5e46bbd595c786beb0ff0a3d9cb0c09d7ae4896892080b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.9

Release files / stim-1.15.dev1742879845-cp36-cp36m-win32.whl

Download URL stim-1.15.dev1742879845-cp36-cp36m-win32.whl
Size 2.3 MB
Tags CPython 3.6 CPython 3.6 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
35d2089b47a1efed1dd211ea0cc89c90bd4ab6c53ff81fc706e762a72e13961a
BLAKE2b-256 checksum
How to use checksums
51c37f93f3fb74a4307c501113799aa32ac3c47f37ee57f67ad33b8a81e1e549
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.9

Release files / stim-1.15.dev1742879845-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL stim-1.15.dev1742879845-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 5.0 MB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
65b235ce5cb7ea922f41fcf961601d30378acf63fd19f73b98c2cece62bd3618
BLAKE2b-256 checksum
How to use checksums
9ae8462883ee4e31c2352c10319d6ba328bf1c9d9a04efc28e84a83a0ea3bf75
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.9

Release files / stim-1.15.dev1742879845-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL stim-1.15.dev1742879845-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Size 5.2 MB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
1a74601e667f2ca16f6b597fb1d7a1ad1fdb32301450658aa46e2decfe097404
BLAKE2b-256 checksum
How to use checksums
df02f3c671db14a55512a11706aa6a0cd096e5f94ec9011369a398a1bebca1ba
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.9

Release files / stim-1.15.dev1742879845-cp36-cp36m-macosx_10_9_x86_64.whl

Download URL stim-1.15.dev1742879845-cp36-cp36m-macosx_10_9_x86_64.whl
Size 3.7 MB
Tags CPython 3.6 CPython 3.6 pymalloc macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
31bce879b70b81dede98ac9ccad067006338a6520e062ea422939a9d1ec7eb6c
BLAKE2b-256 checksum
How to use checksums
7f7306124d7f3c32b21581a6988b7950d4f7d01e7515206b5e177780c718bec9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.9

Release history Release notifications | RSS feed

This release

1.9.0

22 release files

1.8.0

24 release files

1.7.1

24 release files

1.7.0

24 release files

1.6.0

1 release file

1.5.0

1 release file

1.4.0

1 release file

1.3.0

1 release file

1.2.1

1 release file

1.2

1 release file

1.1.0

1 release file

1.0

1 release file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page