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

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.dev1742858851
File Size Uploaded
stim-1.15.dev1742858851.tar.gz 841.0 kB Details

Built distributions (wheels)

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

Total release size: 98.1 MB

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

Download URL stim-1.15.dev1742858851.tar.gz
Size 841.0 kB
Tags Source
SHA-256 checksum
How to use checksums
bbc31933888e454182f5ed5a7c258531126c63ef4bdef37593e2f5e2353600f8
BLAKE2b-256 checksum
How to use checksums
f814f3ae41f4769d4ed659f736a9e1ff8d6739298fb393ce2deab0608686afe9
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.dev1742858851-cp312-cp312-win_amd64.whl

Download URL stim-1.15.dev1742858851-cp312-cp312-win_amd64.whl
Size 2.6 MB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
0523d4f700660bace4b61d7c90644afa4906c590a88f73bbaee039a6634bb595
BLAKE2b-256 checksum
How to use checksums
bfee728dc05ce174055868df1f43c6383c6275ca7e0bb46948985ee31f8bedcc
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.dev1742858851-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL stim-1.15.dev1742858851-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 4.9 MB
Tags CPython 3.12 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
eba95bb0c7299de93ffd79a7b2e196ef14f3c9cc19842e7a9cf20dd7ecff00e3
BLAKE2b-256 checksum
How to use checksums
e4fb1da7cc930d6195f68c57d9270df28cce0f6747d44804dcffc082f60254b2
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.dev1742858851-cp312-cp312-macosx_11_0_arm64.whl

Download URL stim-1.15.dev1742858851-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
7c03f8f44dc9ee820137205eed7c72290a934b9f9e1aff6fbbf08dccc65aeb63
BLAKE2b-256 checksum
How to use checksums
01ef58a45d511210645aa0045d703f234f6503db45d497155d2fe3f606575b16
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.dev1742858851-cp312-cp312-macosx_10_9_x86_64.whl

Download URL stim-1.15.dev1742858851-cp312-cp312-macosx_10_9_x86_64.whl
Size 2.0 MB
Tags CPython 3.12 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
facacbe07c762470c13c8b5fe69d9ba70a21b121ea010cc919e38111f5aca1ae
BLAKE2b-256 checksum
How to use checksums
5551b88088ec349e3290e24fa31c9bdd7a848a1bc54eaa5462bbbaac69e82160
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.dev1742858851-cp311-cp311-win_amd64.whl

Download URL stim-1.15.dev1742858851-cp311-cp311-win_amd64.whl
Size 2.6 MB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
6b0e92488162b6c4205485c7dbaed2bcef3c21a8b013e6c2e4148d9b57470926
BLAKE2b-256 checksum
How to use checksums
ebaaa89a46132887d00ff580866a179194241248861ab25b0ab3290a461d5a49
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.dev1742858851-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL stim-1.15.dev1742858851-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 4.9 MB
Tags CPython 3.11 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
a1933554323e4b16b49ccd73b8ab26bbbf91038a0d03cee7e4129629483a5ec2
BLAKE2b-256 checksum
How to use checksums
32285f1385cac175c65593a47e7300be1baf35c0a6f3d16af720163c88c395c7
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.dev1742858851-cp311-cp311-macosx_11_0_arm64.whl

Download URL stim-1.15.dev1742858851-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
a46c17f061757e20faecb483afaed28eab4cd0ad1af739c071cf81c690addcaf
BLAKE2b-256 checksum
How to use checksums
59c1ec91afbe1da1e9ea85dbc980d8f6fc966080e4b23914b728bdaf3893ed5f
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.dev1742858851-cp311-cp311-macosx_10_9_x86_64.whl

Download URL stim-1.15.dev1742858851-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
255fdf0346d8de921553b2dfdb2539d05636e1e737bfd6739dc9bd68e992cfec
BLAKE2b-256 checksum
How to use checksums
a53d0a5ad0b4ba0d9bb0f9ee72e3b1cc6180c6d1f50eb3422fecc0e526fea76d
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.dev1742858851-cp310-cp310-win_amd64.whl

Download URL stim-1.15.dev1742858851-cp310-cp310-win_amd64.whl
Size 2.6 MB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
71d7594f7274c1b97becd7edc2a29c310c0e3c49c9626f348ff510893470dad5
BLAKE2b-256 checksum
How to use checksums
422f9a2fba8de309000654336e6d885d9776349f225cc895fa19220ff805f76a
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.dev1742858851-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL stim-1.15.dev1742858851-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 4.9 MB
Tags CPython 3.10 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
b5fb877433e665b84c798e23a27792a45055fd1ee54efbc2e6a1ee23e0f30c3b
BLAKE2b-256 checksum
How to use checksums
42a9ddee9b743b0125b3a467504fc30c7fc3b7113edc74b3f08aa447a1412362
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.dev1742858851-cp310-cp310-macosx_11_0_arm64.whl

Download URL stim-1.15.dev1742858851-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
256e9ede907814f315d381e6e8c95a5007889d37ec034f056caecdfe710227d1
BLAKE2b-256 checksum
How to use checksums
d2e9785e69022074eb1e35e03df97338845f77faf668797300181a2a8f14a02f
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.dev1742858851-cp310-cp310-macosx_10_9_x86_64.whl

Download URL stim-1.15.dev1742858851-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
bb4da3382221bbea5b9651a48fcf56e486b44950a0fb0ae9d8343441930f3d7c
BLAKE2b-256 checksum
How to use checksums
e38955b98d52d6c275e12834ded64d2efcd45026f7d2cea4719887ffe6f2699a
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.dev1742858851-cp39-cp39-win_amd64.whl

Download URL stim-1.15.dev1742858851-cp39-cp39-win_amd64.whl
Size 2.7 MB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
c49c335f25a36ba4d01fee3ec0e7734e35040964751c0b5dcb11aecb447cd20a
BLAKE2b-256 checksum
How to use checksums
3c9654a2d4da65458eb6e64ad1c29ca96dffde892c47e9e328905180215f72d8
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.dev1742858851-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL stim-1.15.dev1742858851-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 4.9 MB
Tags CPython 3.9 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
7a23d3894934ec8636884eabe14c4e85e01ef03d9078204ab4258182cccd0563
BLAKE2b-256 checksum
How to use checksums
50bce23ba522886f23f081710306f3fb94b0ed18c7b38d1a70ef577f31f0cef1
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.dev1742858851-cp39-cp39-macosx_11_0_arm64.whl

Download URL stim-1.15.dev1742858851-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
b3edd1a8423f6b52fcc4e0d796859df7a4c56b12baeac70eb2ac3497c86bb301
BLAKE2b-256 checksum
How to use checksums
fe2581b41e43f79b477347986e9a750d528c6d096f1d91bd2a75f20262d8afad
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.dev1742858851-cp39-cp39-macosx_10_9_x86_64.whl

Download URL stim-1.15.dev1742858851-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
b0f6ddbb5e6b3ecbe9c3c892d805f7b107a085e69721c796325cd4a16458e40a
BLAKE2b-256 checksum
How to use checksums
890b07d870bfc05a464792e06bbe6ec12eed4b2a2760ddfa41d7ef7f09537b4d
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.dev1742858851-cp38-cp38-win_amd64.whl

Download URL stim-1.15.dev1742858851-cp38-cp38-win_amd64.whl
Size 2.6 MB
Tags CPython 3.8 Windows x86-64
SHA-256 checksum
How to use checksums
4ed2297572545220c25b9712563234138af89751c733e89f098606be53fab866
BLAKE2b-256 checksum
How to use checksums
64f8cb90e9c292c248ea1e321cc781ccfec34771a8068dc42e0e585247f28b5e
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.dev1742858851-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL stim-1.15.dev1742858851-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 4.9 MB
Tags CPython 3.8 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
a5c9f6bac18922724cc1179c81043a1499f6e7ede7ca73bff58b662e1afeac2d
BLAKE2b-256 checksum
How to use checksums
7a83c74e0eeadb1f6534139a146fc8a511e4dc6426e34d9349657b91e17f2a48
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.dev1742858851-cp38-cp38-macosx_11_0_arm64.whl

Download URL stim-1.15.dev1742858851-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
56819ea95f2419e164f876ce60fd94a115e643eb30e9a636e0f1a4330a7dc077
BLAKE2b-256 checksum
How to use checksums
2c230c875c5139ae208dd86da1ffdd75eabffef250bbdaaf78bcbb0d7a6c2cf9
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.dev1742858851-cp38-cp38-macosx_10_9_x86_64.whl

Download URL stim-1.15.dev1742858851-cp38-cp38-macosx_10_9_x86_64.whl
Size 3.7 MB
Tags CPython 3.8 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
5ac39efaabb39795f3faadc50d7d5cec9bf34ea007038047f3f710403df182c7
BLAKE2b-256 checksum
How to use checksums
07a2500ecb043669d3b1cebffbf9e7b1848595a27944573a61f058d19ab95424
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.dev1742858851-cp37-cp37m-win_amd64.whl

Download URL stim-1.15.dev1742858851-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
6a76256dc2f7d694d8e92cd3bb626caad8922768589fae89cb37841eb5609606
BLAKE2b-256 checksum
How to use checksums
cfba7cd974ab496afa47ba90f1158bd245d6d7f0100c98f3519620dcb2c2ae4a
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.dev1742858851-cp37-cp37m-win32.whl

Download URL stim-1.15.dev1742858851-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
7d51aa561e012a4a4261a43df7f8944a234e7a61e075f0387a279379351204a2
BLAKE2b-256 checksum
How to use checksums
26aeeefa9300cb01a40e4a5e16a7c3c6b230a46e57dc4741c8f508b7ab52141d
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.dev1742858851-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL stim-1.15.dev1742858851-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 4.9 MB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
1fd0e1d3cdde411ea9ef5bc67dc320315fcac80374ef03b37334c2df7f5b4445
BLAKE2b-256 checksum
How to use checksums
6e247f70cc212595c272636fb1e69797f723edf519c4b973c146146f2f2b426f
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.dev1742858851-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL stim-1.15.dev1742858851-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
566a6f6f2161857d21158f84e7c4f5e9d9185527801c200dad3c235ffa3f0c4b
BLAKE2b-256 checksum
How to use checksums
bd02ba1b9490bbc031ced9d2a9bea666d58ff7d86ed6f7251be01e81a8a89faa
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.dev1742858851-cp37-cp37m-macosx_10_9_x86_64.whl

Download URL stim-1.15.dev1742858851-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
8e322e61d28791d3d73fe37e3de8bbfd0fc8b62eac639261bca05ce7e5bb1288
BLAKE2b-256 checksum
How to use checksums
705c004e0b50ebfcd8e3c34811d9fd068ad0863d66db6bf4f1d408d91556036b
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.dev1742858851-cp36-cp36m-win_amd64.whl

Download URL stim-1.15.dev1742858851-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
08d7863c4aa052726ccc7fb09161b538be5db9abcf3651db94b94c3c33c78b23
BLAKE2b-256 checksum
How to use checksums
7dfac60f3f1fb9c90cb7f88c58616fc890595284e1f549ecc7bc4615c7b27dab
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.dev1742858851-cp36-cp36m-win32.whl

Download URL stim-1.15.dev1742858851-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
1280f030988dd1af9f9e86df27517cfdc7f4857c0c39dc22eefb926add51f6cf
BLAKE2b-256 checksum
How to use checksums
564ff60f9ae533e9c9f9f01e8230a16e0d03ebc9cd3d7001543e133313549805
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.dev1742858851-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL stim-1.15.dev1742858851-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 4.9 MB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
251db0644be7c5906c940b354747473360bae0370c7fccb0dbc3a35ac976ec9c
BLAKE2b-256 checksum
How to use checksums
e688b6dba924fe4cf3033be77cc7d3d81b1ed4d530d84129a7e62f662539982b
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.dev1742858851-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL stim-1.15.dev1742858851-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
849165a3055e6ad68a6f47f54e44943cc91ca73e7d2c2e8188424650a7d1de9d
BLAKE2b-256 checksum
How to use checksums
04faf7c8628c5f5ebc0b317f5c19bcc2ffc447f944db6881007c7a6904c138a8
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.dev1742858851-cp36-cp36m-macosx_10_9_x86_64.whl

Download URL stim-1.15.dev1742858851-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
a71794564a1d96cb939dd29307c391539498e01062f5f4ec7efece192852b41d
BLAKE2b-256 checksum
How to use checksums
40913e86831ad717147fac2f9fd24b37e92f6fbe362ff812b37a6e624e6eb56b
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