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.dev1742838562

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.dev1742838562
File Size Uploaded
stim-1.15.dev1742838562.tar.gz 840.5 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for stim 1.15.dev1742838562
File
stim-1.15.dev1742838562-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
stim-1.15.dev1742838562-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.dev1742838562-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
stim-1.15.dev1742838562-cp312-cp312-macosx_10_9_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.9+ x86-64 Details
stim-1.15.dev1742838562-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
stim-1.15.dev1742838562-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.dev1742838562-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
stim-1.15.dev1742838562-cp311-cp311-macosx_10_9_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.9+ x86-64 Details
stim-1.15.dev1742838562-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
stim-1.15.dev1742838562-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.dev1742838562-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
stim-1.15.dev1742838562-cp310-cp310-macosx_10_9_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.9+ x86-64 Details
stim-1.15.dev1742838562-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
stim-1.15.dev1742838562-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.dev1742838562-cp39-cp39-macosx_11_0_arm64.whl CPython 3.9 CPython 3.9 macOS 11.0+ ARM64 Details
stim-1.15.dev1742838562-cp39-cp39-macosx_10_9_x86_64.whl CPython 3.9 CPython 3.9 macOS 10.9+ x86-64 Details
stim-1.15.dev1742838562-cp38-cp38-win_amd64.whl CPython 3.8 CPython 3.8 Windows x86-64 Details
stim-1.15.dev1742838562-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.dev1742838562-cp38-cp38-macosx_11_0_arm64.whl CPython 3.8 CPython 3.8 macOS 11.0+ ARM64 Details
stim-1.15.dev1742838562-cp38-cp38-macosx_10_9_x86_64.whl CPython 3.8 CPython 3.8 macOS 10.9+ x86-64 Details
stim-1.15.dev1742838562-cp37-cp37m-win_amd64.whl CPython 3.7 CPython 3.7 pymalloc Windows x86-64 Details
stim-1.15.dev1742838562-cp37-cp37m-win32.whl CPython 3.7 CPython 3.7 pymalloc Windows x86-32 Details
stim-1.15.dev1742838562-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.dev1742838562-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.dev1742838562-cp37-cp37m-macosx_10_9_x86_64.whl CPython 3.7 CPython 3.7 pymalloc macOS 10.9+ x86-64 Details
stim-1.15.dev1742838562-cp36-cp36m-win_amd64.whl CPython 3.6 CPython 3.6 pymalloc Windows x86-64 Details
stim-1.15.dev1742838562-cp36-cp36m-win32.whl CPython 3.6 CPython 3.6 pymalloc Windows x86-32 Details
stim-1.15.dev1742838562-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.dev1742838562-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.dev1742838562-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.0 MB

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

Download URL stim-1.15.dev1742838562.tar.gz
Size 840.5 kB
Tags Source
SHA-256 checksum
How to use checksums
49cce48beda85e37eeb852571a65c7ef9b659166d02294da1026201b8d497f58
BLAKE2b-256 checksum
How to use checksums
69f0cba3828506c9274814230f70792c14d9f7b25eebde97309c57442e663edc
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.dev1742838562-cp312-cp312-win_amd64.whl

Download URL stim-1.15.dev1742838562-cp312-cp312-win_amd64.whl
Size 2.6 MB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
e72de9c9ff25a966870a40a962b6d7ba55d0d9f452a6814c68edb5eb6e27c2aa
BLAKE2b-256 checksum
How to use checksums
a61a342a39216d97026e4058416103f12d1643426a4f7e26d56985b11f6a4cf4
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.dev1742838562-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL stim-1.15.dev1742838562-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
41b07a70b824a9732963f86d76287b0c8b24ff3537f1a78a142aafa7b04dde60
BLAKE2b-256 checksum
How to use checksums
d00a51a1de6979c7235254fd36e85753fed1e92bc666e4097b9d3f84bdf14611
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.dev1742838562-cp312-cp312-macosx_11_0_arm64.whl

Download URL stim-1.15.dev1742838562-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
e7318e133139708798d278331cec708c27bf8d85a06fcf19f60636349b3233ec
BLAKE2b-256 checksum
How to use checksums
42d1f75b1f9e4b4e94b032b05c3eb3c3becb6d66efacaf7a04c2211e18cfef16
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.dev1742838562-cp312-cp312-macosx_10_9_x86_64.whl

Download URL stim-1.15.dev1742838562-cp312-cp312-macosx_10_9_x86_64.whl
Size 1.9 MB
Tags CPython 3.12 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
4b6cc3229b48222769e2d6453d8116150448d3f4fbb975b34f63c600677758fe
BLAKE2b-256 checksum
How to use checksums
fb6c552c2f5f34b9fd6996be429485c4234a0d9a9ed93853ba307b64770bbc23
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.dev1742838562-cp311-cp311-win_amd64.whl

Download URL stim-1.15.dev1742838562-cp311-cp311-win_amd64.whl
Size 2.6 MB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
cccfcdeee5303abcdb7be73801c33b7e10ea89b4e1f82fe7823f6b4c04b682fd
BLAKE2b-256 checksum
How to use checksums
1963ccc1a0241303cef5f34fab5d4ce096fa4f826f6515e0c54d7a6be6d059fc
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.dev1742838562-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL stim-1.15.dev1742838562-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
34d80eb45d3338530fbb38adbfe26c67b1ebb56b8ab550bce41a15b3e9f042a3
BLAKE2b-256 checksum
How to use checksums
3ed6c6bd3a87f165cb96d1cabc0a160d41126bf63647684a21476b11b364bbd5
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.dev1742838562-cp311-cp311-macosx_11_0_arm64.whl

Download URL stim-1.15.dev1742838562-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
8c9f76a5016ed487a8859dd07d6214fab7168f733e99ebe2bac4819a8dbe883b
BLAKE2b-256 checksum
How to use checksums
626758a146a109450bdebe3a6ee8ef8f7a39270b62da44f52a266ab0a07eef4e
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.dev1742838562-cp311-cp311-macosx_10_9_x86_64.whl

Download URL stim-1.15.dev1742838562-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
66fb2208f084b67749f60187233132f0c69bbf99271a45033084eb7e62e8d721
BLAKE2b-256 checksum
How to use checksums
89397e94a403b46a258f603833cfd76c7c49d49a1f877b750514134e43341d19
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.dev1742838562-cp310-cp310-win_amd64.whl

Download URL stim-1.15.dev1742838562-cp310-cp310-win_amd64.whl
Size 2.6 MB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
2f4e3130371a21edf0553eb1139ec4be75f279f884eccd813837ad7c8bd05d0b
BLAKE2b-256 checksum
How to use checksums
10f78cde34f632516ef57a43836aeaaf68e005df50b2ded4748a187e48267fc7
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.dev1742838562-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL stim-1.15.dev1742838562-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
dfcc6259d89a44c6f05a4148141f30a6097f49824b010c25e93c656113a1400d
BLAKE2b-256 checksum
How to use checksums
22ad2e2afd213325cc6a518496ef4eeff14e0895644af558983a74c76b3dc28c
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.dev1742838562-cp310-cp310-macosx_11_0_arm64.whl

Download URL stim-1.15.dev1742838562-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
96e8483cd430122c9e0ace53dd15c4af5b76d8918062d3012f1fd700d547fdaa
BLAKE2b-256 checksum
How to use checksums
f16d08ef3a14e2de91105bbb313b032a87100c9d7f4c32cabf7b19b4ee4fc79a
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.dev1742838562-cp310-cp310-macosx_10_9_x86_64.whl

Download URL stim-1.15.dev1742838562-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
b5b10a39a04cd1fc200d51cabee021d4978f29e237929674cfdd8cae7d9a7729
BLAKE2b-256 checksum
How to use checksums
90ef2c5ed862b82668a9d3d9d4287f4fda4541b1a4ab0c9572253089a6799d04
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.dev1742838562-cp39-cp39-win_amd64.whl

Download URL stim-1.15.dev1742838562-cp39-cp39-win_amd64.whl
Size 2.7 MB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
1839de18a4cd87ee555291297e47206ecaf7b5b7465df00dd643cfc25a04bb9f
BLAKE2b-256 checksum
How to use checksums
dba639512f44fe969ddb7368d954b513d58744a80d255235d3213e7683d0c204
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.dev1742838562-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL stim-1.15.dev1742838562-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
4cc033a7a74954f082e22a632b2312fc67b5832e988fa71e6a3ce887a33fbf11
BLAKE2b-256 checksum
How to use checksums
d96db7ed54ad5e6a2e6e1b2d4c6ca7f02e2790347838bc31f5e8d3c4de89cd92
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.dev1742838562-cp39-cp39-macosx_11_0_arm64.whl

Download URL stim-1.15.dev1742838562-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
7709771133a1a6137287789390229d4492fd666a9356f44557e690b0cc0b3557
BLAKE2b-256 checksum
How to use checksums
f5c28a4ee17f688abc61790d5ff826d4c26b0255dd6e5c10d08ef5be834a3e31
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.dev1742838562-cp39-cp39-macosx_10_9_x86_64.whl

Download URL stim-1.15.dev1742838562-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
77d39088d20a952b9b5b94a4859e69862a7ba2f3da710357b516ae46cbe10110
BLAKE2b-256 checksum
How to use checksums
9d8afd191aca6f07c6ab78407f8d4cd945b9c6426e055417fa88648f05a80c14
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.dev1742838562-cp38-cp38-win_amd64.whl

Download URL stim-1.15.dev1742838562-cp38-cp38-win_amd64.whl
Size 2.6 MB
Tags CPython 3.8 Windows x86-64
SHA-256 checksum
How to use checksums
7a41ca871e42043bd68d46e982013cddae171ee21b4cf811393379212078016c
BLAKE2b-256 checksum
How to use checksums
c619a18846342e78a82b52508948894d01ccea4a5be9caac7057cced209a7130
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.dev1742838562-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL stim-1.15.dev1742838562-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
e80210e8f886ee49fb80f6ecfb4d15264ce8ab51c405ea2c6d67236a1e069738
BLAKE2b-256 checksum
How to use checksums
c3c064e582c1d640023ad600a8c56004a46fa297d1ce8b322e669b29ef6960e2
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.dev1742838562-cp38-cp38-macosx_11_0_arm64.whl

Download URL stim-1.15.dev1742838562-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
66d4d09569349a0f9ee84e3376ed35d94c3a3bcf0ddf5abae22a21543b43f806
BLAKE2b-256 checksum
How to use checksums
b7f8a3688acc3590db0c0f9f27fbb023f0e65c506f17c0c2f753b43e029550cb
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.dev1742838562-cp38-cp38-macosx_10_9_x86_64.whl

Download URL stim-1.15.dev1742838562-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
254da29082cdd1dd20ee099bc979aae618107edde28c8cf238de829a17d0893f
BLAKE2b-256 checksum
How to use checksums
145645c0003cdfaa527445f8f385e99730870ceb5e7bbe5d74a71173b8185f2c
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.dev1742838562-cp37-cp37m-win_amd64.whl

Download URL stim-1.15.dev1742838562-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
afee67b357e1ddfda9ac8a1c5057309778b66b786c6f2989abe7b62c6a7576d4
BLAKE2b-256 checksum
How to use checksums
12b70645ab1ff846eface413ceed033d13ab07deaf80604ad7e997df36bd571a
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.dev1742838562-cp37-cp37m-win32.whl

Download URL stim-1.15.dev1742838562-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
5305c216529ef78332e5e9ea599bd53b6554f88a950f68385382192c25553d6b
BLAKE2b-256 checksum
How to use checksums
8c51cc424a05e474ae7038aa65726caaa89b94bfd4d9f84b933ff81a940c5171
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.dev1742838562-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL stim-1.15.dev1742838562-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 4.9 MB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
9dd5b62421965788b8fd1d10af221cb473356b8e7f6cbcf81666d232681ce98c
BLAKE2b-256 checksum
How to use checksums
dbe3f72e9abc9bd96ed2330c8860549a5fa6c2af10822c1ea7b8d26eaab2f46c
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.dev1742838562-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL stim-1.15.dev1742838562-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
971371e3da9bb8bcfab0ef807736caa6584af401a28a200fdf50a0bced5d8111
BLAKE2b-256 checksum
How to use checksums
7f49b00906b6da96c11dd86108da02506e56c136ebfb9b15ad0c859282314387
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.dev1742838562-cp37-cp37m-macosx_10_9_x86_64.whl

Download URL stim-1.15.dev1742838562-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
cf8b8f9a52e13f9b8fb9abaf9db3ed277426374988420b88b933dd9e7c8ba28a
BLAKE2b-256 checksum
How to use checksums
70f42be3d8f360bd74d6c526d4f66b84beb75cf6ac11e55ab6933533fe4e1b64
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.dev1742838562-cp36-cp36m-win_amd64.whl

Download URL stim-1.15.dev1742838562-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
787523e5f21e2a65383825881076e5e2a48f910d272fba8e82f1a4ef01c9605b
BLAKE2b-256 checksum
How to use checksums
ba4210685f2c8f68c561f8b60882af1841ce41142284b27b187cbd4ce0a36dc7
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.dev1742838562-cp36-cp36m-win32.whl

Download URL stim-1.15.dev1742838562-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
d9b53867a72bfdcd54eb567cd94c215f8d62c18d6a8f90c9ed62db638e7bb81f
BLAKE2b-256 checksum
How to use checksums
6a98b54429a7f865bc96759c61de8ce3f76eaba919b32d8b190ea6fe51ec3bca
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.dev1742838562-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL stim-1.15.dev1742838562-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 4.9 MB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
c106c88d5ebccb7a1d474d3a650506dc0e2b7d40e6c551ebd75919c3de8a4fbc
BLAKE2b-256 checksum
How to use checksums
fd4ba4174f2df5646094ac50a83b92f4778a6c4ee59675568a61c84aafd613c0
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.dev1742838562-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL stim-1.15.dev1742838562-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
981367e9f8e89f4985f754cbfbe228a3d911f24f4acacb8a0d5954489e98ac05
BLAKE2b-256 checksum
How to use checksums
9924ab5abbd035d421fe2695954140659e10a9c1184d727ead6c4225f2edbd45
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.dev1742838562-cp36-cp36m-macosx_10_9_x86_64.whl

Download URL stim-1.15.dev1742838562-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
d6dcead906c9a3767899cd05d6ae574015f0b4e793e4ea17a1c913aa094cbb0c
BLAKE2b-256 checksum
How to use checksums
7d5aa7a5c78ad3572f42b31f02a76192b6ea79fbe145ce5e799ebf0031d4f3da
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