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

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

Built distributions (wheels)

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

Total release size: 88.1 MB

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

Download URL stim-1.16.dev1768553279.tar.gz
Size 879.5 kB
Tags Source
SHA-256 checksum
How to use checksums
8d371fbee04abf756d2eb705ba660bb1782e031abdf4b840117cdc08958c50d1
BLAKE2b-256 checksum
How to use checksums
170ba019bda4937d56613437d90d8155f6ba18be6dbfb271e12e60e3a9b10a8a
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.dev1768553279-cp314-cp314-win_amd64.whl

Download URL stim-1.16.dev1768553279-cp314-cp314-win_amd64.whl
Size 2.8 MB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
dc9a5884ad885541997f4776def82e9eaf0c07ef83939b0397c5f2b154b4f39e
BLAKE2b-256 checksum
How to use checksums
87a740fffe034dcc79a340250d0a31327b531794a6f9caeaa28f1f63751dac4b
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.dev1768553279-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl

Download URL stim-1.16.dev1768553279-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Size 5.3 MB
Tags CPython 3.14 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
2e25f9c6cc943c2247bb485c6087958e460f0b6dbd65f7cad385b3f8f2db0ba3
BLAKE2b-256 checksum
How to use checksums
03210b54c6aeeafe2782b62b38d5c4ff76d6481a36089e314c2b6eb3c9fe7031
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.dev1768553279-cp314-cp314-macosx_11_0_arm64.whl

Download URL stim-1.16.dev1768553279-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
77a2dbecfa4d9c75c7e4054105c6b3b35e09e0e7fd549041e2da8ec361981bbc
BLAKE2b-256 checksum
How to use checksums
ac42aa528b7dc7e995de8c06f027ae61cab48e35826b4c4765257c754b651f86
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.dev1768553279-cp314-cp314-macosx_10_15_x86_64.whl

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

Download URL stim-1.16.dev1768553279-cp313-cp313-win_amd64.whl
Size 2.7 MB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
ae9fe3274161b422a952cef5cc723693534e73baa9883281395fe1312e307770
BLAKE2b-256 checksum
How to use checksums
81b033b7aa42be42c9203273501ff80d7b0dfd420e85a94a469f02ff676436a4
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.dev1768553279-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl

Download URL stim-1.16.dev1768553279-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Size 5.3 MB
Tags CPython 3.13 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
6387e64c2776f787646bc2668fd615b7611576bfbecf502d1bc4f810d79865c3
BLAKE2b-256 checksum
How to use checksums
da5c5183f8ff627749dac1de6498b1bd61538856e8b2b59c2849bd41bcfb6552
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.dev1768553279-cp313-cp313-macosx_11_0_arm64.whl

Download URL stim-1.16.dev1768553279-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
6b99774de85e2c730b6af5cae09dc1fb57ff93189a539a7c69d0f2b2ac28f613
BLAKE2b-256 checksum
How to use checksums
421725bdea3e23a96358761382d772040c3263eb81d196ab15b687e85700724a
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.dev1768553279-cp313-cp313-macosx_10_13_x86_64.whl

Download URL stim-1.16.dev1768553279-cp313-cp313-macosx_10_13_x86_64.whl
Size 2.1 MB
Tags CPython 3.13 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
765853d6e890c4040bfe52d9783b6e038f052c393f4b1c62a2b8a70991b41ae8
BLAKE2b-256 checksum
How to use checksums
b84c838efd4d28a8c524219709fd5f49e33017d6876d858948b5bbe12285dd83
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.dev1768553279-cp312-cp312-win_amd64.whl

Download URL stim-1.16.dev1768553279-cp312-cp312-win_amd64.whl
Size 2.7 MB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
9193bbc730378990446db4bc80f4cd33ca6bd7163a545f5eb767924995cbf85e
BLAKE2b-256 checksum
How to use checksums
583c5af4930484a02efa8a3bcbc8da54bc3cc96ef07390dea1c2ff2a0e29f1eb
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.dev1768553279-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl

Download URL stim-1.16.dev1768553279-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Size 5.3 MB
Tags CPython 3.12 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
e96a814e70bf86a5cd8a7fe770a736e46faff39e4ea01ef8970bd4cda53471c3
BLAKE2b-256 checksum
How to use checksums
6ef00361401cebc3fb24b8c86bf8a4bb263438cb10c533494ff144edeea9fd6d
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.dev1768553279-cp312-cp312-macosx_11_0_arm64.whl

Download URL stim-1.16.dev1768553279-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
c625723443db343926ad832a59272abd5723f35032b191734a7972310f71144b
BLAKE2b-256 checksum
How to use checksums
212526c31051d1b4ce84938c79b0613b187d934febed038a0988ea52db23bf90
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.dev1768553279-cp312-cp312-macosx_10_13_x86_64.whl

Download URL stim-1.16.dev1768553279-cp312-cp312-macosx_10_13_x86_64.whl
Size 2.1 MB
Tags CPython 3.12 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
ca5ca4d9c110044b6ddb841f3821c81abf7bb0a750def54b7e542c924a4d96a5
BLAKE2b-256 checksum
How to use checksums
fb1f3d55055b877c9be9106c072843a4332b12d32b45c82ca7541a963c7c34b4
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.dev1768553279-cp311-cp311-win_amd64.whl

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

Download URL stim-1.16.dev1768553279-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Size 5.2 MB
Tags CPython 3.11 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
abcc3721631e076fdecef03b6ba62b97098a9269d80724f4a0bed384df70ab55
BLAKE2b-256 checksum
How to use checksums
8d7b62f7dd747d4e9aaade1138c6aa15a07bb5c116492935dc805b4665229c4a
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.dev1768553279-cp311-cp311-macosx_11_0_arm64.whl

Download URL stim-1.16.dev1768553279-cp311-cp311-macosx_11_0_arm64.whl
Size 1.9 MB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
735ca90d49d76a7a48ea70f23280bd2b2bd02249f561028bf94339dd4422f192
BLAKE2b-256 checksum
How to use checksums
f1d7722aeab64a4cb3ebd3546a415032b048a0a44f24c634ce31752b5b31e2e8
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.dev1768553279-cp311-cp311-macosx_10_9_x86_64.whl

Download URL stim-1.16.dev1768553279-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
df84dd0d070e0fcbcaeb811274ebdb677dc9211e9e9887634beba08cbe603a81
BLAKE2b-256 checksum
How to use checksums
f5a8629481eeeba4397e15c840e6f3ecf5af83ef84a97ce09a100c0be766d763
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.dev1768553279-cp310-cp310-win_amd64.whl

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

Download URL stim-1.16.dev1768553279-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Size 5.2 MB
Tags CPython 3.10 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
d97e3af9bb89ac340702195f7b45ea3d86f16f5c3e6f192af06cc0be5f9eece8
BLAKE2b-256 checksum
How to use checksums
96f4362d3dfad5b5fb9f65c80257a1ad7217eb2dac4f93516695dc5604f71498
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.dev1768553279-cp310-cp310-macosx_11_0_arm64.whl

Download URL stim-1.16.dev1768553279-cp310-cp310-macosx_11_0_arm64.whl
Size 1.9 MB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
60fab9d508115e592e112b0a2c4fdbe268e95d8aabf54a00c7891c0d41beb4a9
BLAKE2b-256 checksum
How to use checksums
efcbd7b5db5487cd2bc0b25533ff4dbfd66335b626614fec5cbbf48dc78468eb
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.dev1768553279-cp310-cp310-macosx_10_9_x86_64.whl

Download URL stim-1.16.dev1768553279-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
3816d890edbb9101fa24214cd6a7d3f13b9f6b58f761723eeb0a01f3d3d23385
BLAKE2b-256 checksum
How to use checksums
30b4e9225bc2f7a9dbbfceb9c15cb3844b7ac1bc7c69ea29e33a0c8d3ae9b4c5
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.dev1768553279-cp39-cp39-win_amd64.whl

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

Download URL stim-1.16.dev1768553279-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Size 5.2 MB
Tags CPython 3.9 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
92f773a6ac65cc9d83c9076ca773abd0e554730749ac957b8221d2fd9d183274
BLAKE2b-256 checksum
How to use checksums
3098961e6fd9a1e2a3874625cc62ff17ce3f5df90f5eccfcc254fb67671e3616
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.dev1768553279-cp39-cp39-macosx_11_0_arm64.whl

Download URL stim-1.16.dev1768553279-cp39-cp39-macosx_11_0_arm64.whl
Size 1.9 MB
Tags CPython 3.9 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
34bc19a35c03eea6680ccc18fa42692995ec907c91d30c2ef6c8623bcf44ee66
BLAKE2b-256 checksum
How to use checksums
ac4d1021120ec478eee4762a571ec032305e396f07ee2bbb499d2c943fbb3d65
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.dev1768553279-cp39-cp39-macosx_10_9_x86_64.whl

Download URL stim-1.16.dev1768553279-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
3abc86169e3272bbfe678a3cb1accbe5ccb050b12b1144c774568554c9611758
BLAKE2b-256 checksum
How to use checksums
664b91f1b15a1b709afc6f6ef3fca8520fa0f3f74d024c7b29afd074a1bb25b6
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.dev1768553279-cp38-cp38-win_amd64.whl

Download URL stim-1.16.dev1768553279-cp38-cp38-win_amd64.whl
Size 2.7 MB
Tags CPython 3.8 Windows x86-64
SHA-256 checksum
How to use checksums
4d99aed1e22c3e4bf32f3c2af5c2cd0271778e608b79673778315b2714e764d0
BLAKE2b-256 checksum
How to use checksums
cd99035f775858ab381ad9828ca8504af1128982164934ca54b1e24e68a9a5a2
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.dev1768553279-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl

Download URL stim-1.16.dev1768553279-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Size 5.2 MB
Tags CPython 3.8 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
271e451dff96675a4091d6549e54973433e1fdcb4ea62523ff3221d9fa0c7ab6
BLAKE2b-256 checksum
How to use checksums
6a96e02559d81d2384c1b68b89b6324018269fe9dbd55a7fb0ae51fa4e46a9f7
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.dev1768553279-cp38-cp38-macosx_11_0_arm64.whl

Download URL stim-1.16.dev1768553279-cp38-cp38-macosx_11_0_arm64.whl
Size 3.6 MB
Tags CPython 3.8 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
9d7685146671d6360801f2afbd4f2022c52c31ed1424209d83a740637dfd005f
BLAKE2b-256 checksum
How to use checksums
cb4d626884820e1114b02a19deb26ac14f898820517613853770bf6eb038e3f0
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.dev1768553279-cp38-cp38-macosx_10_9_x86_64.whl

Download URL stim-1.16.dev1768553279-cp38-cp38-macosx_10_9_x86_64.whl
Size 3.9 MB
Tags CPython 3.8 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
c51d3dae4a2c1e763458ffe4e76db9ef6334393e46192efa8c2e0cf3186aad59
BLAKE2b-256 checksum
How to use checksums
a5b9d32426a9b0b0d22ba00038d53c7bf3b78420eb2d542ce45ee807cd976fa3
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