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

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

Built distributions (wheels)

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

Total release size: 87.9 MB

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

Download URL stim-1.16.dev1768525144.tar.gz
Size 877.9 kB
Tags Source
SHA-256 checksum
How to use checksums
4dd290aa734b8753bbc498bb75d834ec0114b4df952b0f35cec57111ebad5e66
BLAKE2b-256 checksum
How to use checksums
d670558e853e1971c9193526b6c1481d7e66efc54a0afcfaf235a59b15b67a54
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.dev1768525144-cp314-cp314-win_amd64.whl

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

Download URL stim-1.16.dev1768525144-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
df95a7995daa9b905283758259ec50de0e3b862babd5b846d86dd0b64612ca30
BLAKE2b-256 checksum
How to use checksums
8440890ef456024932124a8be7b5b121f918547607b269694bf6bc2b51b81f65
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.dev1768525144-cp314-cp314-macosx_11_0_arm64.whl

Download URL stim-1.16.dev1768525144-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
b49832c9dad6597576ad798eb7fed58dc78ad332c366e8a291bfd7b176656023
BLAKE2b-256 checksum
How to use checksums
85f84b484e7a67a8650215a7d42416d35fbcbeb3b761ab9fc59a2a8e18b373fb
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.dev1768525144-cp314-cp314-macosx_10_15_x86_64.whl

Download URL stim-1.16.dev1768525144-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
083249a58cc9b81a74cd6f5d950ef9c96b5e8103a9748bca0e60a8f05418d00e
BLAKE2b-256 checksum
How to use checksums
b79aa773e71682e3c41f87dd81149b6f21191dcff6ced76805ef55d82414a653
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.dev1768525144-cp313-cp313-win_amd64.whl

Download URL stim-1.16.dev1768525144-cp313-cp313-win_amd64.whl
Size 2.7 MB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
740c08ca7b56a3a8f90098616b029129c5f435f3e1ee1aa36a764df22feecfbc
BLAKE2b-256 checksum
How to use checksums
1048b28e431b8f8188ca9c7868d4a5504c6626e7ca7af6e01e38f9e05d293712
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.dev1768525144-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl

Download URL stim-1.16.dev1768525144-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
a69eae7e3f85823a1b2509f344e70801da28302939916ab070243a85ba135cab
BLAKE2b-256 checksum
How to use checksums
4c702068d2195912a3b0681d6ece9be2bdaad58b0700d472ed0e2a2261978af8
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.dev1768525144-cp313-cp313-macosx_11_0_arm64.whl

Download URL stim-1.16.dev1768525144-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
3fd54e15aea0a66bd7403e77617f8f0c95ddbc30cb12056934fcfd2d39974cfa
BLAKE2b-256 checksum
How to use checksums
703ec299ff9d99d6f36bd3309966df38773f06863dd8c1d39e385608b6ec9aae
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.dev1768525144-cp313-cp313-macosx_10_13_x86_64.whl

Download URL stim-1.16.dev1768525144-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
ca71e15fdf4025f6ed245ff4bd7f03ce3422a41b3b1a2129269d836deca2969c
BLAKE2b-256 checksum
How to use checksums
fcc291d1acec8798841ca66e4afe120123532f66620ec7f61dfbde342608d533
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.dev1768525144-cp312-cp312-win_amd64.whl

Download URL stim-1.16.dev1768525144-cp312-cp312-win_amd64.whl
Size 2.7 MB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
8c551624b5af3fe8521a63d9b919c57124fc163abdcee6fbd9db76d06eb3b7ff
BLAKE2b-256 checksum
How to use checksums
043ccb3fb6c74dc5d175dc090883bcc401f7646168989a70284e296dc0168956
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.dev1768525144-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl

Download URL stim-1.16.dev1768525144-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
1bfda310c6482b7530e4e23a69903dfb8ad99a8ffcc8aee203247b9048e02eff
BLAKE2b-256 checksum
How to use checksums
25542438be0074e0730c203fbc6b73f5eec04dde0e4d049c3c35233b26fd713f
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.dev1768525144-cp312-cp312-macosx_11_0_arm64.whl

Download URL stim-1.16.dev1768525144-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
ab600e39430810336a60f5ad8973b95ba6e88e87ee5b22edfc6bebfef6260b24
BLAKE2b-256 checksum
How to use checksums
45aceae98ed51d9277e8f4befb40be3199ed2a81a39a9c107175a71e65f30c43
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.dev1768525144-cp312-cp312-macosx_10_13_x86_64.whl

Download URL stim-1.16.dev1768525144-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
0038bc64df5c0d646253f48b1b3680978bec3da3e1b95c9397f5300c54693bd5
BLAKE2b-256 checksum
How to use checksums
d980319635a02398a20e25660d11aca14f7cbf37a26bfed056102cc753b623e3
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.dev1768525144-cp311-cp311-win_amd64.whl

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

Download URL stim-1.16.dev1768525144-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
06d7a05067a41995bd365f30732cff52271aba6cc21a7bcd490fbc2515426a1d
BLAKE2b-256 checksum
How to use checksums
89bb32c1a693736df10c49d3e2f2a6f3c481658109418549e9c8ff9a5fd498f6
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.dev1768525144-cp311-cp311-macosx_11_0_arm64.whl

Download URL stim-1.16.dev1768525144-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
8afcd43c69eaf44fbaab4ae93c44fe328c2bdc2a82179ce27a4235c5ff908995
BLAKE2b-256 checksum
How to use checksums
58d5da2082312b9da0523b1d1d09d76392b4d4a48cb602221be692921ec74027
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.dev1768525144-cp311-cp311-macosx_10_9_x86_64.whl

Download URL stim-1.16.dev1768525144-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
c207b520875225c1d7974d6edababbf68e34e3c04678922ed20bd99c6e18e462
BLAKE2b-256 checksum
How to use checksums
f556e2ee2b4012ac75d5b0d07ba16fbe1156d5cc9f7fe2c9df69cdcd12ce5aa1
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.dev1768525144-cp310-cp310-win_amd64.whl

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

Download URL stim-1.16.dev1768525144-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
48d8232851f075ef06b0aad21bbba4227206496432031913e9e7dd6b213a2274
BLAKE2b-256 checksum
How to use checksums
34d35342a3416c80d9133b269c3c157140fca04f789b88dbef1908adabb1dc52
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.dev1768525144-cp310-cp310-macosx_11_0_arm64.whl

Download URL stim-1.16.dev1768525144-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
6f38acb4eebbe351dd6140756a1e3b7cacf9c74f55956fa62b5625e48b2416c1
BLAKE2b-256 checksum
How to use checksums
dcd1d9e871c7231549c99fdc62d6067bb56a2c2b4afe32b6948288d2293f4431
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.dev1768525144-cp310-cp310-macosx_10_9_x86_64.whl

Download URL stim-1.16.dev1768525144-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
246f941de331d9adda2409383b1f2521b5b92d31455d945a14b5367ef7ff301f
BLAKE2b-256 checksum
How to use checksums
0d639f467b6c5a7193ba7d43fee741c2ed93e1d1e4c67bacc9cc55a7a7f1365e
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.dev1768525144-cp39-cp39-win_amd64.whl

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

Download URL stim-1.16.dev1768525144-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
ce4636e0006205cd153f64347d574cf864596bcad9898b5bf413941f1dbf50f9
BLAKE2b-256 checksum
How to use checksums
e11a4ae9bbb827380eee26f0798977ea4cc62b2e4bd414895a3d7c7047842b97
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.dev1768525144-cp39-cp39-macosx_11_0_arm64.whl

Download URL stim-1.16.dev1768525144-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
eece64a903fa23bcda8589d71f57fdbbc6fdeb1ad56cdb7fcacced20b0e6b822
BLAKE2b-256 checksum
How to use checksums
4468ca8a7d6017724ad58daeb759461ebbf1b4fcbefcd565a7ccf4fa7e4ee77e
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.dev1768525144-cp39-cp39-macosx_10_9_x86_64.whl

Download URL stim-1.16.dev1768525144-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
289e3a1ebf963f0b288e3e562476a6240cab7adc5bedfcfe8026d69bfcf2decb
BLAKE2b-256 checksum
How to use checksums
cc2a673a8f51ea0efac6a7d78212bee55ddc17f75379a70bbb986586359b8405
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.dev1768525144-cp38-cp38-win_amd64.whl

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

Download URL stim-1.16.dev1768525144-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
a06170db8e640438aab6d7d0c3c5f00ed01896960caa5fef4fb0670ffcfe8768
BLAKE2b-256 checksum
How to use checksums
b50931ff5258f3a6e29129aac0e1f24fc23a8063d82377e638d1038f70c1b7db
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.dev1768525144-cp38-cp38-macosx_11_0_arm64.whl

Download URL stim-1.16.dev1768525144-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
0974dc62b9581d2c4eccf9845ef8eef19be0e056536084496cb81081e6e1b1dd
BLAKE2b-256 checksum
How to use checksums
e3f225cb260012570f37f0dd6ecdb3bde88f00c1b8e873004e5e7df9c50683c6
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.dev1768525144-cp38-cp38-macosx_10_9_x86_64.whl

Download URL stim-1.16.dev1768525144-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
7bbbd040a6228623a811637ae734b9591b359095a7ccd72867d5e18dab357b86
BLAKE2b-256 checksum
How to use checksums
20b7a42e0e1b86e3d75fe1c6c2a96405a4b9d8dcc72032992dc428513a886c2e
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