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

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

Built distributions (wheels)

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

Total release size: 88.4 MB

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

Download URL stim-1.16.dev1770241571.tar.gz
Size 881.7 kB
Tags Source
SHA-256 checksum
How to use checksums
7e4f4ff150c74e18981726725d828f127b8f173162a738bb117337d3e73a299a
BLAKE2b-256 checksum
How to use checksums
75d50e997b04e2782f6520d5428768506b8506ba2bae3c4fa0a37d0aa9912886
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.dev1770241571-cp314-cp314-win_amd64.whl

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

Download URL stim-1.16.dev1770241571-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
798f4327e58d8c300cb36a3f65d1f29d15464944b92361184a64839c90c25e19
BLAKE2b-256 checksum
How to use checksums
a093a66e24864dcb726e70a546e3988a33e8af45616a9229dc71fb86b8991e20
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.dev1770241571-cp314-cp314-macosx_11_0_arm64.whl

Download URL stim-1.16.dev1770241571-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
0dfb68151b57cfb5ee91d667ea77475ce6146b132ab25da06411c8c65922841e
BLAKE2b-256 checksum
How to use checksums
d90f2e06c2e5fda3331a5190545bf3e07f6a12fc6178d64489ed7ecff42404e1
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.dev1770241571-cp314-cp314-macosx_10_15_x86_64.whl

Download URL stim-1.16.dev1770241571-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
2004d192f45867fcf9f97f732ff032f3fd09dcdc4298080376d00b48678a274e
BLAKE2b-256 checksum
How to use checksums
ac1e8059439408bc99913d1b6d4c6e0898961b92606debc39e23b71a52baff6c
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.dev1770241571-cp313-cp313-win_amd64.whl

Download URL stim-1.16.dev1770241571-cp313-cp313-win_amd64.whl
Size 2.8 MB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
ef858d884057baeff54ebe22bac85ca8d4fa041b859df0b6aadf90475e0921f0
BLAKE2b-256 checksum
How to use checksums
8a39046c5b6b8d55f9a96aeda025f896331a436ebb535dc844a66f1b67beb65d
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.dev1770241571-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl

Download URL stim-1.16.dev1770241571-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
2ac4ed26de416823c7f3ed0bf1ea529956363d53cffc7920d0bd6baf64006ec3
BLAKE2b-256 checksum
How to use checksums
12940eec77312d4014fd9122d23eca54c5cb69703f1ce7ada5da139d77c3fcfb
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.dev1770241571-cp313-cp313-macosx_11_0_arm64.whl

Download URL stim-1.16.dev1770241571-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
dbe9f6ebdce0d6c4ddeacbd05122398012516906cf51a46c2292292ea97d38fc
BLAKE2b-256 checksum
How to use checksums
d72b143877e3318cc9886fe0031f3307d0b03a107694533299d8fc745dea376e
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.dev1770241571-cp313-cp313-macosx_10_13_x86_64.whl

Download URL stim-1.16.dev1770241571-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
b85663e8490a2662599d9e149a8dbbf278b59d6b16a8dc84e5e4ccc3a851c47b
BLAKE2b-256 checksum
How to use checksums
6ece6291d3870f50310760801a65c33b9c9ad0f38699e43e3064f79139b27c5d
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.dev1770241571-cp312-cp312-win_amd64.whl

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

Download URL stim-1.16.dev1770241571-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
7a384def8974b3d3114c0f0bd7848e787cf8f5936d8b93ebef4865f67c7c0fc0
BLAKE2b-256 checksum
How to use checksums
e3fdc9c0aaf8ed024808e0038e26f8427a3f070cb626c0eded8aae8ab733f247
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.dev1770241571-cp312-cp312-macosx_11_0_arm64.whl

Download URL stim-1.16.dev1770241571-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
c90765ff8109c7f672b77a9b313b42427d62fd4ff972f330a13f006313232e5b
BLAKE2b-256 checksum
How to use checksums
1d3be130c6e908ade9a80c8a73b9a414ff3cb92c5402481ca4f060087c9cd1be
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.dev1770241571-cp312-cp312-macosx_10_13_x86_64.whl

Download URL stim-1.16.dev1770241571-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
8e2bfac98bda1a72d94e73d27fac3b3534744ee4378ffc8d9afbb6ea6b8beca6
BLAKE2b-256 checksum
How to use checksums
10fce65505fb92df6062384899cbe5bbe1213099d89accdcf84a44fbea764526
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.dev1770241571-cp311-cp311-win_amd64.whl

Download URL stim-1.16.dev1770241571-cp311-cp311-win_amd64.whl
Size 2.8 MB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
9c14788dc041523e0da6a82f242d2b888e0fcd069644b62c051bde72e8eca0d4
BLAKE2b-256 checksum
How to use checksums
70357b761a617065cf5a417ab65dbda3c2968cba7b5900c28ce18bc8a22c8896
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.dev1770241571-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl

Download URL stim-1.16.dev1770241571-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
f31b09838f53aa65fb0733d532e901607417a5d8d5d3fa54a6a53785ad6d1df8
BLAKE2b-256 checksum
How to use checksums
215676d841bf2090b8c2f3451ad9ccb17585d2e3591cdb6a929b0aa24f1ce23a
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.dev1770241571-cp311-cp311-macosx_11_0_arm64.whl

Download URL stim-1.16.dev1770241571-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
12ba049f212986b9e805cea56a42b812057c5062b1c1bf20d138f62deb75aa07
BLAKE2b-256 checksum
How to use checksums
c2231ba8e1a481cc07bcbdb1868ecfceb3635d3aad0eae7765fa67d053a7f775
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.dev1770241571-cp311-cp311-macosx_10_9_x86_64.whl

Download URL stim-1.16.dev1770241571-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
028778e334bfaa7457272825f986682391f5ef6fe0b7043df3e2a25a8b67f642
BLAKE2b-256 checksum
How to use checksums
843a2757700eaa4af31860efd58840d17128b03a641352ac06eb3e02e4493641
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.dev1770241571-cp310-cp310-win_amd64.whl

Download URL stim-1.16.dev1770241571-cp310-cp310-win_amd64.whl
Size 2.8 MB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
6ebcf5f9e3d3b87b9786400a1877ef9839a4ab26115b39cf7a31cbb78b12674e
BLAKE2b-256 checksum
How to use checksums
4d891645ca956af4202dd0dec0f58d65c6b13c494cdb46e7f83948268a3ea993
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.dev1770241571-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl

Download URL stim-1.16.dev1770241571-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
b62ce0fefaf11394706c3c5774e21fe4edbd84468f9ba08a91a19fee9074a9e9
BLAKE2b-256 checksum
How to use checksums
0d25f543d4a767a92d5347ae3d0f372cc7b30878174e3ca04c21ad2432ceafba
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.dev1770241571-cp310-cp310-macosx_11_0_arm64.whl

Download URL stim-1.16.dev1770241571-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
ade00006ca03203c1f7cba1cc71e67b86cd3965af78a5bd8a8ce31f22d9a7922
BLAKE2b-256 checksum
How to use checksums
07dbaa38439c1411212f0e43916c80531fbac1d228afe9009ecbc3682c2036b1
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.dev1770241571-cp310-cp310-macosx_10_9_x86_64.whl

Download URL stim-1.16.dev1770241571-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
5863038f16cac518e91ccdd66e71853bb5cb6ab372a0024671c8b49b26235280
BLAKE2b-256 checksum
How to use checksums
183cfdd0575382c078806343c6adc5517981a312cee40f891b23369cc1678477
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.dev1770241571-cp39-cp39-win_amd64.whl

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

Download URL stim-1.16.dev1770241571-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
855cbfb312a201da51217e43e06508504c084205fbd2c1d86d051663a9c76550
BLAKE2b-256 checksum
How to use checksums
dc955dbe3ab613bef95e5ddd5db78425aac44fdb4ff780245043ae093a02ceb4
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.dev1770241571-cp39-cp39-macosx_11_0_arm64.whl

Download URL stim-1.16.dev1770241571-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
2a5f63f37f4b1813608738e058f5ec23ac38b4117f48934188ce48e6f8126cfd
BLAKE2b-256 checksum
How to use checksums
7b55da2f2be27876482d2907331be0254b1a062e1af01d9b5ac6ab778686df4e
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.dev1770241571-cp39-cp39-macosx_10_9_x86_64.whl

Download URL stim-1.16.dev1770241571-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
b25de91d03f845c0b131536a4dace00348a10c75542ff3741210efef29899182
BLAKE2b-256 checksum
How to use checksums
6ef72a1a7c54c3bc9cc94591d5040cb0bd757441f9be1456c730b0325f68766b
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.dev1770241571-cp38-cp38-win_amd64.whl

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

Download URL stim-1.16.dev1770241571-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
2ec6fa9a60550787cebc5c37698dc273c70f8b072d9e18d9d1f7c35131baa358
BLAKE2b-256 checksum
How to use checksums
39cb841b83f37cc15619b54aa2624ff143ad9cbbc4b4a1b02ce28065a4786c86
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.dev1770241571-cp38-cp38-macosx_11_0_arm64.whl

Download URL stim-1.16.dev1770241571-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
adc73dd49d97c2068ca7e607ac2dc38ed970142862f1fefd1c1f188a3f26299b
BLAKE2b-256 checksum
How to use checksums
7e33a2fe01a0cd730d80422eb93d81ef54147a357c05cc8f012004b0ee28fe72
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.dev1770241571-cp38-cp38-macosx_10_9_x86_64.whl

Download URL stim-1.16.dev1770241571-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
3e2c2832990f4a256b1388f835da08c6226ec753f77d00651f34f6bb152fc911
BLAKE2b-256 checksum
How to use checksums
27cd6e170bb5d9a1d6e8b24c915c6fdf85ef95208745a8ffbe14c92aae9018ec
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