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

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

Built distributions (wheels)

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

Total release size: 87.7 MB

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

Download URL stim-1.16.dev1768463664.tar.gz
Size 876.4 kB
Tags Source
SHA-256 checksum
How to use checksums
62fbf4ea4cff26edb70ffab2656a02db7967ac38112a4f7eaa2e61b4241c439e
BLAKE2b-256 checksum
How to use checksums
c2f3983dd79df8ec6b8cd74017cea1da490ceff884b16f05236df000a0bdcf6f
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.dev1768463664-cp314-cp314-win_amd64.whl

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

Download URL stim-1.16.dev1768463664-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
924e978b33addc02c5a4bde2c640c59ab43a9ab3424231e578e23b418a27ad66
BLAKE2b-256 checksum
How to use checksums
0b4d17c7b3f109b15b1bcb8adcd14abed13cfa0161336cf5f3e19876808eee1f
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.dev1768463664-cp314-cp314-macosx_11_0_arm64.whl

Download URL stim-1.16.dev1768463664-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
54f4bb61acf04686815bc80fdcefc256d988f48ebba1a8b748278a612b83f9a0
BLAKE2b-256 checksum
How to use checksums
77290edf0cda52ab937ff28061fd87cd6553dcc306f6330a2bae03545bdcad64
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.dev1768463664-cp314-cp314-macosx_10_15_x86_64.whl

Download URL stim-1.16.dev1768463664-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
63ebe03bef6ca6e867ee62715853277b59be9f9316b9a8ba0efe59a22717e77a
BLAKE2b-256 checksum
How to use checksums
36d3d880b1e39cbf0c44f668250f4f8cb0dd1c622b98fe665b3c11032f65e5df
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.dev1768463664-cp313-cp313-win_amd64.whl

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

Download URL stim-1.16.dev1768463664-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
03cfc948213a34171d65645f292de41eb93ee1770efc3f210b1093bde9e269ba
BLAKE2b-256 checksum
How to use checksums
77ffe905e6b1d3328370764fad027bc0db0031174cdf7bdf0ef6504c5a5c4df6
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.dev1768463664-cp313-cp313-macosx_11_0_arm64.whl

Download URL stim-1.16.dev1768463664-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
a94158347fbfe7c208199b938466c8084e67fed6e56aa9f73b4dfa06692f6653
BLAKE2b-256 checksum
How to use checksums
9dd5871bffbc69ca4029ead9e393e1b6c120a9165bb8d9ab34d440a2eef30cd4
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.dev1768463664-cp313-cp313-macosx_10_13_x86_64.whl

Download URL stim-1.16.dev1768463664-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
41419c1ed417110b1f58bf39596a761c0d19817e347b7de2fe4a4c38d4b25bf7
BLAKE2b-256 checksum
How to use checksums
19a0a4fc01726a5070d961d2447065d8f2d06e9b277b97158fa13a3d131c0e8a
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.dev1768463664-cp312-cp312-win_amd64.whl

Download URL stim-1.16.dev1768463664-cp312-cp312-win_amd64.whl
Size 2.7 MB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
2e7b0a2cf920ab1812f298bb1ac4808b0e307487544b5404d0320144c6a1b1a3
BLAKE2b-256 checksum
How to use checksums
75194754506a91b1dce1260ae7700e199c7c59cfb7e80a860d1018bade391b83
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.dev1768463664-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl

Download URL stim-1.16.dev1768463664-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
1b2bb5edd5ae5df310e60f55ada0579bc46b91ae58fd7a2869b697493a0d3fc4
BLAKE2b-256 checksum
How to use checksums
750c4852c72b5d10b772b90e679e18cccf9ebce944a2e5c986f7b56709c0e8fe
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.dev1768463664-cp312-cp312-macosx_11_0_arm64.whl

Download URL stim-1.16.dev1768463664-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
633c8c3c5601e852e4d3871e7ad93117e27407ab1fb6b41b36fa3fa79697cac7
BLAKE2b-256 checksum
How to use checksums
708bcf8f9f88c868df57f20f1f1f3c8123594bf153f3f7c8c203d29dff7099fe
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.dev1768463664-cp312-cp312-macosx_10_13_x86_64.whl

Download URL stim-1.16.dev1768463664-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
0fd8abcd3b4c3a3c267f7bf8b1ea9d89bc82d74d6d175388781931313cce825a
BLAKE2b-256 checksum
How to use checksums
83369e0d51294a12b3a6ec7de5b30d54779c6a2f331b3f450e309df89e356a6b
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.dev1768463664-cp311-cp311-win_amd64.whl

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

Download URL stim-1.16.dev1768463664-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
9ddbaccea0f23a15c41cb5a9b9fcd9f1614ad82fd778393018026962a200b602
BLAKE2b-256 checksum
How to use checksums
ea3ccd44bbed4a8cc74478391185aa2729deae8a1871ce208f987a2159cbf19f
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.dev1768463664-cp311-cp311-macosx_11_0_arm64.whl

Download URL stim-1.16.dev1768463664-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
a5e38d51ebf3a21215955b7f4ed2e28b7a60339c41dfb0257b069f4647ea8dfb
BLAKE2b-256 checksum
How to use checksums
049a7be6e1ce20aacc41b2e4e91c22271c6219bd257a6c1d82eabb7839550e7f
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.dev1768463664-cp311-cp311-macosx_10_9_x86_64.whl

Download URL stim-1.16.dev1768463664-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
25fc74e893c666163f0d3bf4e2fd4c91935217c676de3a2ec78c4829935bc933
BLAKE2b-256 checksum
How to use checksums
a46785388f82d3b7ae836099440f4ca768fcb4def8567779d380df66378c3c67
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.dev1768463664-cp310-cp310-win_amd64.whl

Download URL stim-1.16.dev1768463664-cp310-cp310-win_amd64.whl
Size 2.7 MB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
8b9c45980c8507ce96bf3b1c3b6355b19bf4ef526224be5c0c1591a22c8ceb6d
BLAKE2b-256 checksum
How to use checksums
35145da535adabdf75b1c4a1e0e6a6d92fe8020582918f715f3087791b437eee
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.dev1768463664-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl

Download URL stim-1.16.dev1768463664-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
9286e733e227474974f19d7da700f6d425f29ff643460687c6a6e2c87f144afd
BLAKE2b-256 checksum
How to use checksums
7662f3d0282f8b649950bc0b6e98d461acaf282283a0797115715c6640e246c1
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.dev1768463664-cp310-cp310-macosx_11_0_arm64.whl

Download URL stim-1.16.dev1768463664-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
4836c4fbdab3268866ce754ab4f1f25b7ad85bb07f2112ad7a8995133ffbfe15
BLAKE2b-256 checksum
How to use checksums
2b6c01b04c3aa851235a21cc8de8c8fda6634f80f6bf93e9af089d49eee38df4
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.dev1768463664-cp310-cp310-macosx_10_9_x86_64.whl

Download URL stim-1.16.dev1768463664-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
087235b87e90b29b17165593c01340143353a04f48d4063714f2deb3c897dcd6
BLAKE2b-256 checksum
How to use checksums
02a2b6fd7bbf2bbd2af46f35d3e34485660ee3fccc3f3ef7b5dd7b314d8c6788
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.dev1768463664-cp39-cp39-win_amd64.whl

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

Download URL stim-1.16.dev1768463664-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
ab81316b1ea7ed5914ae0f6538eb96b302cc40d5ab0f51fcce25e45fb205dde7
BLAKE2b-256 checksum
How to use checksums
949290fb0fe04a9ad8bc16d3ed35cc60db429a041f874836b6fe49ad22c5acb5
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.dev1768463664-cp39-cp39-macosx_11_0_arm64.whl

Download URL stim-1.16.dev1768463664-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
3b03a90f0bda58494fedbd117c5a6bb0e04dadfdcf3d9e9839eb2aefc47d8ff7
BLAKE2b-256 checksum
How to use checksums
783c515eca6f69bf708ed76a16fb82cd1e96e972a28354be2aaa1ca3932679e2
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.dev1768463664-cp39-cp39-macosx_10_9_x86_64.whl

Download URL stim-1.16.dev1768463664-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
ce1249073e60708e61cea76f6ddd26a10892d947dd6a7501049014f256a764c5
BLAKE2b-256 checksum
How to use checksums
c9b9c312fe140caa7f90f620f7fdd58c4440a1768319118038151fe410166f4d
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.dev1768463664-cp38-cp38-win_amd64.whl

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

Download URL stim-1.16.dev1768463664-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
7939ff0f71d0abae95166f8a04e02562663a1f839349951c6ef659f6c48248b6
BLAKE2b-256 checksum
How to use checksums
4192ad0df733eebc918e7c7b7e9e974579cea1ce36bf2a39b50d9ee2a7f9103c
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.dev1768463664-cp38-cp38-macosx_11_0_arm64.whl

Download URL stim-1.16.dev1768463664-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
de4b0ad39701ce455586005c5856638b7ebd74a0ac526a7d75c81ff68e566c28
BLAKE2b-256 checksum
How to use checksums
184435c2c3e18551068bfd4f7deb7cbfdd43e8c6fa87e765f083ad3eea07bc37
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.dev1768463664-cp38-cp38-macosx_10_9_x86_64.whl

Download URL stim-1.16.dev1768463664-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
c2e69028aff20751acb3c644a1d9c7a131894fcfc385995930682b7754cf5972
BLAKE2b-256 checksum
How to use checksums
78cb88d093f56d7953cacba15daa7940051f18d6c98f2546ac0c32ad71195844
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