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

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

Built distributions (wheels)

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

Total release size: 112.7 MB

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

Download URL stim-1.16.dev1757527933.tar.gz
Size 862.8 kB
Tags Source
SHA-256 checksum
How to use checksums
d4065af0cf6c72864d6e8765a52ded85ced6b7a8cb4c012f997226494cd09919
BLAKE2b-256 checksum
How to use checksums
13af807a20966722b629666f4c07801ec8055ed65a0a50b9d250c675c2f8cb40
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.dev1757527933-cp313-cp313-win_amd64.whl

Download URL stim-1.16.dev1757527933-cp313-cp313-win_amd64.whl
Size 2.7 MB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
f1ac8eec27429720bfd8d7c86297f96acfbf3e3c0d6db2e69a64df41b11d7724
BLAKE2b-256 checksum
How to use checksums
d31565d6ac6e95451c8d3526ae524f9b374bc1cabbedf3b94c1b729058689fc9
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.dev1757527933-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL stim-1.16.dev1757527933-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 5.1 MB
Tags CPython 3.13 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
0ac084472ea9b634eda165c6ed53b7cf2a054fb29b3148461087c4eb9c0c38ef
BLAKE2b-256 checksum
How to use checksums
7452c2debfdf08d2ba23adc1f94167d4930b3033687f34aa3217f5367e7fd5ee
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.dev1757527933-cp313-cp313-macosx_11_0_arm64.whl

Download URL stim-1.16.dev1757527933-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
57d6a42e8ba0466374e8783b390ca727c986e3e0f1fe94f15c1c4ef30267cf05
BLAKE2b-256 checksum
How to use checksums
3cf81b63f69a27214702fd22a6a6af89a0a7f957614cd62fdfdf2a7599c6ae59
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.dev1757527933-cp313-cp313-macosx_10_13_x86_64.whl

Download URL stim-1.16.dev1757527933-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
04527171b5dca18454ef114568a808f88fd421f3d01c8272e986260b84e60f67
BLAKE2b-256 checksum
How to use checksums
bb0b36aed18b88f71ab413a408b9fd892c0613dd9dcd71129d59fc79e02b57a1
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.dev1757527933-cp312-cp312-win_amd64.whl

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

Download URL stim-1.16.dev1757527933-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 5.1 MB
Tags CPython 3.12 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
63eadcaf773fd1199c2c603b2df263e9b62539b0a68085836ac399f36cf40cb4
BLAKE2b-256 checksum
How to use checksums
335f6bec44bc82c4fc7b0fb64ea6e2eabd8e02df381ca0c58c2520423c6efa7d
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.dev1757527933-cp312-cp312-macosx_11_0_arm64.whl

Download URL stim-1.16.dev1757527933-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
d58ce0d69942bcce74340a5fb1e00cd7d41f514b27e566b7ebd81a4f59c11d50
BLAKE2b-256 checksum
How to use checksums
0a50a6432163a6bbf73e655cf46d8fe2264995a9be660a8c72b95dda0860c563
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.dev1757527933-cp312-cp312-macosx_10_13_x86_64.whl

Download URL stim-1.16.dev1757527933-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
e7dcdb78efc79abd182c93af79326deea1926a7aef8abe0446f20774bb45e801
BLAKE2b-256 checksum
How to use checksums
5ef227544cb800cab5b0eb9f86e4dd3ebc60f44b6ad755695ad1bdf1bd83a2c4
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.dev1757527933-cp311-cp311-win_amd64.whl

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

Download URL stim-1.16.dev1757527933-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 5.1 MB
Tags CPython 3.11 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
3d3d43d1e8ad49353cd0a4ff76c38622ede903b5663c4d80295ccd5b2d77f741
BLAKE2b-256 checksum
How to use checksums
642d84c264befd40a35d659c06625002b6644459226e04e6a0a6b4c32859a567
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.dev1757527933-cp311-cp311-macosx_11_0_arm64.whl

Download URL stim-1.16.dev1757527933-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
f4cbfd32719d3c4f246d5eb4ebf84b0100b329c0511987b196eecc3d8ed10ee2
BLAKE2b-256 checksum
How to use checksums
ff2d20d53c09590d8f87dc47ef40462bbf502a7781ea352bfa0483ea1173f5f3
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.dev1757527933-cp311-cp311-macosx_10_9_x86_64.whl

Download URL stim-1.16.dev1757527933-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
4225d0983ecf0fc9b74fc6ab8d1ddc775ec8455bc60d46792d7cd801247c0211
BLAKE2b-256 checksum
How to use checksums
235a5a727ecc965673689b6ba0fc908332238e2909e82d41611ecd0b9a5d2705
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.dev1757527933-cp310-cp310-win_amd64.whl

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

Download URL stim-1.16.dev1757527933-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 5.1 MB
Tags CPython 3.10 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
e6ccf94bfde1a891923fbcb354f0b4b4e6582a0204ed4a9e3b238ad3c9ed8a9c
BLAKE2b-256 checksum
How to use checksums
5cf331c70ce899e41ec0edd1197e0b0292c4553089e8e0859436f9e5e1923178
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.dev1757527933-cp310-cp310-macosx_11_0_arm64.whl

Download URL stim-1.16.dev1757527933-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
c93ca0595cfb0baefc4fa8b4c5d3afe83be0358c802d19cd6eb71af6b9595b34
BLAKE2b-256 checksum
How to use checksums
474f72d1d3f23424597442ef6cdefdd6a0390caface6785b6940ef86cb7dfde9
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.dev1757527933-cp310-cp310-macosx_10_9_x86_64.whl

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

Download URL stim-1.16.dev1757527933-cp39-cp39-win_amd64.whl
Size 2.8 MB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
e45853bfeef8b0610a657dda5cde3f0d28e08dd2e553edb4ed7a23f366a69040
BLAKE2b-256 checksum
How to use checksums
cc9158fe6eb6207eb486235bc5790053d9abe2ef1a3f8f0bbc3d17d2604f96af
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.dev1757527933-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL stim-1.16.dev1757527933-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 5.1 MB
Tags CPython 3.9 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
53824bd227c5cb57f148ac492e94d1f4f95b060951f4e8402a655c9dc576bbf9
BLAKE2b-256 checksum
How to use checksums
7375355fb8cd2738d0a7ebec7997e4aaf7a28ae20467386834d4af6e8d5db147
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.dev1757527933-cp39-cp39-macosx_11_0_arm64.whl

Download URL stim-1.16.dev1757527933-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
12c43f4f8bf8fab2a8550bdf77e525ecbf95beb42bc22f95c9054b89d0d763de
BLAKE2b-256 checksum
How to use checksums
ae3291f0cd53a3744de9024ba9498ebb77b4375dc153dc2a40ade95fc1be64c7
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.dev1757527933-cp39-cp39-macosx_10_9_x86_64.whl

Download URL stim-1.16.dev1757527933-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
25137673bbad5fa90f6462581fb8c348223dff658023879a1fe3ec93819c844d
BLAKE2b-256 checksum
How to use checksums
4096e96dcfd6144b8bcff0e9a1b96e98ecd652cb4d56c1065b9a8def4e2caaed
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.dev1757527933-cp38-cp38-win_amd64.whl

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

Download URL stim-1.16.dev1757527933-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 5.1 MB
Tags CPython 3.8 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
fe110cc43d68873149c9e31301ec6a6dc63d7e2ea7e2856d7da9c67dcc35adf5
BLAKE2b-256 checksum
How to use checksums
983b498aa42fd4036b35a5a447f3265e7e88519679e77421199bf7935504a3b6
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.dev1757527933-cp38-cp38-macosx_11_0_arm64.whl

Download URL stim-1.16.dev1757527933-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
2ce33622f8099d742ea22f2a9cf808065f15f4c5d66efac7ac1222c06bfea524
BLAKE2b-256 checksum
How to use checksums
95538b45d3147d3340a2743634d4a4d50b562c4a64d8e9c07402afb3ad624577
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.dev1757527933-cp38-cp38-macosx_10_9_x86_64.whl

Download URL stim-1.16.dev1757527933-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
1b425340af4f43b4aa545a385f7d96eab9a665c44a9c1cd3755c7691cb297664
BLAKE2b-256 checksum
How to use checksums
228325e03bbbc599fde2e70cf0d401c6be2d45dff0b64ed6d6a0e0f1c6373b29
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.dev1757527933-cp37-cp37m-win_amd64.whl

Download URL stim-1.16.dev1757527933-cp37-cp37m-win_amd64.whl
Size 2.7 MB
Tags CPython 3.7 CPython 3.7 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
e8ac0c93ddcd74aadb204a516a0ccd45e37b005aa13c46812e6714aa272e619a
BLAKE2b-256 checksum
How to use checksums
f265d0b6ffae9a8c32049287ba207dd21c85ebe937f0840e774fe7e5b93ae217
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.dev1757527933-cp37-cp37m-win32.whl

Download URL stim-1.16.dev1757527933-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
b9f8570f31ebc66ead3eb93844a268489582ac895c0cb44ece2d2f8309937ca6
BLAKE2b-256 checksum
How to use checksums
d5c952fe11990620eb0e0e1f5ff8ea1f32dac4f611bca802754f1af2cca2a402
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.dev1757527933-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL stim-1.16.dev1757527933-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 5.1 MB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
eddaa3ec02bf13b8d31e2b1b02581489449512314ff42dbf0e4eccafe91dd930
BLAKE2b-256 checksum
How to use checksums
2d3cd7a8c36eaa3d1effcb2713352e9b4a49be3674dfcc707786e5ee5107bb4b
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.dev1757527933-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL stim-1.16.dev1757527933-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Size 5.3 MB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
38c414f8f4dc7ea516b1f9878fe57a155b3e54488c8b1019577c05df77cdec2b
BLAKE2b-256 checksum
How to use checksums
6f0e396675cc5e5a0a2dc644080524ae6aa4cbd189ee751ed121c6a42e047637
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.dev1757527933-cp37-cp37m-macosx_10_9_x86_64.whl

Download URL stim-1.16.dev1757527933-cp37-cp37m-macosx_10_9_x86_64.whl
Size 3.8 MB
Tags CPython 3.7 CPython 3.7 pymalloc macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
7c10382d8aa59a2b3285a06247757916e6753c58a445ace373e60b0c6565b03a
BLAKE2b-256 checksum
How to use checksums
53ed207de216b93f88517b08f81a4e28dbf711ac74cff4317a410ae35129d914
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.dev1757527933-cp36-cp36m-win_amd64.whl

Download URL stim-1.16.dev1757527933-cp36-cp36m-win_amd64.whl
Size 2.7 MB
Tags CPython 3.6 CPython 3.6 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
edae476ee0fc8effc10d9285365b24cc26a232d001c7461ad5c77eab3194e338
BLAKE2b-256 checksum
How to use checksums
0380b6c8d9e4b797dcc6af39363961f5c78f4172433e6a8d66a6be26977f7008
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.dev1757527933-cp36-cp36m-win32.whl

Download URL stim-1.16.dev1757527933-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
7b05320174ea5440bb5f41b6290a4e35008afb18c52b1c3bc6c85b516325552b
BLAKE2b-256 checksum
How to use checksums
d3bfd1c76fb87e0ee1bd4800aa0d8e0fbd1c997a6b93acee746f5be694ea2e12
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.dev1757527933-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL stim-1.16.dev1757527933-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 5.1 MB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
5a07621ba0c75c42e08b0218682fda3804ce42e05ceeec306c14b324c3764598
BLAKE2b-256 checksum
How to use checksums
026c307fa5b42f18db56c1c1b8bd43bd5dc8c4f273ad4ac7f2092745ef30d74d
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.dev1757527933-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL stim-1.16.dev1757527933-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Size 5.3 MB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
d5eb480bac04ccb8dbbba14ef22335b7d9ee94a8d5858aaede633275864fdad7
BLAKE2b-256 checksum
How to use checksums
6705c09f475b7d3e82e302a41b53f2fd9703f844fea511f5b9479c52317be857
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.dev1757527933-cp36-cp36m-macosx_10_9_x86_64.whl

Download URL stim-1.16.dev1757527933-cp36-cp36m-macosx_10_9_x86_64.whl
Size 3.8 MB
Tags CPython 3.6 CPython 3.6 pymalloc macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
b8e0589eeafbe71a3ffaa6ee922dc9c5b83be4773ebd7d42a98cd53f214aa1ba
BLAKE2b-256 checksum
How to use checksums
3d2c986d89b9d0583bdcf51239bad8082c262dfa0e318c6db27a1d2a2ad28734
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