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

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

Built distributions (wheels)

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

Total release size: 107.2 MB

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

Download URL stim-1.15.dev1743900324.tar.gz
Size 843.3 kB
Tags Source
SHA-256 checksum
How to use checksums
25856c401c0977bc472e33c1ddec6bb1027371040c17bad9290237deabfdc4c6
BLAKE2b-256 checksum
How to use checksums
3260fb0c317e41a7234bc400aadf78fc1900d71d2c3acefe4edead0f4b12eb4b
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.dev1743900324-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL stim-1.15.dev1743900324-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 4.9 MB
Tags CPython 3.13 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
ff8f7794bb78db1e9909042a526c606aad527ad0f82af80ad4c9f08b7d0f4e12
BLAKE2b-256 checksum
How to use checksums
bf3964c03b20e0ae245d568a88651f1649b1fc58bfc76a7f9db8ff2abdfe21b5
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.dev1743900324-cp313-cp313-macosx_11_0_arm64.whl

Download URL stim-1.15.dev1743900324-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
99862d8a5de56f31e4cdc4496a1edd9576d562f3daa55a501fc5f47c1fe50011
BLAKE2b-256 checksum
How to use checksums
1a4637d0845733794fc37873a041010e8396ad52c3c7dba1f7d6b46ce9041c12
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.dev1743900324-cp313-cp313-macosx_10_13_x86_64.whl

Download URL stim-1.15.dev1743900324-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
a70a1db077c85d0bc418f99b73e3120d589512b2fddfb6c4aaaa72c992282031
BLAKE2b-256 checksum
How to use checksums
3bc85e3d0d61fb878a90d72b0e0d81406ae7dfdbf2c064f4e27a3bfac8fb3559
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.dev1743900324-cp312-cp312-win_amd64.whl

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

Download URL stim-1.15.dev1743900324-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
f1df71a6485b01f627d5fe84609cdaf966a066700e983e2f726356130cf35288
BLAKE2b-256 checksum
How to use checksums
c1c5fdbde04c0ace9f0a53856c67b392b8ea9070781eee9dfdbdfdb97240d61b
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.dev1743900324-cp312-cp312-macosx_11_0_arm64.whl

Download URL stim-1.15.dev1743900324-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
2665be04eb3336589282a5470f0353d392aa54c57db6c51104894edf7df1c69c
BLAKE2b-256 checksum
How to use checksums
0018c98e8ecb6220320255965a3385e7e6b3bc1fcc7f8d08c69c3cec3b75fc7f
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.dev1743900324-cp312-cp312-macosx_10_13_x86_64.whl

Download URL stim-1.15.dev1743900324-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
3860ad09266989f9d98f58e457b3f15a638856ade679ff01e866689cc66228b2
BLAKE2b-256 checksum
How to use checksums
cb9cf2075906cc44612c9183d7ad1b01b98908530476b18dd5d6485c7a630c80
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.dev1743900324-cp311-cp311-win_amd64.whl

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

Download URL stim-1.15.dev1743900324-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
8cee11506dc37e0252f4c07dc76765a3cfa6aca8df8d2298cd9cfb75b691a899
BLAKE2b-256 checksum
How to use checksums
f13d9987862389cd0f630d2b29d83f74a14f5876c8f927a7fdfb7c7c9dcc8eca
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.dev1743900324-cp311-cp311-macosx_11_0_arm64.whl

Download URL stim-1.15.dev1743900324-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
39bea86ef17163072a77d859af7bc784412cfc92ed0d837ef314df5116455a59
BLAKE2b-256 checksum
How to use checksums
83439ef84fc3f51cb4a89fc8ac344e268ecc1a79e530b99b13faae4b5de19f05
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.dev1743900324-cp311-cp311-macosx_10_9_x86_64.whl

Download URL stim-1.15.dev1743900324-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
5a1a61cb66609b73497af5823ef9f029f04b2d13699612f85ad3a9a3ea14fb4c
BLAKE2b-256 checksum
How to use checksums
9cda14d6ad127f559eb86e3199bbfb1c27f1c5d9886de4149eff96a692124c47
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.dev1743900324-cp310-cp310-win_amd64.whl

Download URL stim-1.15.dev1743900324-cp310-cp310-win_amd64.whl
Size 2.6 MB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
22f1a2766ca9d5d62f6a2e69e10b30d9fceb837720ca888a51a5dfb305f43996
BLAKE2b-256 checksum
How to use checksums
070e095e94e3846398d762f56903b582598227b61fb2b24a07e321bccd07324b
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.dev1743900324-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL stim-1.15.dev1743900324-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
150f693428e911ada86c7684ab5baaa8c53e83f285878f9d975de06d07831789
BLAKE2b-256 checksum
How to use checksums
57365feadd6a237a970f9d665a15eb23ddbcd4143135090b540a1668b0c5f50f
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.dev1743900324-cp310-cp310-macosx_11_0_arm64.whl

Download URL stim-1.15.dev1743900324-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
31e61be41c63a64795f772e051a95bce0f6289d10f16f6fe2e4922187a75c3b4
BLAKE2b-256 checksum
How to use checksums
51f15af4e83f51b1b287e71cd204c1904d0c38ace65ad6666ceaad98a3eb79f3
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.dev1743900324-cp310-cp310-macosx_10_9_x86_64.whl

Download URL stim-1.15.dev1743900324-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
1501328b5d9502cca314b88919e070e9fa3600202af624ea60370ff5c1d05d9c
BLAKE2b-256 checksum
How to use checksums
1251398ed6802bcd761bec7fd693869dfe691443bee611e4ec9950a5167b35c1
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.dev1743900324-cp39-cp39-win_amd64.whl

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

Download URL stim-1.15.dev1743900324-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
0199f99a97651a6053ac458d7e2cb4233f11c09f6bf0c69bb86e1b4826900b0e
BLAKE2b-256 checksum
How to use checksums
d3a395339ba125c2f6e8cdf172dbf89461050d791a27dd1926187563536b2757
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.dev1743900324-cp39-cp39-macosx_11_0_arm64.whl

Download URL stim-1.15.dev1743900324-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
d9e06f33d3d0a21d368d45318f7f84e890be71e14934adcc490d1039251ff344
BLAKE2b-256 checksum
How to use checksums
0e588b1e028a801896d079e3a2f22bc89ed37134d69ca5cac987e5141cd61b1b
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.dev1743900324-cp39-cp39-macosx_10_9_x86_64.whl

Download URL stim-1.15.dev1743900324-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
50035ddcd3f73336ad0bed72dbf825f3f579f7f2f329c61c462b41fb929c6e22
BLAKE2b-256 checksum
How to use checksums
f3e1109c18503ea04963fb1ef1d689b684ff898b271e59dce600571840d6683f
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.dev1743900324-cp38-cp38-win_amd64.whl

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

Download URL stim-1.15.dev1743900324-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
e9d31aa5a7745967fa1e0f6795b279fdfae017b94915c4962cbe7cab618f75d8
BLAKE2b-256 checksum
How to use checksums
49dd67e73195bf7ab909464c514a360f03b0b243c381625c71cecd08d5248d7f
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.dev1743900324-cp38-cp38-macosx_11_0_arm64.whl

Download URL stim-1.15.dev1743900324-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
d572114cdde149e39e5e56c05f53d2b0474de98d66c8d5f3c213f8a4f408838e
BLAKE2b-256 checksum
How to use checksums
1c5fe9130ea8e3f4c6585d03c144b5d222543a63282e3d131ad739a9d55acfa3
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.dev1743900324-cp38-cp38-macosx_10_9_x86_64.whl

Download URL stim-1.15.dev1743900324-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
95104a524512b41563e60a37d00c9aad8ab0edce7321572522e052535ebfd7de
BLAKE2b-256 checksum
How to use checksums
522ba711d8a4433a25be6d3865b420e7d595a8f641c6c933c9f6d140f515c4da
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.dev1743900324-cp37-cp37m-win_amd64.whl

Download URL stim-1.15.dev1743900324-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
1f1e933c8bdd0cd0b829fa6ee0b3fdfbf4b272c2ab91af5ea38959da041e620c
BLAKE2b-256 checksum
How to use checksums
5a9a1eaf9a0170b04c2d42b426539623143c3bb92d2683575c61ce9978e9c9b6
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.dev1743900324-cp37-cp37m-win32.whl

Download URL stim-1.15.dev1743900324-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
65380f44be515c26c906463fe079c7db1161825aec467c5b0d7ed3d9c48e7fcb
BLAKE2b-256 checksum
How to use checksums
238c4e9d5292e623a9c8ec5344ccdd3fcfe15247bee3e7aae6b32913ace72be0
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.dev1743900324-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL stim-1.15.dev1743900324-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
d3d45efa74026cfda794129d08724aaa2d3cebb8ec1ed19f3aa32e331eefdcd6
BLAKE2b-256 checksum
How to use checksums
09ce649126f93f9f41793f8f24cfb7a79de85621766df5470d567e1f1d3d2172
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.dev1743900324-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL stim-1.15.dev1743900324-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
5a0219952a2e0228f7dba1b6b03d96706aed2dd613f74d4ff314819178318d87
BLAKE2b-256 checksum
How to use checksums
a2ce40db0becafa274193ce3f38ef517f1b1fddc91b892b57cf52cb9f2dd64f0
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.dev1743900324-cp37-cp37m-macosx_10_9_x86_64.whl

Download URL stim-1.15.dev1743900324-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
5dbe9c599f3da3254542e9242e2d6cab3aafa6cc04a40ad7a492cbbd58a68916
BLAKE2b-256 checksum
How to use checksums
cf70a755a50ff4ef21cd4dbd1954004f638841d9a58e639152f25b951ae5cdc7
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.dev1743900324-cp36-cp36m-win_amd64.whl

Download URL stim-1.15.dev1743900324-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
60b062d13519cba2bed9af3d8ec1f68870bde41587ffeb35ee7f6a0c819e1e48
BLAKE2b-256 checksum
How to use checksums
b550a27fddffe7422aa23cce241f09d74edfee2f13e4de71077e422ce5d9c883
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.dev1743900324-cp36-cp36m-win32.whl

Download URL stim-1.15.dev1743900324-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
8b43bc04b168f0d8ff46ae8ff32f7f00cab6ecddd37729e32177e9e2d511d825
BLAKE2b-256 checksum
How to use checksums
b43df814f175b2f9fcbc81be348347300c5d40ca2ff491a096303365b84b46c8
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.dev1743900324-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL stim-1.15.dev1743900324-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
a5da3144e8d3bf05996f76f1ac18a3cecbf3762d9f91120458a6e2d4009a4185
BLAKE2b-256 checksum
How to use checksums
bfd2828b33168869df21495cceddac414436c41963d52c25872eb7a71bd29f39
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.dev1743900324-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL stim-1.15.dev1743900324-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
7588d3c1ecc2627c0bc948f5e6d369e80cb3276c962f28b8ce571592a10c5890
BLAKE2b-256 checksum
How to use checksums
f7bee39fe206125c3e66166af44bae14b1d3d683557462af126dd380fa283205
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.dev1743900324-cp36-cp36m-macosx_10_9_x86_64.whl

Download URL stim-1.15.dev1743900324-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
3c23e455fc5ca44e4afe6044e809903abd5b3e68e0ad1486874664a97522d554
BLAKE2b-256 checksum
How to use checksums
b748b364f7700fa71680888c04c882007481dc577c0f7abaa24de6741d2899f7
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