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

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

Built distributions (wheels)

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

Total release size: 85.9 MB

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

Download URL stim-1.16.dev1779417207.tar.gz
Size 882.6 kB
Tags Source
SHA-256 checksum
How to use checksums
d2e226843725ef92dd4a8e7737836a70ae6a955d52c355750aacafb035496bcc
BLAKE2b-256 checksum
How to use checksums
a8272b6ca1b19a5f06bc32784a6bfd70b0d5c65a3837097eee92523959f12ab3
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.dev1779417207-cp314-cp314-win_amd64.whl

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

Download URL stim-1.16.dev1779417207-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
7fc71ffd3195a874993b376db8d7526102f20b5c5e8171c2c9eb2c7220329e6a
BLAKE2b-256 checksum
How to use checksums
3b01f36cf0c74966a04268816c809047ec0a3ba64c9351e54af3da92aaf3d693
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.dev1779417207-cp314-cp314-macosx_11_0_arm64.whl

Download URL stim-1.16.dev1779417207-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
0c9db5083de3eb3e503bd4b8f6e9c3f98607cdf6f7cd7aa0d7cf352337d88c18
BLAKE2b-256 checksum
How to use checksums
a2160bb989d8d6be05611a8f1af8491ac5ebefd47c55f4069477766980b8399f
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.dev1779417207-cp314-cp314-macosx_10_15_x86_64.whl

Download URL stim-1.16.dev1779417207-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
9142d94e15f6968b9ac4734cf4393e16df5ad572b972f5a03dd956443ff30fa0
BLAKE2b-256 checksum
How to use checksums
5a1a8bd1123a86c8b1583596ebc012a56d4488cb86edb9d165b3432654914dcd
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.dev1779417207-cp313-cp313-win_amd64.whl

Download URL stim-1.16.dev1779417207-cp313-cp313-win_amd64.whl
Size 2.8 MB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
5d9fe96c39836fc131396df4927aa2bf72320d44672c37a168c232cc716557b0
BLAKE2b-256 checksum
How to use checksums
91b946541a314f2d0cdec0faf75a6f2423bc8ec01a7aa0c73c4a5f09461e2840
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.dev1779417207-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl

Download URL stim-1.16.dev1779417207-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
55c6cfa445ffe78fba7b3c683fecbe0bfd5b6980485e49909cb7b416bdafc5f5
BLAKE2b-256 checksum
How to use checksums
5e27aa55a24885772b04d89e5b55355f9b94cb5d834adb02f1db7d038d8bb7d7
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.dev1779417207-cp313-cp313-macosx_11_0_arm64.whl

Download URL stim-1.16.dev1779417207-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
507d1aeba3c3d8091d5e2fee33a32168ce4fc1a88d56e31c372c817226dd1fd0
BLAKE2b-256 checksum
How to use checksums
d8b7407a8eede3228a8a78e0d884552e9bc00be44303f3a6772e20af1df10535
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.dev1779417207-cp313-cp313-macosx_10_13_x86_64.whl

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

Download URL stim-1.16.dev1779417207-cp312-cp312-win_amd64.whl
Size 1.5 MB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
7cd53dea9f66b8096b7c98ec2be2bba5883d4b6fb533490caed917c4e742bb5b
BLAKE2b-256 checksum
How to use checksums
5f8eac335d1f8e60af9268a85ec6c3da9679d26a2d0a0f898dccc02925874e12
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.dev1779417207-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl

Download URL stim-1.16.dev1779417207-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
57005b855fc33a757768ed356d602ee3eec3a4ad9b48f21d68c1448239136e45
BLAKE2b-256 checksum
How to use checksums
b258a5f000a3f5cd1e02d308e693744453d888ebff7c3fcd894fdd941997c50f
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.dev1779417207-cp312-cp312-macosx_11_0_arm64.whl

Download URL stim-1.16.dev1779417207-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
8c2e90ce8393e068ed63affb50502dbf35fe87b74282f6425fff91bbf682f95a
BLAKE2b-256 checksum
How to use checksums
265f8a75bfdef77736ebabf956f0f5a5b4697379165ca50273e360117610fe2f
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.dev1779417207-cp312-cp312-macosx_10_13_x86_64.whl

Download URL stim-1.16.dev1779417207-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
fff0d1c75f5e09b2f2b13af487062e0814103a5a8b3c7b616e91ebe51d228fbe
BLAKE2b-256 checksum
How to use checksums
1d3afb26b2ae6ee98fc42bedc31bd374c2785928bed557482adfd2813c26650e
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.dev1779417207-cp311-cp311-win_amd64.whl

Download URL stim-1.16.dev1779417207-cp311-cp311-win_amd64.whl
Size 1.5 MB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
7d9a27c9d9546cb85db0a1c7de3866b420385a6255d139169943e8a32591b4d8
BLAKE2b-256 checksum
How to use checksums
1925d09ecc0a3344e3ed6b16010e4dbbed5c30ae26741ca1ac9b22c6e9eb5dca
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.dev1779417207-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl

Download URL stim-1.16.dev1779417207-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
ac29c80187faee7456bc0c65d9dd25f82c3e7aea82c9b1952fdcc1b314313091
BLAKE2b-256 checksum
How to use checksums
5c9a30197401606e7a6c6b96e26b7f3b81ddfb64473b0991ef9ac5a9670b0c03
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.dev1779417207-cp311-cp311-macosx_11_0_arm64.whl

Download URL stim-1.16.dev1779417207-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
3fc5b7a8b7379379ed945ab7bda84ea64f612e9bd6189003efafd01d0677acea
BLAKE2b-256 checksum
How to use checksums
297ec566dae9ac8f3cccd79cdc08371848d80aa0b8efe2b73b2acd8185618c19
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.dev1779417207-cp311-cp311-macosx_10_9_x86_64.whl

Download URL stim-1.16.dev1779417207-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
413b9aee7f335a9937cea8c04a19305b40f93bc18a4a3eef8e960c3993d8f03a
BLAKE2b-256 checksum
How to use checksums
62409c0c2996c2b878823302906c6a1e637642ab1e4bf5099d815eb2e53bcb07
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.dev1779417207-cp310-cp310-win_amd64.whl

Download URL stim-1.16.dev1779417207-cp310-cp310-win_amd64.whl
Size 2.8 MB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
2ea1d482ae242b244955e7a9fd23cfc4f9c49c38ad7c085828a252ee3e91bcaf
BLAKE2b-256 checksum
How to use checksums
a94400e617b6b36284b1918bfbc1780e21911ac19351c6ce35dfdd81b6d120fb
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.dev1779417207-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl

Download URL stim-1.16.dev1779417207-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
527009e3185110bed9347a922488d50fcf657d6e18fd8778ecaaabb39ee543c4
BLAKE2b-256 checksum
How to use checksums
38b4b2b5781bed3e8e2da96c3bb3070617068eeed106ebf8e9f8cddfd70afa14
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.dev1779417207-cp310-cp310-macosx_11_0_arm64.whl

Download URL stim-1.16.dev1779417207-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
52e3176e2947c5cb16d9e0f9e71f7f245342b39964d8b73b34b382c3bf7f46db
BLAKE2b-256 checksum
How to use checksums
d68805a4d56db19d3852affc94f974f32da575155199908d140d5c3ac6fa870f
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.dev1779417207-cp310-cp310-macosx_10_9_x86_64.whl

Download URL stim-1.16.dev1779417207-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
7bc71e686c1f6fc3c3c0e57cd96389898c8358d91f09c9c3df38ecb2d561c594
BLAKE2b-256 checksum
How to use checksums
221a892f86231c81c71364396a24c99508aa828fe03381c32f5d08d0c7416f32
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.dev1779417207-cp39-cp39-win_amd64.whl

Download URL stim-1.16.dev1779417207-cp39-cp39-win_amd64.whl
Size 2.8 MB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
180befdc05f3a689111e75b8ec59c2a40002e5c7dd719c4fbd91d44b6a958fb6
BLAKE2b-256 checksum
How to use checksums
6e666398950ad39f94a13c9d42b4835c3c42df14380d09c14c466fbbd8b441aa
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.dev1779417207-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl

Download URL stim-1.16.dev1779417207-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
d16637fee0aef0610cdaba85fb8321262ffcdf93f7d3c480a4dd63edcada3ef9
BLAKE2b-256 checksum
How to use checksums
61da20cb43cfc76fe356b072dc5170154889d1a7b7bcaacbf8cfd569f339314d
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.dev1779417207-cp39-cp39-macosx_11_0_arm64.whl

Download URL stim-1.16.dev1779417207-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
5dc426be2c56084543422f8fffe10059c3048f079f0a16272b849693ab998afc
BLAKE2b-256 checksum
How to use checksums
989ca3cba918f1c30cadcfd88c0a7478a362fe64feff38f57fb41a9e6b6fadf7
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.dev1779417207-cp39-cp39-macosx_10_9_x86_64.whl

Download URL stim-1.16.dev1779417207-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
1da02afa7d1852b2ff40d541c83e3c5e5e1e6cea5392d4516c2222a198a6104d
BLAKE2b-256 checksum
How to use checksums
4c125244b78969f00aaf7b250f45524b73e13b016390d425598483effad61b5e
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.dev1779417207-cp38-cp38-win_amd64.whl

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

Download URL stim-1.16.dev1779417207-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
66c9eee2fb960b677ec9d38f5fd13ebacad966ea5076c936d29e4cdcdc3ab791
BLAKE2b-256 checksum
How to use checksums
015ea4c6686840fa06ce6cf79ec0da0fa85ffad5204d9cd997ba4488a4365372
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.dev1779417207-cp38-cp38-macosx_11_0_arm64.whl

Download URL stim-1.16.dev1779417207-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
549e49a675e58be16e89e577b9d94aaeb8fef7fbbe7c2f69695b143a00abc1c8
BLAKE2b-256 checksum
How to use checksums
54dedc35f516a1553a1e80ceb2749faae5da024da2d54b4c6679b57874070f29
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.dev1779417207-cp38-cp38-macosx_10_9_x86_64.whl

Download URL stim-1.16.dev1779417207-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
1bf195be234dcbf968b1a9eb803a0e8a0f32279f8ee579d51cfeb5a7572ba82d
BLAKE2b-256 checksum
How to use checksums
3be8a4ef4a0d750dcdbdfd1d54b40e2fd571d9d44fa12b0e1e1f4c6afb870eac
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