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

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

Built distributions (wheels)

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

Total release size: 88.5 MB

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

Download URL stim-1.16.dev1776111692.tar.gz
Size 882.1 kB
Tags Source
SHA-256 checksum
How to use checksums
16aa69c8868f38bfbd1d37ea0928940d4a54a9373782f73919933d3758f9fddf
BLAKE2b-256 checksum
How to use checksums
99b02a74f66b6315f761dfda0e9757c8d62f9fd0eb5df52d675170bd6b66e720
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.dev1776111692-cp314-cp314-win_amd64.whl

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

Download URL stim-1.16.dev1776111692-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
e16f947aaf3d4a4d7ebe61b9d19b57234c53a3f3ba52ac49fdeb9d502eff76ac
BLAKE2b-256 checksum
How to use checksums
c34d3dd12c3006d8dd38cec3d55fc2f9889b1ee5b0d7b6612288a42349e9da6f
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.dev1776111692-cp314-cp314-macosx_11_0_arm64.whl

Download URL stim-1.16.dev1776111692-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
8fc5b15afcee6a17dedd9e425af13ac6c2c782daa2e74347ba17d405780d1963
BLAKE2b-256 checksum
How to use checksums
0638c53b8793e9b80b5747d90ac3ebd47c3325e6b9e1b3ca0a2e0d885ffb287a
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.dev1776111692-cp314-cp314-macosx_10_15_x86_64.whl

Download URL stim-1.16.dev1776111692-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
ec34fcbc4af2a015ba1ac61f7338c1394ee2ba6e57808643111de65f8ed23da0
BLAKE2b-256 checksum
How to use checksums
127f5a7bfef2c0c3d34048a0daa09b0d4c292348833fc7fdbcde181f4ef8240f
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.dev1776111692-cp313-cp313-win_amd64.whl

Download URL stim-1.16.dev1776111692-cp313-cp313-win_amd64.whl
Size 2.8 MB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
37a45de2e232a4370c6936a2891f5001f2abc493f4fb2ed204bd10b4e6fb2c40
BLAKE2b-256 checksum
How to use checksums
4360379a202d3e8d7f820cc9affdbc98cf5de352dc035f079d0c6639f5f8709f
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.dev1776111692-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl

Download URL stim-1.16.dev1776111692-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
00451bf79fe28b7f59cb8c2c7bde0238db5d614d5c8f9a513e0077172213e023
BLAKE2b-256 checksum
How to use checksums
0e749a85df7751064cf92bd1129d6b1faca6ff1c7e88f9cc83cf2be00eae489e
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.dev1776111692-cp313-cp313-macosx_11_0_arm64.whl

Download URL stim-1.16.dev1776111692-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
d5e48c60a1ec6a3bb727caff7a3ea70240fe97e5f3d19ec4d2325f7f5aa67658
BLAKE2b-256 checksum
How to use checksums
ef7da1b7fb0a6c968e8c453128ecf31d783654ec0ac5b10bfd40dcd2965c59d3
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.dev1776111692-cp313-cp313-macosx_10_13_x86_64.whl

Download URL stim-1.16.dev1776111692-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
3874aaac7ce7498c012588a7808a632e35cee1115669c84fe8da4901b7afd323
BLAKE2b-256 checksum
How to use checksums
dc724409cd7e2e757102c4f9d478307467f50e755f5fb7e9a033b4d3dfc45fd8
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.dev1776111692-cp312-cp312-win_amd64.whl

Download URL stim-1.16.dev1776111692-cp312-cp312-win_amd64.whl
Size 2.8 MB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
90a87a5e28434f30eddaa221bd7b407e6b36cddc69ca8f2711640b78fcb63c8e
BLAKE2b-256 checksum
How to use checksums
fcf93edad1b4b181ac83f68d12851412d226610227856815c8d7ff20bc960c69
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.dev1776111692-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl

Download URL stim-1.16.dev1776111692-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
b3f0eccb8b37657a92f3e05b66e6db6550b2bbd8038736fd9638ccabe14deb17
BLAKE2b-256 checksum
How to use checksums
560d6a3124915fe7e0abc00ea752f92e9ff53a5a5b2b9fe573fef30b60da11c8
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.dev1776111692-cp312-cp312-macosx_11_0_arm64.whl

Download URL stim-1.16.dev1776111692-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
0df3f385c207fb26ec94c5b0a6a15ea961048a79e82920e4aa420cd21821b709
BLAKE2b-256 checksum
How to use checksums
788ca76ea1d7d5f3d7830d59377fa208610430e858d09d2f31bf888d88e6607c
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.dev1776111692-cp312-cp312-macosx_10_13_x86_64.whl

Download URL stim-1.16.dev1776111692-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
be243d74197dd20bb5315efea7c2832294ef13bcc060f3e1dfc6c33e0921ad84
BLAKE2b-256 checksum
How to use checksums
e183861c5fb20a1b75fc17fac5e883629394422f113beeb6e260cd5daae88969
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.dev1776111692-cp311-cp311-win_amd64.whl

Download URL stim-1.16.dev1776111692-cp311-cp311-win_amd64.whl
Size 2.8 MB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
d3bfa9377c7eca702cbad61bff4033cde3a14cefb4f457c6c6efc4d635f4fd62
BLAKE2b-256 checksum
How to use checksums
6493ccf12ceafd2671b3b0aa53b935af74b7dcb4371f6771994b90673507ef2e
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.dev1776111692-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl

Download URL stim-1.16.dev1776111692-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
6f1721334e9c108e3c3b1a82aa680dd0474dc942ff2ceb793ebe28101a829b6e
BLAKE2b-256 checksum
How to use checksums
1d1790dc9debf35a06361bb0eeb76e7113650855f6e1368a40f87a1a7347fd88
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.dev1776111692-cp311-cp311-macosx_11_0_arm64.whl

Download URL stim-1.16.dev1776111692-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
24299b26aa89a50161b9e7212aeab31abb54b83ad9847fd9b50033e050afb12f
BLAKE2b-256 checksum
How to use checksums
7bb534b644cdd33843bde2b3cdb9ecee114a6845b342b8e46f726c46e6f2e850
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.dev1776111692-cp311-cp311-macosx_10_9_x86_64.whl

Download URL stim-1.16.dev1776111692-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
542d460dbff985936505b1c6820846b8a3dd367e9b05ccfa6708ab643b9505f7
BLAKE2b-256 checksum
How to use checksums
3572bb602ee5a40084e27efc11cdea326078aecb8925d5efd530d01f460cbe95
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.dev1776111692-cp310-cp310-win_amd64.whl

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

Download URL stim-1.16.dev1776111692-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
334b05ced7a33aa20a57ee2c20d2047fc46df188c9ac93ab6258a97c0a7ebf3b
BLAKE2b-256 checksum
How to use checksums
636eb4075572d1d30a021e9de016cb7c2f4bc8fcc3ab5b000e25a08aa3544700
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.dev1776111692-cp310-cp310-macosx_11_0_arm64.whl

Download URL stim-1.16.dev1776111692-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
95011096d34aecd3b9237551bad004aec9bf24a4114ab6f9562f47ad5f08a358
BLAKE2b-256 checksum
How to use checksums
aa614031436548ca904aa76e4b00b1ebea8910f93ab78d7cba67cfc685391dda
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.dev1776111692-cp310-cp310-macosx_10_9_x86_64.whl

Download URL stim-1.16.dev1776111692-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
9f3b5f5e8ba759570b9975e89bdd1666f55b78faa7f62965d5602d0f18d4c1c7
BLAKE2b-256 checksum
How to use checksums
cd1af2f99524a0604caa7439729b611113f46cf2e4a79383de444e22d01250e7
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.dev1776111692-cp39-cp39-win_amd64.whl

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

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

Download URL stim-1.16.dev1776111692-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
fa55fd63aa4bf51b152c96437a4c6e3eb5da13ec9fb8d2351c06f255777a86fd
BLAKE2b-256 checksum
How to use checksums
47a9d843c296b7b058cfd5f63f886035b8d7d9d86d6559294ce062e32f03f381
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.dev1776111692-cp39-cp39-macosx_10_9_x86_64.whl

Download URL stim-1.16.dev1776111692-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
fb2cfba2d5092b849953276674e8b21d64e8450bb4f2039f8dad87267ff00903
BLAKE2b-256 checksum
How to use checksums
772869455529354b418581461f7fabb8c56371e43cb3cdda9c84e4661511ae25
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.dev1776111692-cp38-cp38-win_amd64.whl

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

Download URL stim-1.16.dev1776111692-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
006ea6c521f613a27d4f145d26a9be1c2165494b82c723a3088a0743715c54d8
BLAKE2b-256 checksum
How to use checksums
6f0fad83fd01d0288d6c0c8bbdc435422d01982b821ad1533fef643ac11c1811
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.dev1776111692-cp38-cp38-macosx_11_0_arm64.whl

Download URL stim-1.16.dev1776111692-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
a91e266f62fafe6bee345426dc0f359df238bf790d95295f9b16c3be92dc9e99
BLAKE2b-256 checksum
How to use checksums
41574fc869584047653c65977298b264eb52545e49acf8c1be00935cfc9c4fcb
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.dev1776111692-cp38-cp38-macosx_10_9_x86_64.whl

Download URL stim-1.16.dev1776111692-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
fe78309571e795744eae655648082fb8b8ee0c2276081b787956fa4524f859a0
BLAKE2b-256 checksum
How to use checksums
96530cc865bba8ccd739f4de5ff376eb5c684cb2e584d45c1d35505c8d63b615
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