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

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

Built distributions (wheels)

Table of built distributions (wheels) for stim 1.16.dev1747178717
File
stim-1.16.dev1747178717-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.16.dev1747178717-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
stim-1.16.dev1747178717-cp313-cp313-macosx_10_13_x86_64.whl CPython 3.13 CPython 3.13 macOS 10.13+ x86-64 Details
stim-1.16.dev1747178717-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
stim-1.16.dev1747178717-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.16.dev1747178717-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
stim-1.16.dev1747178717-cp312-cp312-macosx_10_13_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.13+ x86-64 Details
stim-1.16.dev1747178717-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
stim-1.16.dev1747178717-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.16.dev1747178717-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
stim-1.16.dev1747178717-cp311-cp311-macosx_10_9_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.9+ x86-64 Details
stim-1.16.dev1747178717-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
stim-1.16.dev1747178717-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.16.dev1747178717-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
stim-1.16.dev1747178717-cp310-cp310-macosx_10_9_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.9+ x86-64 Details
stim-1.16.dev1747178717-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
stim-1.16.dev1747178717-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.16.dev1747178717-cp39-cp39-macosx_11_0_arm64.whl CPython 3.9 CPython 3.9 macOS 11.0+ ARM64 Details
stim-1.16.dev1747178717-cp39-cp39-macosx_10_9_x86_64.whl CPython 3.9 CPython 3.9 macOS 10.9+ x86-64 Details
stim-1.16.dev1747178717-cp38-cp38-win_amd64.whl CPython 3.8 CPython 3.8 Windows x86-64 Details
stim-1.16.dev1747178717-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.16.dev1747178717-cp38-cp38-macosx_11_0_arm64.whl CPython 3.8 CPython 3.8 macOS 11.0+ ARM64 Details
stim-1.16.dev1747178717-cp38-cp38-macosx_10_9_x86_64.whl CPython 3.8 CPython 3.8 macOS 10.9+ x86-64 Details
stim-1.16.dev1747178717-cp37-cp37m-win_amd64.whl CPython 3.7 CPython 3.7 pymalloc Windows x86-64 Details
stim-1.16.dev1747178717-cp37-cp37m-win32.whl CPython 3.7 CPython 3.7 pymalloc Windows x86-32 Details
stim-1.16.dev1747178717-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.16.dev1747178717-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.16.dev1747178717-cp37-cp37m-macosx_10_9_x86_64.whl CPython 3.7 CPython 3.7 pymalloc macOS 10.9+ x86-64 Details
stim-1.16.dev1747178717-cp36-cp36m-win_amd64.whl CPython 3.6 CPython 3.6 pymalloc Windows x86-64 Details
stim-1.16.dev1747178717-cp36-cp36m-win32.whl CPython 3.6 CPython 3.6 pymalloc Windows x86-32 Details
stim-1.16.dev1747178717-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.16.dev1747178717-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.16.dev1747178717-cp36-cp36m-macosx_10_9_x86_64.whl CPython 3.6 CPython 3.6 pymalloc macOS 10.9+ x86-64 Details

Total release size: 108.3 MB

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

Download URL stim-1.16.dev1747178717.tar.gz
Size 853.9 kB
Tags Source
SHA-256 checksum
How to use checksums
0edadde5f144270db23c0b92c9752447e19ad314e163f4b311c250d9d65e224f
BLAKE2b-256 checksum
How to use checksums
ea98a9c5288c7feeeecfa02371e6c4a71d3406521290905e7a65537c88b88ecf
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.dev1747178717-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL stim-1.16.dev1747178717-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 5.0 MB
Tags CPython 3.13 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
50b747a93e5683b4ac95fb5aa9b797d2c5932e9671039743a6cbc49647c4d58f
BLAKE2b-256 checksum
How to use checksums
faa73e3b907e527e59ea295cfd475a5e9dcd111e90ca6a51d7f94b37ceff2ec3
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.dev1747178717-cp313-cp313-macosx_11_0_arm64.whl

Download URL stim-1.16.dev1747178717-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
0bae91f52ec1f5b944aef04e72ea5d85abb2b716fd3e50db8fe7793d4a86924a
BLAKE2b-256 checksum
How to use checksums
15c077820e222632c1f5b592080d95bcd0d46265e79e571f9edc57cc6d2f2032
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.dev1747178717-cp313-cp313-macosx_10_13_x86_64.whl

Download URL stim-1.16.dev1747178717-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
45408ddca75a538801da03aa87e6fbfe31bfc1738d13b90100e09cf03cb6397b
BLAKE2b-256 checksum
How to use checksums
1c796d76e8d23ef9d60bd5dc8458e1792918cf1cf6d0aeb231374ba8d89982e1
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.dev1747178717-cp312-cp312-win_amd64.whl

Download URL stim-1.16.dev1747178717-cp312-cp312-win_amd64.whl
Size 2.6 MB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
1549b0500f48c1a4df5407ac9d4dc82b00e01dbfdc81acd7627d2696dc752eb7
BLAKE2b-256 checksum
How to use checksums
da025ac4baeab176fed81fcd08299f3ee8fd9eff30a047816b4da0e2bd0b610d
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.dev1747178717-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL stim-1.16.dev1747178717-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 5.0 MB
Tags CPython 3.12 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
0d588dacf9d0a11c761fd07e89eefffda4560c2a0b31d3785e393f9284ad9f63
BLAKE2b-256 checksum
How to use checksums
b7f60216f030b0a5407af81f1693410e72aad8dbb589bfc3179be3642c3a56bc
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.dev1747178717-cp312-cp312-macosx_11_0_arm64.whl

Download URL stim-1.16.dev1747178717-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
0e72e4ba92a653d6fbb3fd52834b1d057fc54e7f0fc0f5ea8c714402184ae0f6
BLAKE2b-256 checksum
How to use checksums
78737c96a63f87b5cab4f108f38a90e45f0e4611540763e2f72b825119457697
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.dev1747178717-cp312-cp312-macosx_10_13_x86_64.whl

Download URL stim-1.16.dev1747178717-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
a51b8b854fd5ef02dc053ffd4e2966b4e1f29b411881748c222d644a164893a9
BLAKE2b-256 checksum
How to use checksums
7b444840708c13294a683a50ccef72e2240d153c2aca7cdad4a893b168a18d04
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.dev1747178717-cp311-cp311-win_amd64.whl

Download URL stim-1.16.dev1747178717-cp311-cp311-win_amd64.whl
Size 2.6 MB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
db913325463e070d148ece676915eba7fbd64f93736e309bc542a50622def906
BLAKE2b-256 checksum
How to use checksums
78ff7eada60eaf3e23700495f25bc5005f7506224f6d8f7cf7b119af00274866
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.dev1747178717-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL stim-1.16.dev1747178717-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
38e7a010d390db11215d3f75cb6aa8a6500382076856a54c13664da7ae864cf3
BLAKE2b-256 checksum
How to use checksums
541de2d87350be07dedd7ea505923728d59488f802ead828ae2f0dcf1472263d
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.dev1747178717-cp311-cp311-macosx_11_0_arm64.whl

Download URL stim-1.16.dev1747178717-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
c8438ceb3fa36bf82d1f4cffa146fc4b463453af5d960b857cdcc1e6a37673cf
BLAKE2b-256 checksum
How to use checksums
208aa2bc2b945e10c18781a42be3ad7bdade91087ea7722666c792ccfafa9030
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.dev1747178717-cp311-cp311-macosx_10_9_x86_64.whl

Download URL stim-1.16.dev1747178717-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
aa42fe2016491b61d411c6be45de83ce298a79172013a241ae02767cc13b245f
BLAKE2b-256 checksum
How to use checksums
5a50e6491f308ae7b155c209896f0702de31879588d4cb797983b939ea2d0755
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.dev1747178717-cp310-cp310-win_amd64.whl

Download URL stim-1.16.dev1747178717-cp310-cp310-win_amd64.whl
Size 2.6 MB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
45053e24fd112dbf8e2ea8558c10deaf4ee7891ad67e79a4eaf9abb4a826ca49
BLAKE2b-256 checksum
How to use checksums
11f72241cb89564dbc2cec351d766b879e5f669888e407837ee2c0757c756576
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.dev1747178717-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL stim-1.16.dev1747178717-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
8b1695c7e5b73a840f5e60914375ead263d724eb568b7536bdca69b02b90b589
BLAKE2b-256 checksum
How to use checksums
c2056a168d1dde8f2efe71bc17c81871da1ea8bf5ad1bb1548e4f615575661ad
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.dev1747178717-cp310-cp310-macosx_11_0_arm64.whl

Download URL stim-1.16.dev1747178717-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
a4010907a8388b9f37d4a6dd978a7036bb1dea170966449ea13f31a75048fbc9
BLAKE2b-256 checksum
How to use checksums
18264d7d4ac87b1d2588c0ffdcfcc5704ba19370c216d659a5ff97df290e3c16
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.dev1747178717-cp310-cp310-macosx_10_9_x86_64.whl

Download URL stim-1.16.dev1747178717-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
85542cb5059368bfdefe3a8f2391830585dc7d9fc3f69949521e9ab1e838a869
BLAKE2b-256 checksum
How to use checksums
ce3f842c6281c88066b99e895080f4a01405fb7c14bfffc4c55c1a652a845d88
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.dev1747178717-cp39-cp39-win_amd64.whl

Download URL stim-1.16.dev1747178717-cp39-cp39-win_amd64.whl
Size 2.7 MB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
f65a4a671da1c5df5fec71293597a9fc95be6bb48fb4ab8fbecf74f690d266f3
BLAKE2b-256 checksum
How to use checksums
01bfe4479f803fdd57ae864ef7a9df4e897c8a99c04898c2440b6e69fd716eb9
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.dev1747178717-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL stim-1.16.dev1747178717-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
5d81ae10dd4a5bfe2c986de3a5c17ddc451bb6bae7091f59a45fd305e773bfa3
BLAKE2b-256 checksum
How to use checksums
bdd7469133614d5fa71059dbe62c1eac94e495753683ec79e8f0f3e54b0509b2
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.dev1747178717-cp39-cp39-macosx_11_0_arm64.whl

Download URL stim-1.16.dev1747178717-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
c9ad3abeeaaa3eddc2256cc8d558aacc010f0213978165d6ed46c957c6e8124c
BLAKE2b-256 checksum
How to use checksums
704112866c778cf8d1e13fd6339adbf201f7e0491e96ffe5a0140c5db23663f2
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.dev1747178717-cp39-cp39-macosx_10_9_x86_64.whl

Download URL stim-1.16.dev1747178717-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
ed9be9eda9c432762489250fa02c43497bd6fb03fb8e7e390626dba9d297f17e
BLAKE2b-256 checksum
How to use checksums
01e3dbcbe7c783585f69218dc616e44a31d90357c1c0d813cc52454d1159d983
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.dev1747178717-cp38-cp38-win_amd64.whl

Download URL stim-1.16.dev1747178717-cp38-cp38-win_amd64.whl
Size 2.6 MB
Tags CPython 3.8 Windows x86-64
SHA-256 checksum
How to use checksums
39b4eddc326180b14a21d405166178c9da16f00a7d024e213335555f0a470144
BLAKE2b-256 checksum
How to use checksums
8f4f7f500195ba581783ac844ba6df79d4ac895a0f5dd698181d48679e2e5c83
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.dev1747178717-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL stim-1.16.dev1747178717-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
e652e1d7dfa9f3512c7ffe779d591a4b8e09a4247d76785099642f94cbfa143b
BLAKE2b-256 checksum
How to use checksums
e99524a3db72caffead90d5ae5b830660ad8c801f67195c6a0c0857d131d0102
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.dev1747178717-cp38-cp38-macosx_11_0_arm64.whl

Download URL stim-1.16.dev1747178717-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
d33a000dd2cbf3e5d2a9ca2023f0862999600c0a4d2eb007ac3de80c98ef79d4
BLAKE2b-256 checksum
How to use checksums
e8c1dafdf76d178bf9819671b49b986a6164b7cb7118cbb1d123ae3f94ff49ec
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.dev1747178717-cp38-cp38-macosx_10_9_x86_64.whl

Download URL stim-1.16.dev1747178717-cp38-cp38-macosx_10_9_x86_64.whl
Size 3.8 MB
Tags CPython 3.8 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
1e8b178628e7a1b61b4a34a823e16d02cf824147cac9b67a624d6565b9e122ea
BLAKE2b-256 checksum
How to use checksums
de4cbe60f022f25fd7515fe6f3d8937e5f4b2554890189ed5f330fa97d8eda05
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.dev1747178717-cp37-cp37m-win_amd64.whl

Download URL stim-1.16.dev1747178717-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
e43a813be969a4f569db9e3f45e64dc440026baf29cb1743c1111437ee8e0344
BLAKE2b-256 checksum
How to use checksums
35c979098036f89a6b2458758147fd52879902ed1811e0ba1629f784a3b0dd93
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.dev1747178717-cp37-cp37m-win32.whl

Download URL stim-1.16.dev1747178717-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
39e23ec54d1864e3359dcad21419cfe626f750b76d38aac5596912db78961c4a
BLAKE2b-256 checksum
How to use checksums
e3ba94842702f94b7952bc7f153170900a9f6f38e82dd0d2a1e9c3ff406d22cc
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.dev1747178717-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL stim-1.16.dev1747178717-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
f56ba31500c20ce4031a4f21d2f6a9aff1fe14fc64a11453b9104229a27db59d
BLAKE2b-256 checksum
How to use checksums
1d385644fae37f5caa43ee3fb299b6cd5ce04ad4da22fe0b96357ace7b31ed48
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.dev1747178717-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL stim-1.16.dev1747178717-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
0bd0f4aafbb010f22c9e510cf59b5a846b8ef29a902690ecb22b6a6af448092c
BLAKE2b-256 checksum
How to use checksums
728b5f3f305a90e0bbd2bb3720f3bd9ae7d0e8a49406ed2519b31eae0919130e
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.dev1747178717-cp37-cp37m-macosx_10_9_x86_64.whl

Download URL stim-1.16.dev1747178717-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
7d7e154629a5cee5f549eade7d770eb2e25d1c66d9e3562a63b7f37be94b9c85
BLAKE2b-256 checksum
How to use checksums
f28bf7bb03885ecbb06c5e7f4c5776978edb77d4190c1ebf1bb11f71124234e4
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.dev1747178717-cp36-cp36m-win_amd64.whl

Download URL stim-1.16.dev1747178717-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
fe60e0d5b61f272f2d6ef149b740f8314fc4c06e83cebeac003c80877751be14
BLAKE2b-256 checksum
How to use checksums
ae60a864723500efffacee12873720924b331d6f3d27e6a38e38eb6b4a9de1ec
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.dev1747178717-cp36-cp36m-win32.whl

Download URL stim-1.16.dev1747178717-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
ed3c5859da86851e1fefd05db765954fa0e670c7e536988f3784ab6bbb38427d
BLAKE2b-256 checksum
How to use checksums
47e1c66d9ee428ca1f4e548d36749f04333e7dfbb7ab78bcda4d6b4afc6f61d1
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.dev1747178717-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL stim-1.16.dev1747178717-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
80f9cf8caf6627ef3e6b618a7773912d55751cccbb59789236419e8583323bba
BLAKE2b-256 checksum
How to use checksums
070426b3b38e2e507aff7f784c803b1440734b10c06f6e6773435f3ba563eb4b
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.dev1747178717-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL stim-1.16.dev1747178717-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
801d554292151c7969477f789c2da09f05af5c2dbb52698b4ff949ace2386d1b
BLAKE2b-256 checksum
How to use checksums
36b370a02e3e9ec50cff808f2b96413f424a68efd42e307727f9aa3c3f34be70
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.dev1747178717-cp36-cp36m-macosx_10_9_x86_64.whl

Download URL stim-1.16.dev1747178717-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
f46861c10d2c52409400c0dd9fcbda407c8208ab8c5d7d0e9724a520d3ff6703
BLAKE2b-256 checksum
How to use checksums
fcace101839f5303aa02c95653f1e667b85d01a0051dbafcd4b9f18cf7869722
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