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.16.dev1753811344

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.16.dev1753811344
File Size Uploaded
stim-1.16.dev1753811344.tar.gz 854.1 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for stim 1.16.dev1753811344
File
stim-1.16.dev1753811344-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ x86-64 Details
stim-1.16.dev1753811344-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
stim-1.16.dev1753811344-cp313-cp313-macosx_10_13_x86_64.whl CPython 3.13 CPython 3.13 macOS 10.13+ x86-64 Details
stim-1.16.dev1753811344-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
stim-1.16.dev1753811344-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.16.dev1753811344-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
stim-1.16.dev1753811344-cp312-cp312-macosx_10_13_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.13+ x86-64 Details
stim-1.16.dev1753811344-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
stim-1.16.dev1753811344-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.16.dev1753811344-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
stim-1.16.dev1753811344-cp311-cp311-macosx_10_9_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.9+ x86-64 Details
stim-1.16.dev1753811344-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
stim-1.16.dev1753811344-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.16.dev1753811344-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
stim-1.16.dev1753811344-cp310-cp310-macosx_10_9_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.9+ x86-64 Details
stim-1.16.dev1753811344-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
stim-1.16.dev1753811344-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.16.dev1753811344-cp39-cp39-macosx_11_0_arm64.whl CPython 3.9 CPython 3.9 macOS 11.0+ ARM64 Details
stim-1.16.dev1753811344-cp39-cp39-macosx_10_9_x86_64.whl CPython 3.9 CPython 3.9 macOS 10.9+ x86-64 Details
stim-1.16.dev1753811344-cp38-cp38-win_amd64.whl CPython 3.8 CPython 3.8 Windows x86-64 Details
stim-1.16.dev1753811344-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.16.dev1753811344-cp38-cp38-macosx_11_0_arm64.whl CPython 3.8 CPython 3.8 macOS 11.0+ ARM64 Details
stim-1.16.dev1753811344-cp38-cp38-macosx_10_9_x86_64.whl CPython 3.8 CPython 3.8 macOS 10.9+ x86-64 Details
stim-1.16.dev1753811344-cp37-cp37m-win_amd64.whl CPython 3.7 CPython 3.7 pymalloc Windows x86-64 Details
stim-1.16.dev1753811344-cp37-cp37m-win32.whl CPython 3.7 CPython 3.7 pymalloc Windows x86-32 Details
stim-1.16.dev1753811344-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.16.dev1753811344-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.16.dev1753811344-cp37-cp37m-macosx_10_9_x86_64.whl CPython 3.7 CPython 3.7 pymalloc macOS 10.9+ x86-64 Details
stim-1.16.dev1753811344-cp36-cp36m-win_amd64.whl CPython 3.6 CPython 3.6 pymalloc Windows x86-64 Details
stim-1.16.dev1753811344-cp36-cp36m-win32.whl CPython 3.6 CPython 3.6 pymalloc Windows x86-32 Details
stim-1.16.dev1753811344-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.16.dev1753811344-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.16.dev1753811344-cp36-cp36m-macosx_10_9_x86_64.whl CPython 3.6 CPython 3.6 pymalloc macOS 10.9+ x86-64 Details

Total release size: 108.6 MB

Release files / stim-1.16.dev1753811344.tar.gz

Download URL stim-1.16.dev1753811344.tar.gz
Size 854.1 kB
Tags Source
SHA-256 checksum
How to use checksums
ae7d7578163a339b51d1a88a162ca8a1359358db879e4f494a4f99f5361e2d1d
BLAKE2b-256 checksum
How to use checksums
7a22499db1093385a438699781e7c411a052fb3b12e2da5f11f18a9b2f78172a
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.16.dev1753811344-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL stim-1.16.dev1753811344-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 5.0 MB
Tags CPython 3.13 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
d484f1f6d9968530ebd28d20fe871c45455865ea67061aadc9d4d52be3cc7237
BLAKE2b-256 checksum
How to use checksums
6b097eb7d21241a79749eb3f7f91ab28b2e69c8c9684b1dfc669f4d38cc72f79
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.16.dev1753811344-cp313-cp313-macosx_11_0_arm64.whl

Download URL stim-1.16.dev1753811344-cp313-cp313-macosx_11_0_arm64.whl
Size 1.8 MB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
bacf2f6352e1f96b9d45d4266e53793f5c7b301588842b18cc71706d759a73e5
BLAKE2b-256 checksum
How to use checksums
cb9373ba833bc65ac777a741d505203f3ea6a4d6d8bdb25cbbbb564280c4d410
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.16.dev1753811344-cp313-cp313-macosx_10_13_x86_64.whl

Download URL stim-1.16.dev1753811344-cp313-cp313-macosx_10_13_x86_64.whl
Size 2.0 MB
Tags CPython 3.13 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
0ce9b918eeac91d83e29d4f05edabd25915d566bf908a1797ad7d571b75e84cb
BLAKE2b-256 checksum
How to use checksums
bcf6b7b4d99683054b0fd8e3dca4555fcba6d544d9c81811b62422877668e194
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.16.dev1753811344-cp312-cp312-win_amd64.whl

Download URL stim-1.16.dev1753811344-cp312-cp312-win_amd64.whl
Size 2.7 MB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
8dfa6878aa18fb0d9e07a7b33d45da18b8664ca74bed6b781f942e97a2aa3101
BLAKE2b-256 checksum
How to use checksums
9ea525737c95665186b197bd0687da62beff43db98daf142c08af4034924f4a4
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.16.dev1753811344-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL stim-1.16.dev1753811344-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 5.0 MB
Tags CPython 3.12 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
9877dd3d80c81d56c1d9178c9b51f5d59f4209d25adbfad4d444dca80f2cc451
BLAKE2b-256 checksum
How to use checksums
46106e9781f6da908ee637e7ac04b2ed0791dcd75799733abb630baca8210623
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.16.dev1753811344-cp312-cp312-macosx_11_0_arm64.whl

Download URL stim-1.16.dev1753811344-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
97d70dd0d83fbb5621e56a9a31470f76e43068b9c999c02c6b81ada249005ad3
BLAKE2b-256 checksum
How to use checksums
0b8c436320e736425810ae6c1b598794289f86d18c28d8c15a97ec9892705fb2
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.16.dev1753811344-cp312-cp312-macosx_10_13_x86_64.whl

Download URL stim-1.16.dev1753811344-cp312-cp312-macosx_10_13_x86_64.whl
Size 2.0 MB
Tags CPython 3.12 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
a67704b0bfcd83f3a3934a9a1cf0fd446e5e96e4b367980e56e7ab421f874fbc
BLAKE2b-256 checksum
How to use checksums
319dbbf38ad5724e18845c43a2213b85a7aa4350fe0881bc115a0e829c50680a
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.16.dev1753811344-cp311-cp311-win_amd64.whl

Download URL stim-1.16.dev1753811344-cp311-cp311-win_amd64.whl
Size 2.7 MB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
b34ed7040600f10086915100221b7f37558825737b4214c3716e39ac6be9d449
BLAKE2b-256 checksum
How to use checksums
0f8a64f113ab5d67fbcafa5ce6a0a8fd3201a554633c5715c17d0aec72475487
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.16.dev1753811344-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL stim-1.16.dev1753811344-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 5.0 MB
Tags CPython 3.11 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
bcae8a7d739b158bf55927705f98014b7a1c34a5f84ae7093e396d837ac61754
BLAKE2b-256 checksum
How to use checksums
89989b5bad86bf5468f111a0a152500746f081552eae381571c4e7419510dddc
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.16.dev1753811344-cp311-cp311-macosx_11_0_arm64.whl

Download URL stim-1.16.dev1753811344-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
05b8cf0fcc73794ddee739f457061b73b85ca8bdf53f45d99ed4d120fe071da2
BLAKE2b-256 checksum
How to use checksums
a891c995c0766ebe235afab93031f34390315842988d527b734bb0cab48cc7d8
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.16.dev1753811344-cp311-cp311-macosx_10_9_x86_64.whl

Download URL stim-1.16.dev1753811344-cp311-cp311-macosx_10_9_x86_64.whl
Size 2.0 MB
Tags CPython 3.11 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
061418e2de654951d200475e116b7423deb800d88b95e02f865c1c393ebae905
BLAKE2b-256 checksum
How to use checksums
0a80998f5646623bda4a825ede59c15cb125d72208862585682d1bac191c8e74
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.16.dev1753811344-cp310-cp310-win_amd64.whl

Download URL stim-1.16.dev1753811344-cp310-cp310-win_amd64.whl
Size 2.7 MB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
a7ba115d7de173efd87df2a2e51eac4c1ca74a4e4a21e1673a5dd01e1a7fd2f3
BLAKE2b-256 checksum
How to use checksums
0cb4feb7ef19670fe609f47b7777d1441d31f99fff7189df80e5005919cdd261
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.16.dev1753811344-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL stim-1.16.dev1753811344-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 5.0 MB
Tags CPython 3.10 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
19ef508f746400ede7076b749ee3f21495c2c1b826158d3f2eff5b281b9414ff
BLAKE2b-256 checksum
How to use checksums
31931df299c9a9ca77ffd42144725721efbbcb71128621688d27ed5a5d331a57
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.16.dev1753811344-cp310-cp310-macosx_11_0_arm64.whl

Download URL stim-1.16.dev1753811344-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
1bf8ac387928c9f9ca85ef65034f69c3bbeedf0d3212a64d6dc68cad6498dac2
BLAKE2b-256 checksum
How to use checksums
856752b015053f8c58fb849f5607457ef5c57d8bd3ca78469d38470da83c8fd4
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.16.dev1753811344-cp310-cp310-macosx_10_9_x86_64.whl

Download URL stim-1.16.dev1753811344-cp310-cp310-macosx_10_9_x86_64.whl
Size 2.0 MB
Tags CPython 3.10 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
2c8a0e3f50ceed1f4359575c1477652f6639dd67a2e5edd40306cec38ab02286
BLAKE2b-256 checksum
How to use checksums
df444ce85c77041101ebb6bbb4efd8ff3834353d8551fd5aa7106ac59ddddf8a
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.16.dev1753811344-cp39-cp39-win_amd64.whl

Download URL stim-1.16.dev1753811344-cp39-cp39-win_amd64.whl
Size 2.7 MB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
b471047e907f1faf45ec1fa22cedec5245b9e38cf385735805bf335eab979b16
BLAKE2b-256 checksum
How to use checksums
d682d0a4a21987d4e43e6a35890143c2bb54a26375e8314f9ed117ef5d7558c0
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.16.dev1753811344-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL stim-1.16.dev1753811344-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 5.0 MB
Tags CPython 3.9 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
67d1a07f753448d981d353e55287a733f233e15fd88586d6a820cd93dc0f8c72
BLAKE2b-256 checksum
How to use checksums
8512c436cc5667440e4f4d70738e9af63bf6e92ea02a35a665273296c1f3e772
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.16.dev1753811344-cp39-cp39-macosx_11_0_arm64.whl

Download URL stim-1.16.dev1753811344-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
42a22c3bbb3b52e17cede6825fcac862760252c1afde82ffbedf324fba8bb20b
BLAKE2b-256 checksum
How to use checksums
5b7b49c4aedebb3994db8216bc732802a7c46feb49ae62f143b85ec277c2aa92
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.16.dev1753811344-cp39-cp39-macosx_10_9_x86_64.whl

Download URL stim-1.16.dev1753811344-cp39-cp39-macosx_10_9_x86_64.whl
Size 2.0 MB
Tags CPython 3.9 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
a8589893d2912a841a88db816320e07258bb49cb02a9b0db3ef2a65350bf14a3
BLAKE2b-256 checksum
How to use checksums
b5d0bf7a5df3191d456180d7d0bb7fb9cb964a9a6fb6dc5ae5aac5c6bf7972ee
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.16.dev1753811344-cp38-cp38-win_amd64.whl

Download URL stim-1.16.dev1753811344-cp38-cp38-win_amd64.whl
Size 2.7 MB
Tags CPython 3.8 Windows x86-64
SHA-256 checksum
How to use checksums
59c39b6f1161bc56b0b1d36164769362220f84a78a6eeee8234415e3f7600168
BLAKE2b-256 checksum
How to use checksums
d8be65988cabd2734897f6ac023c065028d73090bfacdf2e16eacae98017bb79
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.16.dev1753811344-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL stim-1.16.dev1753811344-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 5.0 MB
Tags CPython 3.8 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
8d41ac9157763c4c65ef2558a432ce678362018f10d4bca141dc8fbf8b210752
BLAKE2b-256 checksum
How to use checksums
33856dfa4f1afa8abdf653760469c3f067b3a41590abc0ad5ee3432807970c3f
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.16.dev1753811344-cp38-cp38-macosx_11_0_arm64.whl

Download URL stim-1.16.dev1753811344-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
5a125599c057160137db5d1e543c8b98a55cb02b9fe9f2f7df4b77fea10b4594
BLAKE2b-256 checksum
How to use checksums
1352e75d45a60375857b1c29734777e6251eccc0fea968d19be8ffbe0e168fe9
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.16.dev1753811344-cp38-cp38-macosx_10_9_x86_64.whl

Download URL stim-1.16.dev1753811344-cp38-cp38-macosx_10_9_x86_64.whl
Size 3.8 MB
Tags CPython 3.8 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
37b242fd151b7b87227c07fbfcb880f79bf3a4526733c8674edb7b08561c4063
BLAKE2b-256 checksum
How to use checksums
ea53f1117c0342c9e4690bde9388894c6cfecec96fb1d826ae4500db7e338eb8
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.16.dev1753811344-cp37-cp37m-win_amd64.whl

Download URL stim-1.16.dev1753811344-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
9f429049dad57d5007959c7a2c4c73ef55ef5cf8ff27a3dc4a08b18e9bbe6511
BLAKE2b-256 checksum
How to use checksums
94b76c386c21b5febb602e157733ca4cf14376886a11f04e34ca2a074ed7fc9a
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.16.dev1753811344-cp37-cp37m-win32.whl

Download URL stim-1.16.dev1753811344-cp37-cp37m-win32.whl
Size 2.4 MB
Tags CPython 3.7 CPython 3.7 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
e40769ae907c286510bb850929e9b727efb995e0c1e3f8184b4313dcc057ab2f
BLAKE2b-256 checksum
How to use checksums
ad71289f2e41cb24a389c5840a3890201fa064621b15e5944603cdef4b0662fd
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.16.dev1753811344-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL stim-1.16.dev1753811344-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
ad8c57228efa27fe3d24ab78dd6d17bad48eead33d6e7a332a7ec263b75a0d3c
BLAKE2b-256 checksum
How to use checksums
217bb3280e8aa3a35d240e43718fe1d1bbe35071c56deca8dd21f4db747d80c5
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.16.dev1753811344-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL stim-1.16.dev1753811344-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
42a6f0ffb630ebfd59416adcfe436bbea76cbd1a4bba1b82c796f28d5aef1687
BLAKE2b-256 checksum
How to use checksums
baf2e09c870f1d06a87280461f21b788930fc8ff1252d0f20fa274242285b556
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.16.dev1753811344-cp37-cp37m-macosx_10_9_x86_64.whl

Download URL stim-1.16.dev1753811344-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
72e6869e758523d7950f194217d5b40263ab47840855795896763c7b874544e0
BLAKE2b-256 checksum
How to use checksums
087ce482a41bdbb9c83b35555635b0da07bd0ac37e2b4db6769c62210226dd11
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.16.dev1753811344-cp36-cp36m-win_amd64.whl

Download URL stim-1.16.dev1753811344-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
df60e44738cf2954e12b5bacf59061380db9532bc96e2378f945707615daf8c8
BLAKE2b-256 checksum
How to use checksums
8b51b867ce79e83a35da413b4f9111941006410877ab04a9d35ebcc03df140a5
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.16.dev1753811344-cp36-cp36m-win32.whl

Download URL stim-1.16.dev1753811344-cp36-cp36m-win32.whl
Size 2.4 MB
Tags CPython 3.6 CPython 3.6 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
a5f932b4f04ca6a1d8d1fc180825628496145fa105625665e9d40668010c9a88
BLAKE2b-256 checksum
How to use checksums
c14b5f7326e3b2d4775571eca0fe5024ae8fa5fb100d5c954da0e95a41909347
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.16.dev1753811344-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL stim-1.16.dev1753811344-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
98a326611b7adee53de6d5fcd01091cce4f48c9ef4b2177ad0992579e32b7999
BLAKE2b-256 checksum
How to use checksums
1c26c62628ca4edaa71115a968a0a50634973747c10775ad78ce1bec95d3ccb2
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.16.dev1753811344-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL stim-1.16.dev1753811344-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
606250da930070baf04420126b690e12dca5e25329b0c271e080b899651c7309
BLAKE2b-256 checksum
How to use checksums
b5090bfd70e05a3025d8e6032baf082d6de212804759fa6e3d8aabd463957933
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.16.dev1753811344-cp36-cp36m-macosx_10_9_x86_64.whl

Download URL stim-1.16.dev1753811344-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
7fc05b9d4a855eb7ebde5f00f931dc3c007f3373cadbbd32072107fabbd40edb
BLAKE2b-256 checksum
How to use checksums
2740c2e9fea71017fc5dd37ef23913d1712eed3afb3689c3b71baa6fa9358c08
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