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

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

Built distributions (wheels)

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

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

Download URL stim-1.16.dev1751007257.tar.gz
Size 854.0 kB
Tags Source
SHA-256 checksum
How to use checksums
7846fdf18551255abd50ccd0e43fd125408faf53023167de65356446d12325f4
BLAKE2b-256 checksum
How to use checksums
bd022177243c650072ee13ba2960100383df8307127543f8475c71b2ca52264b
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.dev1751007257-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL stim-1.16.dev1751007257-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
6d2b34c5f7bcea85e185039b5580f22b255285662e0acfa60533e4ed8a062f3b
BLAKE2b-256 checksum
How to use checksums
34e0822224006ecdbcd8903c4d3698dae31b0c7acfa52738254743f9195ca055
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.dev1751007257-cp313-cp313-macosx_11_0_arm64.whl

Download URL stim-1.16.dev1751007257-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
3a882e2aaac2e8a487e6c06ea43740a2e16735a334315f372b85b26adceb976a
BLAKE2b-256 checksum
How to use checksums
98e9114fd3fb573664b87f1207a041c15fee6c0fff2ad1daaa245f95a859abdf
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.dev1751007257-cp313-cp313-macosx_10_13_x86_64.whl

Download URL stim-1.16.dev1751007257-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
7391344562d653efec02657a1c7a1814c0f1f7d8e6e05236c4bd4492ad753ff1
BLAKE2b-256 checksum
How to use checksums
143cd9823cc96aa3b91126c77ec267afc86888565aa073364b4a211bb0e66778
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.dev1751007257-cp312-cp312-win_amd64.whl

Download URL stim-1.16.dev1751007257-cp312-cp312-win_amd64.whl
Size 2.7 MB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
9ba83c23ad08b79789a2e3a7dc6c1e368ae73c92662c4502ae0478b346d412bb
BLAKE2b-256 checksum
How to use checksums
d290001b593ffaa2a4c30e83eb1a9342c57e7585f78488633cd811f571c52a4b
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.dev1751007257-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL stim-1.16.dev1751007257-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
864eb013c53d10cd9dc4a2adad4ec2641f9f6be420dc4d0ebd77f255b93f4d72
BLAKE2b-256 checksum
How to use checksums
3376b53a5e5f803269927cbf38b43b8b004a1efe4039c952d570db494b21360f
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.dev1751007257-cp312-cp312-macosx_11_0_arm64.whl

Download URL stim-1.16.dev1751007257-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
87019cf084016d5fdca0bc5ba8515d54d3eccc52daf047d8d55508b403f82c82
BLAKE2b-256 checksum
How to use checksums
93d97f745d1f5e06eb034f49da4125883d41d22a03cb66f69a27d75032c6c384
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.dev1751007257-cp312-cp312-macosx_10_13_x86_64.whl

Download URL stim-1.16.dev1751007257-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
65a7d159ced26b2b2260a2685af110fedc772c4fb3bda3ee09e4720d67c73b00
BLAKE2b-256 checksum
How to use checksums
2b9b9696d5c80fc83959491f8e45560e0d3f7631c50884c5b7d1c65a46532f1a
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.dev1751007257-cp311-cp311-win_amd64.whl

Download URL stim-1.16.dev1751007257-cp311-cp311-win_amd64.whl
Size 2.7 MB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
785e7f4972ff5d1088aa057c921de8068e0a02bcec607616a3e6a956311bffc9
BLAKE2b-256 checksum
How to use checksums
a428e49cdbc2469f63f47eaa542dce14b6229bc6d8541e95770f9894acc5c4cb
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.dev1751007257-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL stim-1.16.dev1751007257-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
b65e549358c7c7f52a5b4c4baf7a745d0164c8fc300af88696ab0a00bfce9159
BLAKE2b-256 checksum
How to use checksums
d2879f6e302325833347e02101d8f76f0fa70b692033f0c5e3a165a98aad98d1
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.dev1751007257-cp311-cp311-macosx_11_0_arm64.whl

Download URL stim-1.16.dev1751007257-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
3bf386520c3ca0203c768f6e9012e279b0b3f08dc98e9fe66dd98f1bac34d098
BLAKE2b-256 checksum
How to use checksums
930a6976218ffb182b64c4349c74310f7e8dfe20e4ecd578b7ee6962726d115a
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.dev1751007257-cp311-cp311-macosx_10_9_x86_64.whl

Download URL stim-1.16.dev1751007257-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
c3508c00ab5b1bf531eac84e74857f7394d272953f692328790dde78f1440cd1
BLAKE2b-256 checksum
How to use checksums
43acf83e2229bbc2acd5443eecee5208329cf487481078ae76c9ff52238174dc
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.dev1751007257-cp310-cp310-win_amd64.whl

Download URL stim-1.16.dev1751007257-cp310-cp310-win_amd64.whl
Size 2.7 MB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
ba2b28ab750af4d3cbd8f37afd109750a70b12481d02bbd0be2c11063af55d3b
BLAKE2b-256 checksum
How to use checksums
a8e51c62ce40dfbf32966ee862e411a88a02c3ce4b8e8ec4a8a9ff8ba09ed5d9
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.dev1751007257-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL stim-1.16.dev1751007257-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
e237caa143053b064c311e5087dabbe1797607d9aeb75ce9ce97f7571fb3d03c
BLAKE2b-256 checksum
How to use checksums
210e7eb8ea14f1549758e2d3e7c0ce28503228f451a611624804065228dbde9b
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.dev1751007257-cp310-cp310-macosx_11_0_arm64.whl

Download URL stim-1.16.dev1751007257-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
d223737506f8eb05bb3c2d0a16c05cdb2e01ec140324af2db4d379cf0413d298
BLAKE2b-256 checksum
How to use checksums
6e0adc609b5fb5201ba2d5e69d6aa53fa1ddda266a6e41adec7efa8379aeae76
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.dev1751007257-cp310-cp310-macosx_10_9_x86_64.whl

Download URL stim-1.16.dev1751007257-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
87916037f874f6938f2ef0d33d2537b614b6a6fe53f5349bd13b83829d2021e5
BLAKE2b-256 checksum
How to use checksums
75a5bf65108d8f4cf3b798f8e6de1f577a4d3819f453b7d110093e0afdf40673
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.dev1751007257-cp39-cp39-win_amd64.whl

Download URL stim-1.16.dev1751007257-cp39-cp39-win_amd64.whl
Size 2.7 MB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
639ad2a697a67d181b52204a3f4f569ef9a1d3da013ed0f0165e777bf3b5d7cf
BLAKE2b-256 checksum
How to use checksums
4abb518076f70b6897ac3b7b92313c4864942ef357a0ad238adeb7213dbe20c9
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.dev1751007257-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL stim-1.16.dev1751007257-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
e8cc28764186bac379d7d6250bea6946cda8a9b9d6a0b208e6939b871cd91ab7
BLAKE2b-256 checksum
How to use checksums
cb4c32f2fef5920afc7d5398ed715dfb40389fe89bbd40f6198da4d44771ca3c
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.dev1751007257-cp39-cp39-macosx_11_0_arm64.whl

Download URL stim-1.16.dev1751007257-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
ba2bd8c9a92551511ddc0e2989512170c41dcf663c280790b97942f8115c9fdb
BLAKE2b-256 checksum
How to use checksums
00faacf08d9169da5b8cef1d574d4a2742965ad8a55a539df09326f619ccaeea
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.dev1751007257-cp39-cp39-macosx_10_9_x86_64.whl

Download URL stim-1.16.dev1751007257-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
555095b310af69ff88694bedbbf73d2e522ddbc09bdf0af9144f059a887e060d
BLAKE2b-256 checksum
How to use checksums
f804467fb43214631d53287073ab862dd9a751a8f7eb2ce6c8f8a545894a97f2
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.dev1751007257-cp38-cp38-win_amd64.whl

Download URL stim-1.16.dev1751007257-cp38-cp38-win_amd64.whl
Size 2.7 MB
Tags CPython 3.8 Windows x86-64
SHA-256 checksum
How to use checksums
5faf6fbd3051b39af435c2bbae814b355363b9e5b4f6de6e7926f4d119b82b21
BLAKE2b-256 checksum
How to use checksums
ad5683ccef14d50f0337b929d22a3c0440b476b24bf6f4e6b031ee81875310e2
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.dev1751007257-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL stim-1.16.dev1751007257-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
ec6ec165de488fd40f114cdeb84e6be8edcca73a2aefdf1791a8560a2973f8df
BLAKE2b-256 checksum
How to use checksums
c79cb4f0165c04f44332a647fb14443d870ec53b73a337451b982a59b63c9c79
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.dev1751007257-cp38-cp38-macosx_11_0_arm64.whl

Download URL stim-1.16.dev1751007257-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
040b35dc1ab8b1484bbf5d3554b9bdee08d9d4a6d043658995b389103e5a4b45
BLAKE2b-256 checksum
How to use checksums
ca48afd75f3196830843fcbd33dfb7a5d7a3a7b726e1870b7d63bca054e14254
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.dev1751007257-cp38-cp38-macosx_10_9_x86_64.whl

Download URL stim-1.16.dev1751007257-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
8e6ebaed0e2608cec15837e1737eb0df9fa5d131d10f59c9501cfc145bf55be0
BLAKE2b-256 checksum
How to use checksums
a9d521b515f7783447de412b2d9f433104bddbc8d15e8e2caa2a7297ed4e39a7
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.dev1751007257-cp37-cp37m-win_amd64.whl

Download URL stim-1.16.dev1751007257-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
cfd70367b26ce30ee1d9782a3113e42e1f2f96a981511085ba6c07950a6e96ad
BLAKE2b-256 checksum
How to use checksums
0e727f9410ad87bbae774f4e517cd483643ba277dca2ba9d245e1d3fb19b2201
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.dev1751007257-cp37-cp37m-win32.whl

Download URL stim-1.16.dev1751007257-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
5d7a10731b682839a5773833a065d1dcc94c1a0b2f4915f1816000611f24c5a6
BLAKE2b-256 checksum
How to use checksums
a538b0d7b77591034245dfe02b8e30c6be806582445aa472624b2dbaadffb2fa
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.dev1751007257-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL stim-1.16.dev1751007257-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
0761edc69c401fc10915eb6b32c4462c7f61cc7d0834903b6e4206bbb779f676
BLAKE2b-256 checksum
How to use checksums
024dacde481c859145806a241d5ca0a740ab20d3144ae998b11e5848ab87ce16
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.dev1751007257-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL stim-1.16.dev1751007257-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
a1d82fad6652afdd6ef0a45bf10023c80db0b4f3e1fd24920882477be5392eb8
BLAKE2b-256 checksum
How to use checksums
8eda093c9bd5ac3c5191d633d217f42059d7f75844f9c50d87080a2e73c93171
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.dev1751007257-cp37-cp37m-macosx_10_9_x86_64.whl

Download URL stim-1.16.dev1751007257-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
6f8909d472d89e276295c6f8d552a31846774eac90355baf09ed41e88e50a63a
BLAKE2b-256 checksum
How to use checksums
f8f8dd07660a3641c332be195bb4c5f50bac296bd8b1046aeee6271cedfaca14
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.dev1751007257-cp36-cp36m-win_amd64.whl

Download URL stim-1.16.dev1751007257-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
6535a904ac3334e17d135bd4243681a41ee568724eb3cb085ef35058669360e3
BLAKE2b-256 checksum
How to use checksums
5861b6957169eeb834f84a4b77e962742380d7f3637d9dbc032ba4efeb33a08f
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.dev1751007257-cp36-cp36m-win32.whl

Download URL stim-1.16.dev1751007257-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
e3c98438175db3e3723ae3b9bac3cf0887f07156387b0c252db6686e4dbe8f89
BLAKE2b-256 checksum
How to use checksums
39051961c096993b845f1ba2a1c97f0100716209f59de6cdb19864775b9b8194
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.dev1751007257-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL stim-1.16.dev1751007257-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
3670e9cdcd0a3300e683989196ee5634f6851d5e30dbb3515017cbe650975805
BLAKE2b-256 checksum
How to use checksums
af693f2f04f9c9f2ef3bac7ecfb399df500eb3f84a455aa071692a3e8e1b6f70
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.dev1751007257-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL stim-1.16.dev1751007257-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
914a9d540a721dd9b9aa10f92a68654827d40fc63b6884ae26cbaa914bbb9e2f
BLAKE2b-256 checksum
How to use checksums
c0314195cbf141c42c22b6ab19ccb17e46988409c72b5a06afa16e2bfe0001aa
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.dev1751007257-cp36-cp36m-macosx_10_9_x86_64.whl

Download URL stim-1.16.dev1751007257-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
4cc94610eae81da575f63d2da3229041f1c063fb63a8cebd0d4f4168e06c0058
BLAKE2b-256 checksum
How to use checksums
dd80b882297f8fae8556eaf5b6bbbeed24c6e1ac1c8faf44b21634a7b81ed286
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