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

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.dev1768329600
File Size Uploaded
stim-1.16.dev1768329600.tar.gz 865.3 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for stim 1.16.dev1768329600
File
stim-1.16.dev1768329600-cp314-cp314-win_amd64.whl CPython 3.14 CPython 3.14 Windows x86-64 Details
stim-1.16.dev1768329600-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl CPython 3.14 CPython 3.14 Linux glibc 2.27+ x86-64, Linux glibc 2.28+ x86-64 Details
stim-1.16.dev1768329600-cp314-cp314-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 macOS 11.0+ ARM64 Details
stim-1.16.dev1768329600-cp314-cp314-macosx_10_15_x86_64.whl CPython 3.14 CPython 3.14 macOS 10.15+ x86-64 Details
stim-1.16.dev1768329600-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
stim-1.16.dev1768329600-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.27+ x86-64, Linux glibc 2.28+ x86-64 Details
stim-1.16.dev1768329600-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
stim-1.16.dev1768329600-cp313-cp313-macosx_10_13_x86_64.whl CPython 3.13 CPython 3.13 macOS 10.13+ x86-64 Details
stim-1.16.dev1768329600-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
stim-1.16.dev1768329600-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.27+ x86-64, Linux glibc 2.28+ x86-64 Details
stim-1.16.dev1768329600-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
stim-1.16.dev1768329600-cp312-cp312-macosx_10_13_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.13+ x86-64 Details
stim-1.16.dev1768329600-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
stim-1.16.dev1768329600-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.27+ x86-64, Linux glibc 2.28+ x86-64 Details
stim-1.16.dev1768329600-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
stim-1.16.dev1768329600-cp311-cp311-macosx_10_9_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.9+ x86-64 Details
stim-1.16.dev1768329600-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
stim-1.16.dev1768329600-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.27+ x86-64, Linux glibc 2.28+ x86-64 Details
stim-1.16.dev1768329600-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
stim-1.16.dev1768329600-cp310-cp310-macosx_10_9_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.9+ x86-64 Details
stim-1.16.dev1768329600-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
stim-1.16.dev1768329600-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.27+ x86-64, Linux glibc 2.28+ x86-64 Details
stim-1.16.dev1768329600-cp39-cp39-macosx_11_0_arm64.whl CPython 3.9 CPython 3.9 macOS 11.0+ ARM64 Details
stim-1.16.dev1768329600-cp39-cp39-macosx_10_9_x86_64.whl CPython 3.9 CPython 3.9 macOS 10.9+ x86-64 Details
stim-1.16.dev1768329600-cp38-cp38-win_amd64.whl CPython 3.8 CPython 3.8 Windows x86-64 Details
stim-1.16.dev1768329600-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl CPython 3.8 CPython 3.8 Linux glibc 2.27+ x86-64, Linux glibc 2.28+ x86-64 Details
stim-1.16.dev1768329600-cp38-cp38-macosx_11_0_arm64.whl CPython 3.8 CPython 3.8 macOS 11.0+ ARM64 Details
stim-1.16.dev1768329600-cp38-cp38-macosx_10_9_x86_64.whl CPython 3.8 CPython 3.8 macOS 10.9+ x86-64 Details

Total release size: 85.3 MB

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

Download URL stim-1.16.dev1768329600.tar.gz
Size 865.3 kB
Tags Source
SHA-256 checksum
How to use checksums
ee718f30ec89e4bc3debddf7736da8ac0d1192908ade73366da20bb5309e9a6a
BLAKE2b-256 checksum
How to use checksums
fdf49315849ea7e95a9389820805bd4bf18f93e8aca78fdc9c97b4dcd0767966
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.dev1768329600-cp314-cp314-win_amd64.whl

Download URL stim-1.16.dev1768329600-cp314-cp314-win_amd64.whl
Size 2.8 MB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
9d50c0afc6b33cb85132eae8aee1610d0b45fef647b2ae9cb5516d945c665e50
BLAKE2b-256 checksum
How to use checksums
10bfd96840556330d879af0ae87de308924b04a11bd20fcbb565b79e887c1605
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.dev1768329600-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl

Download URL stim-1.16.dev1768329600-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Size 5.2 MB
Tags CPython 3.14 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
b99894f0f3c5bc8a992626f2abcb2109e876a44b880a14db9e86915efda0da3f
BLAKE2b-256 checksum
How to use checksums
2435fe1b776cea126d3f133def8e00c12083730ea57bc7adaae3f06512bf7d67
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.dev1768329600-cp314-cp314-macosx_11_0_arm64.whl

Download URL stim-1.16.dev1768329600-cp314-cp314-macosx_11_0_arm64.whl
Size 1.9 MB
Tags CPython 3.14 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
4e21422d231014592f14f03fa1d65ac81aa7084ecaf800e2c54bc8b7da2f4c84
BLAKE2b-256 checksum
How to use checksums
ec26993f5fd1d5122d3907c6669f2cea7290702b98aac6b8e8893987f7a260f7
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.dev1768329600-cp314-cp314-macosx_10_15_x86_64.whl

Download URL stim-1.16.dev1768329600-cp314-cp314-macosx_10_15_x86_64.whl
Size 2.0 MB
Tags CPython 3.14 macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
c45801fd27a368b0599faa8705e95bc719f3fe3ffc52071f598ff880c109226f
BLAKE2b-256 checksum
How to use checksums
b736259ea05958a76ca97f8db247179496b4a0a8284a85819872a82ce6487d1e
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.dev1768329600-cp313-cp313-win_amd64.whl

Download URL stim-1.16.dev1768329600-cp313-cp313-win_amd64.whl
Size 1.4 MB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
8069528bb2cd3b890ebf5f26355ed1ed064eb4b6bc58bc01cda56e19cf4d4905
BLAKE2b-256 checksum
How to use checksums
ac398d48d987c879ccffbdbaf5db23a99c87bb8e892b9f909f9d75c0a7e58301
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.dev1768329600-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl

Download URL stim-1.16.dev1768329600-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Size 5.2 MB
Tags CPython 3.13 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
0f86a9b5f375cf1b966169b8b2c75d8708269218775a0cfb7eaeda816f2bac3c
BLAKE2b-256 checksum
How to use checksums
730c4ba9a60e59043cf1327cd001ee01f3214b903e5b1e4a421da9c8e921393b
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.dev1768329600-cp313-cp313-macosx_11_0_arm64.whl

Download URL stim-1.16.dev1768329600-cp313-cp313-macosx_11_0_arm64.whl
Size 1.9 MB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
08b9929041def49111a40fbadefe408e9e73abd4e7ece242bfb1480d591e6655
BLAKE2b-256 checksum
How to use checksums
695983690fd604e81a605452786bb30eb0ec68ef8bc9a53328930c554ecc5098
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.dev1768329600-cp313-cp313-macosx_10_13_x86_64.whl

Download URL stim-1.16.dev1768329600-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
ba4c5735825a06a473d061d6a23b32bb96b308654a66855bdfb2c9a4b4302ca2
BLAKE2b-256 checksum
How to use checksums
8ae411fa21265b0d00361f961dce8e0b1eb04f9e995322fa46cc8aa7db6c2e33
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.dev1768329600-cp312-cp312-win_amd64.whl

Download URL stim-1.16.dev1768329600-cp312-cp312-win_amd64.whl
Size 2.7 MB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
81a012e2aa62a12ab9264ca49af4b04ae8ed9a032875e49a2aeb0fdafb132087
BLAKE2b-256 checksum
How to use checksums
d042b032bee7b6eb5235f60c506ca7479a8cc42b7578755a734100acebcf0f22
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.dev1768329600-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl

Download URL stim-1.16.dev1768329600-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Size 5.2 MB
Tags CPython 3.12 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
71f9df8fe7be5f9c078bf2dc1c5aa59b749dd078c7a1fdd4dc2f33a236459a1d
BLAKE2b-256 checksum
How to use checksums
8557e8f79cd7b20fff1a655150815001b69ddaf31a0e25bd2b66b46ac8576101
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.dev1768329600-cp312-cp312-macosx_11_0_arm64.whl

Download URL stim-1.16.dev1768329600-cp312-cp312-macosx_11_0_arm64.whl
Size 1.9 MB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
7f418d0f290a550f3a74117dda1bc9a56b0aedf673e03d3aa6b9a99c1eac5118
BLAKE2b-256 checksum
How to use checksums
963d2e060623746e6a611873400ca45010c3dbc6c17ad5b12d9d5b5468a9d6f2
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.dev1768329600-cp312-cp312-macosx_10_13_x86_64.whl

Download URL stim-1.16.dev1768329600-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
fddf78b3c60876951cf13c6fc4edfe44bbc4143b5fb03d46e7fe5c20113db750
BLAKE2b-256 checksum
How to use checksums
20f89173c29bf5bbd96a3b3a90b3c690f9e864e3e37125b6d26940dffa718ce7
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.dev1768329600-cp311-cp311-win_amd64.whl

Download URL stim-1.16.dev1768329600-cp311-cp311-win_amd64.whl
Size 2.7 MB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
f4210685e3e3e88fae869a8e410692c78c0f3086455c17018e631535e291b013
BLAKE2b-256 checksum
How to use checksums
e50b06af5122cc14ad0c4079e57a5a692e1c2f74a5979668fe81b4f95c14eae8
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.dev1768329600-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl

Download URL stim-1.16.dev1768329600-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Size 5.1 MB
Tags CPython 3.11 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
3c668305078918737158055c9593f410dfc86891e8c16bce6bd3f1cda994df4c
BLAKE2b-256 checksum
How to use checksums
199b04ff1dedfff5b5370f84f3b7c7a133c682b4d13f8b5867f92f27b5058075
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.dev1768329600-cp311-cp311-macosx_11_0_arm64.whl

Download URL stim-1.16.dev1768329600-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
3e101d2649bb976e9ff98afe1d07ba515e34eb8210ab710305fd94055f6ed10c
BLAKE2b-256 checksum
How to use checksums
f5f332741f1a1a90b1d213213e266631e3506408027bb7a5dc2cba6205664c7f
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.dev1768329600-cp311-cp311-macosx_10_9_x86_64.whl

Download URL stim-1.16.dev1768329600-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
9cdd6553c986ceab219f570b529efd94c9cc6c5b8f75cb1fc998c24c8eeeb949
BLAKE2b-256 checksum
How to use checksums
8dabb96df5636f00ba50808a94d175f13b6e176b7e36a497deb81e0e5d8d61bd
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.dev1768329600-cp310-cp310-win_amd64.whl

Download URL stim-1.16.dev1768329600-cp310-cp310-win_amd64.whl
Size 2.7 MB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
051dc6bf9d299bab07bdd0eced348faaabc81b483e69866cf5778e11314fa5fb
BLAKE2b-256 checksum
How to use checksums
dcc75668662ec6a2a7cedc0574734f9464640aad9d7b6d571ce95147920cf0df
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.dev1768329600-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl

Download URL stim-1.16.dev1768329600-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Size 5.1 MB
Tags CPython 3.10 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
764eccc2dd8ffa1226bbb388b29f6b8ef21011d21967d1177184411885b3e64f
BLAKE2b-256 checksum
How to use checksums
4b2708b001f17e4e836ad206a041ddc01b003cd474cb949709ff0850eb043168
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.dev1768329600-cp310-cp310-macosx_11_0_arm64.whl

Download URL stim-1.16.dev1768329600-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
631998e07611f1aef26ac63534ca173ad5f70eafe4fe3702179665cade671279
BLAKE2b-256 checksum
How to use checksums
a4bca532a8a4a0a74208667d19dda6b8d06f4ed6bb95b1f3bce628ba440b565b
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.dev1768329600-cp310-cp310-macosx_10_9_x86_64.whl

Download URL stim-1.16.dev1768329600-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
cd4478c233adcf5681286b3d3a39e1b337a1a26f4446b0721307cc9845124f2a
BLAKE2b-256 checksum
How to use checksums
8600783106b62bb9b80867e7e5ac4a096115c41e59123314b6cccc0d1de8c741
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.dev1768329600-cp39-cp39-win_amd64.whl

Download URL stim-1.16.dev1768329600-cp39-cp39-win_amd64.whl
Size 2.8 MB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
d0a8cda08ec8b0076afaa7d81074782f839c0d2d86bcf2c8770d4740e1eacfbc
BLAKE2b-256 checksum
How to use checksums
65a1de113113bc389082290a2883b6219f94ab341c32300eb02618ad86426615
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.dev1768329600-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl

Download URL stim-1.16.dev1768329600-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Size 5.1 MB
Tags CPython 3.9 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
1b8569b6836575c011320e726cd61fccd0cf9e9c1f73cd4d88b527a3175559c2
BLAKE2b-256 checksum
How to use checksums
12e9c0c8f8ac8f29314f7a48e27d53c1ffc240a48671ceac026d36abec067682
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.dev1768329600-cp39-cp39-macosx_11_0_arm64.whl

Download URL stim-1.16.dev1768329600-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
97786d38f1c4781afa391d843554136ac3f86ff67b77b50b0b99615c300be428
BLAKE2b-256 checksum
How to use checksums
842f23b59507f7c1ac1fab9bac2567a8b49780774c3e27552479c0cf4c2e7cfe
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.dev1768329600-cp39-cp39-macosx_10_9_x86_64.whl

Download URL stim-1.16.dev1768329600-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
3cbec285fc06366d4c5e9681982c00079818297d065aea37e0f84b1b0cc09aa6
BLAKE2b-256 checksum
How to use checksums
2f09be62b235383f4cf268cda6b435e1893be5678144d01871aeb1f40ff2b6bb
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.dev1768329600-cp38-cp38-win_amd64.whl

Download URL stim-1.16.dev1768329600-cp38-cp38-win_amd64.whl
Size 2.7 MB
Tags CPython 3.8 Windows x86-64
SHA-256 checksum
How to use checksums
160b6b291e070584273a9b8b2ec6376d706e3bc651195224ef5b2cf3d9aea95b
BLAKE2b-256 checksum
How to use checksums
8f232f310b09a7954cf6ac3c5a6cdf52873edd30efaa9cf0a508ffacb929155d
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.dev1768329600-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl

Download URL stim-1.16.dev1768329600-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Size 5.1 MB
Tags CPython 3.8 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
549885b38b48f132a8da183b2327d168aa6dc33d4f52247d028be136204e5bb3
BLAKE2b-256 checksum
How to use checksums
2afcf3d584b1350c97b76b324bb4d8b1967de87a683443b59bde0e1fc588f338
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.dev1768329600-cp38-cp38-macosx_11_0_arm64.whl

Download URL stim-1.16.dev1768329600-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
753d7b09fdb722372ddd92970df0a8f80bac233604a24f16044caedd50225bdc
BLAKE2b-256 checksum
How to use checksums
9ae0c43e744698f59897a512132279740f0847251795102766b25b11304dc956
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.dev1768329600-cp38-cp38-macosx_10_9_x86_64.whl

Download URL stim-1.16.dev1768329600-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
9442589295321ed7f2c1835440317b74e12fbb33f6639f103f3030f10cd26b37
BLAKE2b-256 checksum
How to use checksums
2b1aa7d5b5ede7c7a292d79e5270cab6e8380aca4dba8375926b34fdef99e5b3
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