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

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.dev1745883134
File Size Uploaded
stim-1.15.dev1745883134.tar.gz 853.1 kB Details

Built distributions (wheels)

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

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

Download URL stim-1.15.dev1745883134.tar.gz
Size 853.1 kB
Tags Source
SHA-256 checksum
How to use checksums
98402bf8b1324df1acef7f8b4f94bc1b6be0e15d92116a393c2c834c7e53e4d3
BLAKE2b-256 checksum
How to use checksums
1177b7cae980b1214b20684926ce9ef8b11604ddc159afcd7f211ee4698dec9e
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.dev1745883134-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL stim-1.15.dev1745883134-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
3c2ef7ace66f9a238d50e0a2019a86d0c7cdf78a8e0b9ddb61db95764c002f9a
BLAKE2b-256 checksum
How to use checksums
d6ca926b9cb583bcf448b3c4bc7af00273b817665dcd9ba9915160a4f92e1546
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.dev1745883134-cp313-cp313-macosx_11_0_arm64.whl

Download URL stim-1.15.dev1745883134-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
f3043632ccabbfa526e413593751b7233c830d99e8162c1a38c3aca10aca2b46
BLAKE2b-256 checksum
How to use checksums
7fbbe5b2d586ff2d0b16de7aa7b051a215156dbf674de4ed41d68a3aefa93e65
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.dev1745883134-cp313-cp313-macosx_10_13_x86_64.whl

Download URL stim-1.15.dev1745883134-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
edf5fb8cd89f9b69f16877c7f3e94172661fc6763e389a7dd94649d0e34c03d6
BLAKE2b-256 checksum
How to use checksums
8ea0a66a1cf8f77528eeee6eec787ec4bcb6d8cc2cbe24e35190d83e617987b3
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.dev1745883134-cp312-cp312-win_amd64.whl

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

Download URL stim-1.15.dev1745883134-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
b4e7aa82d656f29b1d3e23d69e8b2a68dcbf99386c5a9bdbc591d79ab63bc787
BLAKE2b-256 checksum
How to use checksums
d3afaf4a008febce9699b82436062867bae1ac4378deba14845945423b2b60bb
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.dev1745883134-cp312-cp312-macosx_11_0_arm64.whl

Download URL stim-1.15.dev1745883134-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
31096e9aa6fa85fead73aca9273f96a637df5a907e7fb7d8a0f35f7ec9a8becd
BLAKE2b-256 checksum
How to use checksums
2c5565fc3b9532ca01907e507f34330d10ecb20766c062f8f1f08a7e7d439fb5
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.dev1745883134-cp312-cp312-macosx_10_13_x86_64.whl

Download URL stim-1.15.dev1745883134-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
9c06eca54f642e89516bf855996032c0efeac326c1021fffd8fb7b47faa494e1
BLAKE2b-256 checksum
How to use checksums
3c732e7516016565c3c135332067475d34d9705172bc4e625c54849909a15c31
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.dev1745883134-cp311-cp311-win_amd64.whl

Download URL stim-1.15.dev1745883134-cp311-cp311-win_amd64.whl
Size 2.6 MB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
9b89dd141336c03bc422a12b6bc8cd8da67f69429d14daef0074dd566319ffb4
BLAKE2b-256 checksum
How to use checksums
b693e640959edb036b4d0c3a6819a52f79e22cef23a32043945eef85733e2495
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.dev1745883134-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL stim-1.15.dev1745883134-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
850c7c2a6039f9221cf368e5654a6c246bc3722fed3256beeb060afb63b014b4
BLAKE2b-256 checksum
How to use checksums
6d51e72e09ff1626accd156d6445fd850d5f0373d322fc7ef3c45e68994e4169
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.dev1745883134-cp311-cp311-macosx_11_0_arm64.whl

Download URL stim-1.15.dev1745883134-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
3a82e5f93bdf3967e49052c72846f090d40f21c8ec2450d122a430f51e90e21c
BLAKE2b-256 checksum
How to use checksums
9cbf62670a3488151445bbe10c50f11d8770d3a79227f5089c3a0232309953cf
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.dev1745883134-cp311-cp311-macosx_10_9_x86_64.whl

Download URL stim-1.15.dev1745883134-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
c2be5c91a8456f7e0401795dd2652eab78d2b3f32e9768a5bb30c142c3fcdf97
BLAKE2b-256 checksum
How to use checksums
cfc49021dc1e66a2339945ac5f3250353a3bc606dc10455d1d1c26987fb016af
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.dev1745883134-cp310-cp310-win_amd64.whl

Download URL stim-1.15.dev1745883134-cp310-cp310-win_amd64.whl
Size 2.6 MB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
4ae0bc791659f505fd170f5cf5eac82078bf68b7f32719ea74d35e8cc2547201
BLAKE2b-256 checksum
How to use checksums
0068c818b1fab44facd0a1bc7b41ff135c1c579714f1012107108bc62a8ace01
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.dev1745883134-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL stim-1.15.dev1745883134-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
dbb5ed8449bc7f7c80e09ea7033ceb0241624a3dffff0cfce6af44fdd387af91
BLAKE2b-256 checksum
How to use checksums
de5cfa443be9d86b8a9017655b7fa67a2740cb421e6aae8ce1d8bee0edf558e6
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.dev1745883134-cp310-cp310-macosx_11_0_arm64.whl

Download URL stim-1.15.dev1745883134-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
de2e901d41638251f29f902e70c446d0ad0f7ba86b065482c0def709003f60a5
BLAKE2b-256 checksum
How to use checksums
984762799c6b1b8bcee900502afdec427f7eff395a2a355d2b5c9bfb4bad98a4
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.dev1745883134-cp310-cp310-macosx_10_9_x86_64.whl

Download URL stim-1.15.dev1745883134-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
81bb212a6f25c899d2ec6b26883565a11c5102e426405b84a7d5572d1ec62e92
BLAKE2b-256 checksum
How to use checksums
81f114288db799e841acd1aeab3943000daadad4be020abfc1585f7ff34bdc88
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.dev1745883134-cp39-cp39-win_amd64.whl

Download URL stim-1.15.dev1745883134-cp39-cp39-win_amd64.whl
Size 2.7 MB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
7ee7a86935b025f62a7123c031244ff80b7d621c2eb9d7419857d2c467bd8b1b
BLAKE2b-256 checksum
How to use checksums
f4ffe54ee6c8debf1c775badc18a59811174105bac81b1c6576152c39eb76eda
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.dev1745883134-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL stim-1.15.dev1745883134-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
ba556810ec37b54e7bdcbc1876a5b8cbc492e14048c66ca2641ef14020b465a7
BLAKE2b-256 checksum
How to use checksums
0a50857a5f01bd53255f4ebba369baefc92ea552157de3bef99cc6d801f195cb
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.dev1745883134-cp39-cp39-macosx_11_0_arm64.whl

Download URL stim-1.15.dev1745883134-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
867b78dd7b30c21c272d507b4ef42bccd6f05da0aaaea0007d3f62852c834d67
BLAKE2b-256 checksum
How to use checksums
cd70364889fdf6da8540e239ecbf7fedd0228b0cf53927971ada588893d43cdf
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.dev1745883134-cp39-cp39-macosx_10_9_x86_64.whl

Download URL stim-1.15.dev1745883134-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
9215be6cd0fca3e5173c92f095927907c6ea91d0c3d3619948dae9ab652630eb
BLAKE2b-256 checksum
How to use checksums
92bfde32a27101c2c9bda355e70e41616ea6f6f17620b6ce9d0c300803b32342
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.dev1745883134-cp38-cp38-win_amd64.whl

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

Download URL stim-1.15.dev1745883134-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
32101350fe87d3fed4579f6f78c7b0cd178208ab187cb09120f98394171181b5
BLAKE2b-256 checksum
How to use checksums
6b51cdb2b81d747c0ee5e5f52df67896f426f54a3e8eb1c49395e45b9ac394a8
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.dev1745883134-cp38-cp38-macosx_11_0_arm64.whl

Download URL stim-1.15.dev1745883134-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
ec7368696e1141058385890427477596e94ec9ecf30bc916369271830d3154f8
BLAKE2b-256 checksum
How to use checksums
a7e58b5ec488db7df174ec966d772813d90211c188b590a978039f365acfae09
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.dev1745883134-cp38-cp38-macosx_10_9_x86_64.whl

Download URL stim-1.15.dev1745883134-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
dbb86c4429ef0a969086c5fa0210285c2ef0f2bc306d8758d4ed3ae0029f1f21
BLAKE2b-256 checksum
How to use checksums
03cc6dd2835790ad37929811c31e60d7f8ce5fef2d5ae0d5bd3b3c04ce3693c9
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.dev1745883134-cp37-cp37m-win_amd64.whl

Download URL stim-1.15.dev1745883134-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
04d4c55b5bd28d5e0ab406cbc7f004d2fbd1fbeed742177bde77393962ba6fa1
BLAKE2b-256 checksum
How to use checksums
7297f9b92c6c639771ba435751a924a93b8ba00fd9716a92d79c98a4aee2e2f1
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.dev1745883134-cp37-cp37m-win32.whl

Download URL stim-1.15.dev1745883134-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
65601f16102ef90c6f9a95413e12ed72de4d2162515d17eb794a8babaa1f8dfb
BLAKE2b-256 checksum
How to use checksums
95fe190dc291d761b8ea337f363ea501a343165bdc15f4dd36b177b9fcd9fa13
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.dev1745883134-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL stim-1.15.dev1745883134-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
ade3907d02748f8214f328be50f2d68b84c07c09cd2602526eff98407ad92f72
BLAKE2b-256 checksum
How to use checksums
1cda89e83dd991a66b85a1727d2bfb12e7fbfae43dfc006fd7313aa942e788e8
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.dev1745883134-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL stim-1.15.dev1745883134-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
388da482e05e51980db0fe0cad1fd10d26259a4c431d977153487827d83e7fca
BLAKE2b-256 checksum
How to use checksums
52b8f5bc46a9b3367dd9d3debd78e91142df4fa0c564368df69a39f497be3c6a
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.dev1745883134-cp37-cp37m-macosx_10_9_x86_64.whl

Download URL stim-1.15.dev1745883134-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
d8383e8dc485b8dcf7a18b5347bdeef71d9db02cc6f291b147e1fef760ff2184
BLAKE2b-256 checksum
How to use checksums
2e5ac31af16ae4e2d473c8edd984a48afe28a577c7c984f5a1689f5e57ffcd1e
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.dev1745883134-cp36-cp36m-win_amd64.whl

Download URL stim-1.15.dev1745883134-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
e9133bd447d6477b89244e119eade9eda2471ac472cf0f774b74fd65228963f6
BLAKE2b-256 checksum
How to use checksums
acf1a12b44d03fa24883631611c3cffccb77ee91eb7510cc3e27c9496759951d
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.dev1745883134-cp36-cp36m-win32.whl

Download URL stim-1.15.dev1745883134-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
8dd25788d1026170f985175010ec650a596e3180b1fd0d5ac20dfa7fbe54a9a5
BLAKE2b-256 checksum
How to use checksums
5294a068f678d473aace67cc45f0e4e51db417ec8605eab33bc10dc1cdc8a455
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.dev1745883134-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL stim-1.15.dev1745883134-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
76f586bf2afb130c2c110087b6206d417217fb3789f8317764629608c544213c
BLAKE2b-256 checksum
How to use checksums
9723b311f42bece03cc42bac2f405b4ebc99bdf342bfe3d16b16a16b30c64034
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.dev1745883134-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL stim-1.15.dev1745883134-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
0261f5a8f89e990a138a10dea9309e884406b07e264c039c5ba8ec497e074ecc
BLAKE2b-256 checksum
How to use checksums
4cc5478cd8ccac7feaab0d01c66c582cae4d4dc24dabaa24ff8d9f4bb5a721dd
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.dev1745883134-cp36-cp36m-macosx_10_9_x86_64.whl

Download URL stim-1.15.dev1745883134-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
4d696ffe9b8cbe148dba792988a62b3cd2143fd51a4c145a50c1cccef6afda54
BLAKE2b-256 checksum
How to use checksums
0763d9fb6c66a16ccdeac62863b4e5f4c653026c2368e7aa906e176fc8adcc92
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