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.15.dev1745383124

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.15.dev1745383124
File Size Uploaded
stim-1.15.dev1745383124.tar.gz 846.1 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for stim 1.15.dev1745383124
File
stim-1.15.dev1745383124-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ x86-64 Details
stim-1.15.dev1745383124-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
stim-1.15.dev1745383124-cp313-cp313-macosx_10_13_x86_64.whl CPython 3.13 CPython 3.13 macOS 10.13+ x86-64 Details
stim-1.15.dev1745383124-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
stim-1.15.dev1745383124-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ x86-64 Details
stim-1.15.dev1745383124-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
stim-1.15.dev1745383124-cp312-cp312-macosx_10_13_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.13+ x86-64 Details
stim-1.15.dev1745383124-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
stim-1.15.dev1745383124-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-64 Details
stim-1.15.dev1745383124-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
stim-1.15.dev1745383124-cp311-cp311-macosx_10_9_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.9+ x86-64 Details
stim-1.15.dev1745383124-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
stim-1.15.dev1745383124-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-64 Details
stim-1.15.dev1745383124-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
stim-1.15.dev1745383124-cp310-cp310-macosx_10_9_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.9+ x86-64 Details
stim-1.15.dev1745383124-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
stim-1.15.dev1745383124-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ x86-64 Details
stim-1.15.dev1745383124-cp39-cp39-macosx_11_0_arm64.whl CPython 3.9 CPython 3.9 macOS 11.0+ ARM64 Details
stim-1.15.dev1745383124-cp39-cp39-macosx_10_9_x86_64.whl CPython 3.9 CPython 3.9 macOS 10.9+ x86-64 Details
stim-1.15.dev1745383124-cp38-cp38-win_amd64.whl CPython 3.8 CPython 3.8 Windows x86-64 Details
stim-1.15.dev1745383124-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ x86-64 Details
stim-1.15.dev1745383124-cp38-cp38-macosx_11_0_arm64.whl CPython 3.8 CPython 3.8 macOS 11.0+ ARM64 Details
stim-1.15.dev1745383124-cp38-cp38-macosx_10_9_x86_64.whl CPython 3.8 CPython 3.8 macOS 10.9+ x86-64 Details
stim-1.15.dev1745383124-cp37-cp37m-win_amd64.whl CPython 3.7 CPython 3.7 pymalloc Windows x86-64 Details
stim-1.15.dev1745383124-cp37-cp37m-win32.whl CPython 3.7 CPython 3.7 pymalloc Windows x86-32 Details
stim-1.15.dev1745383124-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-64 Details
stim-1.15.dev1745383124-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-32 Details
stim-1.15.dev1745383124-cp37-cp37m-macosx_10_9_x86_64.whl CPython 3.7 CPython 3.7 pymalloc macOS 10.9+ x86-64 Details
stim-1.15.dev1745383124-cp36-cp36m-win_amd64.whl CPython 3.6 CPython 3.6 pymalloc Windows x86-64 Details
stim-1.15.dev1745383124-cp36-cp36m-win32.whl CPython 3.6 CPython 3.6 pymalloc Windows x86-32 Details
stim-1.15.dev1745383124-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ x86-64 Details
stim-1.15.dev1745383124-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ x86-32 Details
stim-1.15.dev1745383124-cp36-cp36m-macosx_10_9_x86_64.whl CPython 3.6 CPython 3.6 pymalloc macOS 10.9+ x86-64 Details

Total release size: 107.4 MB

Release files / stim-1.15.dev1745383124.tar.gz

Download URL stim-1.15.dev1745383124.tar.gz
Size 846.1 kB
Tags Source
SHA-256 checksum
How to use checksums
2c467d5ce1c683ea8d2078fb5b120296ecfebca802173a6d955c6d44a2b561bb
BLAKE2b-256 checksum
How to use checksums
762d81ba4e2d0760a074fbd91ad77be120ff65b5d196d1563bb1cc865f6e95cd
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.15.dev1745383124-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL stim-1.15.dev1745383124-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 4.9 MB
Tags CPython 3.13 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
51decabc50d5003e0d5500f619a976d30f79e33eae0a32143fcdab29c0a56a19
BLAKE2b-256 checksum
How to use checksums
47e882d98d2864e20cd7a1088120d91315e6aca288338f1fbe760487168d6fd0
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.15.dev1745383124-cp313-cp313-macosx_11_0_arm64.whl

Download URL stim-1.15.dev1745383124-cp313-cp313-macosx_11_0_arm64.whl
Size 1.8 MB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
8a78014038687ed351e9f586a83581bd6285d2bf571d3e3ff40f0c98280b1def
BLAKE2b-256 checksum
How to use checksums
b9de98b75da9b414fe37ab6c1de2e1501d35a15b002369b80a10124b316b6acf
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.15.dev1745383124-cp313-cp313-macosx_10_13_x86_64.whl

Download URL stim-1.15.dev1745383124-cp313-cp313-macosx_10_13_x86_64.whl
Size 2.0 MB
Tags CPython 3.13 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
7c13281e055a0e99a4d3b7dff96a3535ec674444911c5867450d80cb9b68c3d9
BLAKE2b-256 checksum
How to use checksums
cd60ab5a1625b60b458f457cfa46ac40a665abb9194c0d7d2cc9b98971da17d5
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.15.dev1745383124-cp312-cp312-win_amd64.whl

Download URL stim-1.15.dev1745383124-cp312-cp312-win_amd64.whl
Size 2.6 MB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
b38e9bcac5afd24903f5c3970ebd9743188c2f55790ac0c9217332b5250d07dd
BLAKE2b-256 checksum
How to use checksums
af2206055ce1a6e908b9ccc2df1599fb8c5a7b83add3885d2df192b44c5d2aba
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.15.dev1745383124-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL stim-1.15.dev1745383124-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 4.9 MB
Tags CPython 3.12 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
699308a3bd6242af2bfbe945225d8c5400069f5f757c2a8dad70e752a71d145b
BLAKE2b-256 checksum
How to use checksums
db44643681e25e2afa164527a7abc18965e50b2a459e2cee6478fc59b681e92b
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.15.dev1745383124-cp312-cp312-macosx_11_0_arm64.whl

Download URL stim-1.15.dev1745383124-cp312-cp312-macosx_11_0_arm64.whl
Size 1.8 MB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
32867b808c98f2e2a989306c1b847db7000fb679f240be5d9c91d86134ba7b48
BLAKE2b-256 checksum
How to use checksums
9b209d1a7ab2dd63ff37f3efb9fbc834de3fe2f2f35ba495fd57e0e2b97da09b
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.15.dev1745383124-cp312-cp312-macosx_10_13_x86_64.whl

Download URL stim-1.15.dev1745383124-cp312-cp312-macosx_10_13_x86_64.whl
Size 2.0 MB
Tags CPython 3.12 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
1420a5781c50d3cd61af2ba273a037f7a716f91ec9ccd6313d3c8d7392276b57
BLAKE2b-256 checksum
How to use checksums
b76ba35ae0206580baec82dd5fa96992fd2c73c7ece62e03e35a727f5bb37e63
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.15.dev1745383124-cp311-cp311-win_amd64.whl

Download URL stim-1.15.dev1745383124-cp311-cp311-win_amd64.whl
Size 2.6 MB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
6af9d0a19487d76beea19134041b177b8d5a81887e73da66892c3064adb11ae9
BLAKE2b-256 checksum
How to use checksums
c035f075c4db9a1cc7466923f7e625d8c943a9dcb12ecf21b6eedd8dc6169480
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.15.dev1745383124-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL stim-1.15.dev1745383124-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 5.0 MB
Tags CPython 3.11 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
500586b861f97ead7fed3a85f2f9adce50eee9754c3e016c75f72952281c3dac
BLAKE2b-256 checksum
How to use checksums
90df07c2597c420fe3750ccda76ef81fc2fc4ddf560e316e8aa619be3542a52a
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.15.dev1745383124-cp311-cp311-macosx_11_0_arm64.whl

Download URL stim-1.15.dev1745383124-cp311-cp311-macosx_11_0_arm64.whl
Size 1.8 MB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
7d69f3e073aa688564518eb49893b68a8a2f1d8f3bafff76b454a6dc52dc4774
BLAKE2b-256 checksum
How to use checksums
9ba15c327435605706740c162b1bb174ea1150101962183b8bf1f95e557f89a1
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.15.dev1745383124-cp311-cp311-macosx_10_9_x86_64.whl

Download URL stim-1.15.dev1745383124-cp311-cp311-macosx_10_9_x86_64.whl
Size 1.9 MB
Tags CPython 3.11 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
9e0b9b34a8459a87f3f1bf2ec9e959c23e7b8fac269925694561765e1e43dadf
BLAKE2b-256 checksum
How to use checksums
e86b53a71f7c419de69e623dffe4f78e263311dca99c61d3242a080fb5d27778
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.15.dev1745383124-cp310-cp310-win_amd64.whl

Download URL stim-1.15.dev1745383124-cp310-cp310-win_amd64.whl
Size 2.6 MB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
862c72b4062b58c1591d11b74d2c1d69ae61c1fd92426c0369c257aaa8dd7498
BLAKE2b-256 checksum
How to use checksums
b5942c00faa571a59f5a796fb0a1845631908526fb0d870b137a5a5b6b111b9f
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.15.dev1745383124-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL stim-1.15.dev1745383124-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 5.0 MB
Tags CPython 3.10 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
22fb29347e86a513bca1e42fd2aac9fd57716cb80628a01a0613a5b9e195fc3b
BLAKE2b-256 checksum
How to use checksums
52d2663f7af12580f4a4a0de59266f2165f651566d27acc6bbf0a388b3f0a926
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.15.dev1745383124-cp310-cp310-macosx_11_0_arm64.whl

Download URL stim-1.15.dev1745383124-cp310-cp310-macosx_11_0_arm64.whl
Size 1.8 MB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
07ca4e701927a1f31bdafd27d721809c0bd1ae8b33782f1ceb74030ac86ad4c2
BLAKE2b-256 checksum
How to use checksums
4ba4cbef5ff2ea4c53fa38b7949e622af16f8ca76616f72616c41cd220411865
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.15.dev1745383124-cp310-cp310-macosx_10_9_x86_64.whl

Download URL stim-1.15.dev1745383124-cp310-cp310-macosx_10_9_x86_64.whl
Size 1.9 MB
Tags CPython 3.10 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
ca6386a61d63f2db2ded71167432335efd6c0946eb3d63be65ac716a8b29c311
BLAKE2b-256 checksum
How to use checksums
fdb576497c1bf3497b7ebe29520edd41231ade742b49a29fa2f041e678828ab2
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.15.dev1745383124-cp39-cp39-win_amd64.whl

Download URL stim-1.15.dev1745383124-cp39-cp39-win_amd64.whl
Size 2.7 MB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
85c75e105becc5a09a45dba7a656e961d6945787b9123132b9550fd15194e91d
BLAKE2b-256 checksum
How to use checksums
69da6a677b7a6ba49e4f4241a8d15931d6f43fc7be008bdc65d1053270e29b7d
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.15.dev1745383124-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL stim-1.15.dev1745383124-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 5.0 MB
Tags CPython 3.9 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
db8f095aa14f80b288926eca375c7882ae50e8a8db1b36221ed53e08fca25eb5
BLAKE2b-256 checksum
How to use checksums
1395865e6d1175217a8b0548b377378235f3bfdaa9b7a57d269e8f36727a3580
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.15.dev1745383124-cp39-cp39-macosx_11_0_arm64.whl

Download URL stim-1.15.dev1745383124-cp39-cp39-macosx_11_0_arm64.whl
Size 1.8 MB
Tags CPython 3.9 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
49f54322e97a9623b1f6b1f3986ed21f6766d1105065b94e59faeffad8024a16
BLAKE2b-256 checksum
How to use checksums
b4a1b09bf36293f5b565221faf8a4537ad2528d875d6e7df8a611f28353ab397
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.15.dev1745383124-cp39-cp39-macosx_10_9_x86_64.whl

Download URL stim-1.15.dev1745383124-cp39-cp39-macosx_10_9_x86_64.whl
Size 1.9 MB
Tags CPython 3.9 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
3a889f7d5a9df193c6fcd8871e08c1af49a7ee101d9c8549cf2069efa7781006
BLAKE2b-256 checksum
How to use checksums
e9b894ebb6540132c583b9e13374b3dbb8060a9dc78242d32d045a2f1a15163b
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.15.dev1745383124-cp38-cp38-win_amd64.whl

Download URL stim-1.15.dev1745383124-cp38-cp38-win_amd64.whl
Size 2.6 MB
Tags CPython 3.8 Windows x86-64
SHA-256 checksum
How to use checksums
daeb3e840fe51eb30039ce3f93b3c77f456bebe62126ed9557bfefe35ec7c579
BLAKE2b-256 checksum
How to use checksums
c37cb9ceb3479c0544f990bb2c313e7030a11735085665ab8a825b5bda738944
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.15.dev1745383124-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL stim-1.15.dev1745383124-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 5.0 MB
Tags CPython 3.8 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
c2febd9d041189190a11c5fda5049d060f8a40b5da1c45677f4a6dff6f61794c
BLAKE2b-256 checksum
How to use checksums
500a0d6e6747c1a18f7bb88619b16c497e2dd6520d67778f7b7958b682df5c72
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.15.dev1745383124-cp38-cp38-macosx_11_0_arm64.whl

Download URL stim-1.15.dev1745383124-cp38-cp38-macosx_11_0_arm64.whl
Size 3.5 MB
Tags CPython 3.8 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
6d68969a531824327b5a8e95fee3ed622e58c4caa8aa2dc5e570fbd9c5f7e4df
BLAKE2b-256 checksum
How to use checksums
bab210c375585aa60a053d9ce00bc106fe42514f1cd5e8370be8e4c1585f0065
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.15.dev1745383124-cp38-cp38-macosx_10_9_x86_64.whl

Download URL stim-1.15.dev1745383124-cp38-cp38-macosx_10_9_x86_64.whl
Size 3.7 MB
Tags CPython 3.8 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
063f27629e209acf49edccea8174baba395e994fe038b38b7442c8ac899cc41a
BLAKE2b-256 checksum
How to use checksums
635d8bab641a84f786c9d4aed72923ed651b59b8cb782adcc2c653ec6652d7f8
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.15.dev1745383124-cp37-cp37m-win_amd64.whl

Download URL stim-1.15.dev1745383124-cp37-cp37m-win_amd64.whl
Size 2.6 MB
Tags CPython 3.7 CPython 3.7 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
b1c006de45ada8cfd4ade00e48e63330b764212b9651d7d5d3318b064f5a3768
BLAKE2b-256 checksum
How to use checksums
bd6aa7395a694ef5765b225d351e068d82cff4c66e5e67b2d6312ccedd5af465
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.15.dev1745383124-cp37-cp37m-win32.whl

Download URL stim-1.15.dev1745383124-cp37-cp37m-win32.whl
Size 2.4 MB
Tags CPython 3.7 CPython 3.7 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
7fb99d5fef1344a9592576915d21aac0f2358438a02db76037356b12dcae0432
BLAKE2b-256 checksum
How to use checksums
d3ad1c3f5eb3523226e6b3597e30697e760434402b6ddcec64fd06bacc153971
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.15.dev1745383124-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL stim-1.15.dev1745383124-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 5.0 MB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
ac6ee3d3a15a8ad5b8dee292e31a10247847f772a0a2030cd961b439b2def657
BLAKE2b-256 checksum
How to use checksums
b7e13da743b528855854657b1d5c475340dd703a87eb16b19e3caceef34b81c4
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.15.dev1745383124-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL stim-1.15.dev1745383124-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Size 5.2 MB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
b940127c47e7b4acc0f5f02878ab8e32dc678967f91cdc5afa414ec15a9dca3f
BLAKE2b-256 checksum
How to use checksums
4d7e45fafd9a7d48a8ce5c6f1823776a0b612c0eb2ec77d06d9e6bdde2c362c3
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.15.dev1745383124-cp37-cp37m-macosx_10_9_x86_64.whl

Download URL stim-1.15.dev1745383124-cp37-cp37m-macosx_10_9_x86_64.whl
Size 3.7 MB
Tags CPython 3.7 CPython 3.7 pymalloc macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
c1e11b9cf40e238acd5f072ceb36668199872f20cbb1a7e550e3a75adedbf066
BLAKE2b-256 checksum
How to use checksums
f37dd0e492a5c5d84109ae54dda947308eb7afeb1151c2388216637b99d9149d
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.15.dev1745383124-cp36-cp36m-win_amd64.whl

Download URL stim-1.15.dev1745383124-cp36-cp36m-win_amd64.whl
Size 2.6 MB
Tags CPython 3.6 CPython 3.6 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
7d5818aa5f1b10500c164a1a3132ddaaad18059e6cac22c89b27c85db1114ca9
BLAKE2b-256 checksum
How to use checksums
a6be76848a33219a68e454b24c926fc16be3b4729a5269d84f9caa7609566ee9
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.15.dev1745383124-cp36-cp36m-win32.whl

Download URL stim-1.15.dev1745383124-cp36-cp36m-win32.whl
Size 2.4 MB
Tags CPython 3.6 CPython 3.6 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
0ddb2f1316ef44fac1662bda78e9113054a3db285cd470546fb83084bf1aeaf8
BLAKE2b-256 checksum
How to use checksums
3f570cbabd39f60bfa844770296149421603ae8f65b938d0def17a57485ce260
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.15.dev1745383124-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL stim-1.15.dev1745383124-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 5.0 MB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
2d148c26d64142ae6e205e09ccec0735f746e8666a55a2cc233d58a6bc255ff9
BLAKE2b-256 checksum
How to use checksums
f672f155a8e42a4622bb3b4196fb1e71037713acd0ae34a242ec8de095abd2c3
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.15.dev1745383124-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL stim-1.15.dev1745383124-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Size 5.2 MB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
ecc0ece1b23e31fbefd18443563150dd0040b6e75d68858c71838bea47e45147
BLAKE2b-256 checksum
How to use checksums
6f24a469392c8fab9d9b33bc1047dfd1c9b8b1e2e3be42f3456f69a67cadb309
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.15.dev1745383124-cp36-cp36m-macosx_10_9_x86_64.whl

Download URL stim-1.15.dev1745383124-cp36-cp36m-macosx_10_9_x86_64.whl
Size 3.7 MB
Tags CPython 3.6 CPython 3.6 pymalloc macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
f21f189ada0c651615a665ce1ab351804365e27d6e4c5b15a67924eaf3549890
BLAKE2b-256 checksum
How to use checksums
2184f587c325b396cdc51f158f5895cdf7f1feae2a6f76cb94b9677a7d049f6a
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