Skip to main content
Pre-release

This release is a pre-release and may not be stable for production use.

Stim

Stim is a fast simulator for quantum stabilizer circuits.

API references are available on the stim github wiki: https://github.com/quantumlib/stim/wiki

Stim can be installed into a python 3 environment using pip:

pip install stim

Once stim is installed, you can import stim and use it. There are three supported use cases:

  1. Interactive simulation with stim.TableauSimulator.
  2. High speed sampling with samplers compiled from stim.Circuit.
  3. Independent exploration using stim.Tableau and stim.PauliString.

Interactive Simulation

Use stim.TableauSimulator to simulate operations one by one while inspecting the results:

import stim

s = stim.TableauSimulator()

# Create a GHZ state.
s.h(0)
s.cnot(0, 1)
s.cnot(0, 2)

# Look at the simulator state re-inverted to be forwards:
t = s.current_inverse_tableau()
print(t**-1)
# prints:
# +-xz-xz-xz-
# | ++ ++ ++
# | ZX _Z _Z
# | _X XZ __
# | _X __ XZ

# Measure the GHZ state.
print(s.measure_many(0, 1, 2))
# prints one of:
# [True, True, True]
# or:
# [False, False, False]

High Speed Sampling

By creating a stim.Circuit and compiling it into a sampler, samples can be generated very quickly:

import stim

# Create a circuit that measures a large GHZ state.
c = stim.Circuit()
c.append("H", [0])
for k in range(1, 30):
    c.append("CNOT", [0, k])
c.append("M", range(30))

# Compile the circuit into a high performance sampler.
sampler = c.compile_sampler()

# Collect a batch of samples.
# Note: the ideal batch size, in terms of speed per sample, is roughly 1024.
# Smaller batches are slower because they are not sufficiently vectorized.
# Bigger batches are slower because they use more memory.
batch = sampler.sample(1024)
print(type(batch))  # numpy.ndarray
print(batch.dtype)  # numpy.uint8
print(batch.shape)  # (1024, 30)
print(batch)
# Prints something like:
# [[1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1]
#  [0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0]
#  [1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1]
#  ...
#  [1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1]
#  [1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1]
#  [0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0]
#  [1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1]]

This also works on circuits that include noise:

import stim
import numpy as np

c = stim.Circuit("""
    X_ERROR(0.1) 0
    Y_ERROR(0.2) 1
    Z_ERROR(0.3) 2
    DEPOLARIZE1(0.4) 3
    DEPOLARIZE2(0.5) 4 5
    M 0 1 2 3 4 5
""")
batch = c.compile_sampler().sample(2**20)
print(np.mean(batch, axis=0).round(3))
# Prints something like:
# [0.1   0.2   0.    0.267 0.267 0.266]

You can also sample annotated detection events using stim.Circuit.compile_detector_sampler.

For a list of gates that can appear in a stim.Circuit, see the latest readme on github.

Independent Exploration

Stim provides data types stim.PauliString and stim.Tableau, which support a variety of fast operations.

import stim

xx = stim.PauliString("XX")
yy = stim.PauliString("YY")
assert xx * yy == -stim.PauliString("ZZ")

s = stim.Tableau.from_named_gate("S")
print(repr(s))
# prints:
# stim.Tableau.from_conjugated_generators(
#     xs=[
#         stim.PauliString("+Y"),
#     ],
#     zs=[
#         stim.PauliString("+Z"),
#     ],
# )

s_dag = stim.Tableau.from_named_gate("S_DAG")
assert s**-1 == s_dag
assert s**1000000003 == s_dag

cnot = stim.Tableau.from_named_gate("CNOT")
cz = stim.Tableau.from_named_gate("CZ")
h = stim.Tableau.from_named_gate("H")
t = stim.Tableau(5)
t.append(cnot, [1, 4])
t.append(h, [4])
t.append(cz, [1, 4])
t.prepend(h, [4])
assert t == stim.Tableau(5)

Release files for stim 1.15.dev1741046612

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for stim 1.15.dev1741046612
File Size Uploaded
stim-1.15.dev1741046612.tar.gz 829.0 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for stim 1.15.dev1741046612
File
stim-1.15.dev1741046612-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
stim-1.15.dev1741046612-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ x86-64 Details
stim-1.15.dev1741046612-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
stim-1.15.dev1741046612-cp312-cp312-macosx_10_9_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.9+ x86-64 Details
stim-1.15.dev1741046612-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
stim-1.15.dev1741046612-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-64 Details
stim-1.15.dev1741046612-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
stim-1.15.dev1741046612-cp311-cp311-macosx_10_9_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.9+ x86-64 Details
stim-1.15.dev1741046612-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
stim-1.15.dev1741046612-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-64 Details
stim-1.15.dev1741046612-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
stim-1.15.dev1741046612-cp310-cp310-macosx_10_9_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.9+ x86-64 Details
stim-1.15.dev1741046612-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
stim-1.15.dev1741046612-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ x86-64 Details
stim-1.15.dev1741046612-cp39-cp39-macosx_11_0_arm64.whl CPython 3.9 CPython 3.9 macOS 11.0+ ARM64 Details
stim-1.15.dev1741046612-cp39-cp39-macosx_10_9_x86_64.whl CPython 3.9 CPython 3.9 macOS 10.9+ x86-64 Details
stim-1.15.dev1741046612-cp38-cp38-win_amd64.whl CPython 3.8 CPython 3.8 Windows x86-64 Details
stim-1.15.dev1741046612-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ x86-64 Details
stim-1.15.dev1741046612-cp38-cp38-macosx_11_0_arm64.whl CPython 3.8 CPython 3.8 macOS 11.0+ ARM64 Details
stim-1.15.dev1741046612-cp38-cp38-macosx_10_9_x86_64.whl CPython 3.8 CPython 3.8 macOS 10.9+ x86-64 Details
stim-1.15.dev1741046612-cp37-cp37m-win_amd64.whl CPython 3.7 CPython 3.7 pymalloc Windows x86-64 Details
stim-1.15.dev1741046612-cp37-cp37m-win32.whl CPython 3.7 CPython 3.7 pymalloc Windows x86-32 Details
stim-1.15.dev1741046612-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-64 Details
stim-1.15.dev1741046612-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-32 Details
stim-1.15.dev1741046612-cp37-cp37m-macosx_10_9_x86_64.whl CPython 3.7 CPython 3.7 pymalloc macOS 10.9+ x86-64 Details
stim-1.15.dev1741046612-cp36-cp36m-win_amd64.whl CPython 3.6 CPython 3.6 pymalloc Windows x86-64 Details
stim-1.15.dev1741046612-cp36-cp36m-win32.whl CPython 3.6 CPython 3.6 pymalloc Windows x86-32 Details
stim-1.15.dev1741046612-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ x86-64 Details
stim-1.15.dev1741046612-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ x86-32 Details
stim-1.15.dev1741046612-cp36-cp36m-macosx_10_9_x86_64.whl CPython 3.6 CPython 3.6 pymalloc macOS 10.9+ x86-64 Details

Total release size: 96.2 MB

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

Download URL stim-1.15.dev1741046612.tar.gz
Size 829.0 kB
Tags Source
SHA-256 checksum
How to use checksums
5f8c18ffa39f37fc971946c814fe55c5225490c7fb220068474a76f92495c352
BLAKE2b-256 checksum
How to use checksums
4757b8d368fd6d98db476b0769d38870c14a292659bbd7f7560a2c9c0a53938b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.9

Release files / stim-1.15.dev1741046612-cp312-cp312-win_amd64.whl

Download URL stim-1.15.dev1741046612-cp312-cp312-win_amd64.whl
Size 2.6 MB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
50815a38b3b7277e666b38e64a3be26e02fab1f1a7c1cb5127aad40c88beb67a
BLAKE2b-256 checksum
How to use checksums
2d39671712a8abc6068135a1e455bbbeced93116a10d8074a2bcb9c2c00e770e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.9

Release files / stim-1.15.dev1741046612-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL stim-1.15.dev1741046612-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 4.8 MB
Tags CPython 3.12 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
a13d7c64977456209dfcd50041d0a463719084e145c1e21d939e6a151d6c18d9
BLAKE2b-256 checksum
How to use checksums
7b3bfc33c2c70526d681cfcdc5e9a22b0fb6aad0e36d54c78a7615c496d1c137
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.9

Release files / stim-1.15.dev1741046612-cp312-cp312-macosx_11_0_arm64.whl

Download URL stim-1.15.dev1741046612-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
dd8df5f840d7435c4c8283e8bdb1a55b3f607506cef7151e551fb1de49ac5628
BLAKE2b-256 checksum
How to use checksums
dac34689ea8ca0412ae973793aa3b7f81d846193d93eeb185d88314f1f53c299
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.9

Release files / stim-1.15.dev1741046612-cp312-cp312-macosx_10_9_x86_64.whl

Download URL stim-1.15.dev1741046612-cp312-cp312-macosx_10_9_x86_64.whl
Size 1.9 MB
Tags CPython 3.12 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
16d28efd664223aae2527a3a26ca47dd255696aa0d8cea07ffdff2c6936e1742
BLAKE2b-256 checksum
How to use checksums
80ed50fe6fc0930610bceeadd416e15aa9fa31655912a2896e49fba87cc062a7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.9

Release files / stim-1.15.dev1741046612-cp311-cp311-win_amd64.whl

Download URL stim-1.15.dev1741046612-cp311-cp311-win_amd64.whl
Size 2.6 MB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
8d9421e7063042ee5772c83fba6c6696140238b4a913180b0fb7cfb780c9e246
BLAKE2b-256 checksum
How to use checksums
7ed86d8bcac8d1569985d4f46cd13be903c72146f68c9522f9c189b2253aef03
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.9

Release files / stim-1.15.dev1741046612-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL stim-1.15.dev1741046612-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 4.8 MB
Tags CPython 3.11 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
2df1d96c4519f0a737024db7e2263fecf857a5388f61a3212905b96c74e7b372
BLAKE2b-256 checksum
How to use checksums
d27113329030f38d9095913eb4d35a4aa9bb94c8cbd19438105371a428888c55
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.9

Release files / stim-1.15.dev1741046612-cp311-cp311-macosx_11_0_arm64.whl

Download URL stim-1.15.dev1741046612-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
196b4bab99dffaeed2d00ecf38252802a8b8ca600a4b65fb5f525b319a91b79e
BLAKE2b-256 checksum
How to use checksums
c6e4e9ac27e2196ef10cfc47aa332628a3797eeb553fc4b1e440e367c3785da5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.9

Release files / stim-1.15.dev1741046612-cp311-cp311-macosx_10_9_x86_64.whl

Download URL stim-1.15.dev1741046612-cp311-cp311-macosx_10_9_x86_64.whl
Size 1.9 MB
Tags CPython 3.11 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
4b34f139c950b7db22b593149a70b9c58b4d589f21530f327669e7cf1d5913d8
BLAKE2b-256 checksum
How to use checksums
3f30fefb435557dbc5715733f51fc9fbef2a3d194440f5db785e18f988e349d3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.9

Release files / stim-1.15.dev1741046612-cp310-cp310-win_amd64.whl

Download URL stim-1.15.dev1741046612-cp310-cp310-win_amd64.whl
Size 2.6 MB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
16a47b9172d3395ee2daf74dffb703adb6efce943997a4dc93788fb8180cc24c
BLAKE2b-256 checksum
How to use checksums
8bcb410d3f70e5ff314e47306de0ed043abc3d5e95b726c291c82741702c2c11
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.9

Release files / stim-1.15.dev1741046612-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL stim-1.15.dev1741046612-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 4.8 MB
Tags CPython 3.10 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
02c8787dc8ceeb3d25a95666c3379aeb42228b2c5325872be54bded649b2642e
BLAKE2b-256 checksum
How to use checksums
964a0e77acf311a2a9561fe83892bb3366f8036a5e8c8cf8a89e9a7eb408ede8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.9

Release files / stim-1.15.dev1741046612-cp310-cp310-macosx_11_0_arm64.whl

Download URL stim-1.15.dev1741046612-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
1b5071c6d21cfe08b855c11d41fe46272ed7387ea6512c89a2b7589b52fa6d8d
BLAKE2b-256 checksum
How to use checksums
bba9fb7e612586915f416d5a76b3aa275d0a88cad54fe1700c9b506bb4c3bafb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.9

Release files / stim-1.15.dev1741046612-cp310-cp310-macosx_10_9_x86_64.whl

Download URL stim-1.15.dev1741046612-cp310-cp310-macosx_10_9_x86_64.whl
Size 1.9 MB
Tags CPython 3.10 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
73e45f793831f176a4cf9b0cfdebc431594161d166d3d63fe54be944973997d0
BLAKE2b-256 checksum
How to use checksums
e8ed3efed33ba36429359782f3f8b6a423e38f657d09e53b3c5dda0b56c7a2c9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.9

Release files / stim-1.15.dev1741046612-cp39-cp39-win_amd64.whl

Download URL stim-1.15.dev1741046612-cp39-cp39-win_amd64.whl
Size 2.6 MB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
197f59e65141c8da7b57f4d1653790ca124065ef9fee87f8fc7a8d9b025a05a3
BLAKE2b-256 checksum
How to use checksums
11408858a3a9d6e39c1c63ab9ca4e1fd5aa2cc5c3f918931a89724996a4ccc00
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.9

Release files / stim-1.15.dev1741046612-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL stim-1.15.dev1741046612-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 4.8 MB
Tags CPython 3.9 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
b0b66b7c8288e5257758f859536fff55e21a28e1e5ceff07e303bccb38a67a5e
BLAKE2b-256 checksum
How to use checksums
5e5fe5392beeb1e04531dc8fece221e843a2757f29007f5e38d1976517c3df33
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.9

Release files / stim-1.15.dev1741046612-cp39-cp39-macosx_11_0_arm64.whl

Download URL stim-1.15.dev1741046612-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
60aed81537381d368f07e6894d348d6710f2674439c5a97250b0ef93bd8536a5
BLAKE2b-256 checksum
How to use checksums
f0ac08aa061b9a9992efeed4b4a356e22a78e23162c93fbd0a0695c0fe66edbb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.9

Release files / stim-1.15.dev1741046612-cp39-cp39-macosx_10_9_x86_64.whl

Download URL stim-1.15.dev1741046612-cp39-cp39-macosx_10_9_x86_64.whl
Size 1.9 MB
Tags CPython 3.9 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
04132dbc45689bd86066934a7d9729768aa4d5c8c9b285ac93f9adacc75f5fc3
BLAKE2b-256 checksum
How to use checksums
0883ef499b6adb9065056897b0dc9e3f206211640d852571e7cb95e5bc8f7f44
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.9

Release files / stim-1.15.dev1741046612-cp38-cp38-win_amd64.whl

Download URL stim-1.15.dev1741046612-cp38-cp38-win_amd64.whl
Size 2.6 MB
Tags CPython 3.8 Windows x86-64
SHA-256 checksum
How to use checksums
fad4af0297dbe838df0834145ffb55969526ec613cc6599a084bb6cd395e1459
BLAKE2b-256 checksum
How to use checksums
812a9a9b088dc46ee3c27734f97dfdfda6553fa527e0d6ecdd9ee2a656ba1b1c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.9

Release files / stim-1.15.dev1741046612-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL stim-1.15.dev1741046612-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 4.8 MB
Tags CPython 3.8 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
5b6a901d51780cb599f6e0d9a78eb14a8efc0f77d63bf3a3b8211236119477b9
BLAKE2b-256 checksum
How to use checksums
73cd0c7f8c9b59c07b160165957372b9c87fdb9f1d2f8c42fe5b3ca84199930a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.9

Release files / stim-1.15.dev1741046612-cp38-cp38-macosx_11_0_arm64.whl

Download URL stim-1.15.dev1741046612-cp38-cp38-macosx_11_0_arm64.whl
Size 3.4 MB
Tags CPython 3.8 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
3bf991886cc572aefa6b332054acbc29474b58d8cdd06c1bcf3708e5ac9e1303
BLAKE2b-256 checksum
How to use checksums
618bf4648612d815bb6e33e7812e0b3ad0b57d9ebc6a92b3a6f35af139eb78ad
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.9

Release files / stim-1.15.dev1741046612-cp38-cp38-macosx_10_9_x86_64.whl

Download URL stim-1.15.dev1741046612-cp38-cp38-macosx_10_9_x86_64.whl
Size 3.6 MB
Tags CPython 3.8 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
a11627813f0e59a72d61f70d4b1ff072f50bcf07f3bddd4c41daf1dfd254cd44
BLAKE2b-256 checksum
How to use checksums
3ae45cd2e5693011832fb6f1b422f6bf25aa4c702dbd1b4f57d59a174c0e5aa2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.9

Release files / stim-1.15.dev1741046612-cp37-cp37m-win_amd64.whl

Download URL stim-1.15.dev1741046612-cp37-cp37m-win_amd64.whl
Size 2.5 MB
Tags CPython 3.7 CPython 3.7 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
55f7232a1d7ee82b9c6ff9e65fc1181bb4a564400dafa05f965388192d1702a9
BLAKE2b-256 checksum
How to use checksums
e115b264d6e1d9c427b7493c07ce8a094ddc3a6208535c3c88b3e5058465afa1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.9

Release files / stim-1.15.dev1741046612-cp37-cp37m-win32.whl

Download URL stim-1.15.dev1741046612-cp37-cp37m-win32.whl
Size 2.3 MB
Tags CPython 3.7 CPython 3.7 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
8fc50875ab3a7be5777eb6f97655f8d895b61daa6633a8156894a3d3754a6ab0
BLAKE2b-256 checksum
How to use checksums
7aa83c3aca2aef5bf706966e6fecb4e41fb91eb1f452c030453ef87fbc95c9b1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.9

Release files / stim-1.15.dev1741046612-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL stim-1.15.dev1741046612-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 4.8 MB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
bee4617452de615772c86a7036c6c4ed0efe3007e778ea7dcfb0f322c31bede2
BLAKE2b-256 checksum
How to use checksums
90837ab7872114e2eb8fd79e9325367b397a808c84b4b1caf12cf1c602ddec97
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.9

Release files / stim-1.15.dev1741046612-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL stim-1.15.dev1741046612-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Size 5.1 MB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
241fb3544d1d2120b3bd0d4af2c66b6d4e0091feac2bc532d52b027be07d4cae
BLAKE2b-256 checksum
How to use checksums
ece16a3fb20bb9f2eceb60c3745cc0a5a3244d62ad4c3d069dbf07c676698422
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.9

Release files / stim-1.15.dev1741046612-cp37-cp37m-macosx_10_9_x86_64.whl

Download URL stim-1.15.dev1741046612-cp37-cp37m-macosx_10_9_x86_64.whl
Size 3.6 MB
Tags CPython 3.7 CPython 3.7 pymalloc macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
142225c602410379fab8fd2a7846c80b867656d4b4696381f51b800b896161fa
BLAKE2b-256 checksum
How to use checksums
43522313fc74b4fc31a52b88f315a1197d1c00efaf84973aa5c5f721fdecfca0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.9

Release files / stim-1.15.dev1741046612-cp36-cp36m-win_amd64.whl

Download URL stim-1.15.dev1741046612-cp36-cp36m-win_amd64.whl
Size 2.5 MB
Tags CPython 3.6 CPython 3.6 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
70884faa8e7176fe6a50518d363a2ff31fc294e5de12fe4c41504e6e8c92504b
BLAKE2b-256 checksum
How to use checksums
0f1067b3e0ab5d344e6d339c226177917ee5a14a56c3765d46206067a1e61d72
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.9

Release files / stim-1.15.dev1741046612-cp36-cp36m-win32.whl

Download URL stim-1.15.dev1741046612-cp36-cp36m-win32.whl
Size 2.3 MB
Tags CPython 3.6 CPython 3.6 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
a733923c4df2ab1effdb5c0bc28aaecb15c688a3b6bcc1dabb09a4c7c975d506
BLAKE2b-256 checksum
How to use checksums
5b81ef1ab513c15d36d97fe22413f066d802884432ef281a34b00c765b9e0403
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.9

Release files / stim-1.15.dev1741046612-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL stim-1.15.dev1741046612-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 4.8 MB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
65f86a9152a153f1d70e1a3aad3b98c69241c65eb1c1feec5b76fee91ed66760
BLAKE2b-256 checksum
How to use checksums
aa1943fbde25b6fa013cb04dcd677afc8f334819d8f4c94b7093b104b8c2ae4b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.9

Release files / stim-1.15.dev1741046612-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL stim-1.15.dev1741046612-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Size 5.1 MB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
f73d292653c3b3b226c6d49f6189bad4fb460909854bb4073320e9a85308cb02
BLAKE2b-256 checksum
How to use checksums
4f9251e57de749d4afe94146faff6478f634d37c73cc385a958cde892057f28c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.9

Release files / stim-1.15.dev1741046612-cp36-cp36m-macosx_10_9_x86_64.whl

Download URL stim-1.15.dev1741046612-cp36-cp36m-macosx_10_9_x86_64.whl
Size 3.6 MB
Tags CPython 3.6 CPython 3.6 pymalloc macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
f1ca81ca862cdd90df76d31db4fc106cba598a47b6176a7f41530906ecff6b35
BLAKE2b-256 checksum
How to use checksums
4d3f70ae64a2f16ef038cb3867cfec4f682600b6c319a2d7a4b55e0ea415da97
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