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

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

Built distributions (wheels)

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

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

Download URL stim-1.15.dev1742871434.tar.gz
Size 842.1 kB
Tags Source
SHA-256 checksum
How to use checksums
cdfa5953d3aded31238e20539645e131dde18624443d410b57fe9dd4173b0f40
BLAKE2b-256 checksum
How to use checksums
89345176561a44a92b1cde8e29717ea6438c0aa63773f5c264d3462881bdf41a
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.dev1742871434-cp312-cp312-win_amd64.whl

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

Download URL stim-1.15.dev1742871434-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
b989a76432019d407bac7ff199988cd2164ccea426b331bfd167110d8ff6f434
BLAKE2b-256 checksum
How to use checksums
ad26eb218ead363a76831acedb021660112970cf998a25e20e325835a0b6e73c
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.dev1742871434-cp312-cp312-macosx_11_0_arm64.whl

Download URL stim-1.15.dev1742871434-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
eb6ac23b7f2df5bbde28887903385b554be638d82058c9eb847c1bd7096190b8
BLAKE2b-256 checksum
How to use checksums
b401329d9047a2bea893d0f06b5fd9f1fbfedf781b13900f37c8190e17d08b7d
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.dev1742871434-cp312-cp312-macosx_10_9_x86_64.whl

Download URL stim-1.15.dev1742871434-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
f9c3fbba6be6acbfd48475120b54a61e4b751e0ca5ee8b862dfa3793a37abc22
BLAKE2b-256 checksum
How to use checksums
1d1ac928e6c1488aeaf92fdfffc8ad973bb1cbe68e4bb5209e3f34448db60b10
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.dev1742871434-cp311-cp311-win_amd64.whl

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

Download URL stim-1.15.dev1742871434-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
af848483f2bf186c17da47ec4163f34a3bf57b7fb6abfd15749f53f65d89ee75
BLAKE2b-256 checksum
How to use checksums
4329c0790dc10987b4a3eaa5cf12bb29d7539d17e6cf9028671685bc9b124632
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.dev1742871434-cp311-cp311-macosx_11_0_arm64.whl

Download URL stim-1.15.dev1742871434-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
f073b325b2dcb6ce29e93e83c8b776bbbfb7ae1bef5d19135972da756f47e25b
BLAKE2b-256 checksum
How to use checksums
912e5eea16ed27739e9ab174b76d3f32acbd1f5304a9576b05c3bb569e170438
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.dev1742871434-cp311-cp311-macosx_10_9_x86_64.whl

Download URL stim-1.15.dev1742871434-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
307b2e4259e61ff2ccadc0103811555917c12ff39e2718f025e89b08e81261d2
BLAKE2b-256 checksum
How to use checksums
8d72ab54bc0c4e1cf650df8418e5e50974a0b1b4b830183d7e63f9875d9700fb
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.dev1742871434-cp310-cp310-win_amd64.whl

Download URL stim-1.15.dev1742871434-cp310-cp310-win_amd64.whl
Size 2.6 MB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
39df0507b18eef14d3b6719c11a63c53a66032d84ded65774236c8ac8f178ccf
BLAKE2b-256 checksum
How to use checksums
4e25aa93c8013e3e830edae7ea15fa768eaf558bbe7ab85f11f45b978f2b9880
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.dev1742871434-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL stim-1.15.dev1742871434-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
c7886887856031f6c4169f56f2ee419fc08b2dcbdbf405e29ebc0d7fee265bba
BLAKE2b-256 checksum
How to use checksums
a71f2400d7ff4fbc48e13b04f70d06a61c8828a62bd3dc86ffe3f513b281b428
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.dev1742871434-cp310-cp310-macosx_11_0_arm64.whl

Download URL stim-1.15.dev1742871434-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
1ca91f9fbfdcfe756ce9a9cf55f0ac7bd9b6bdd68d6302ae3c6aa94e1e3f1f1e
BLAKE2b-256 checksum
How to use checksums
565ab3491d2ef8ec29450f228d6df1cc375470b448b46281f105ebebea7807be
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.dev1742871434-cp310-cp310-macosx_10_9_x86_64.whl

Download URL stim-1.15.dev1742871434-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
7e06ca487ade6ed0c783b1365a4c14cf5586c88b5fac77c5b4808f5935df31b4
BLAKE2b-256 checksum
How to use checksums
c49f7d0273e6b504c5569415d3252245ac015363534d07fc9142e885aa3622a3
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.dev1742871434-cp39-cp39-win_amd64.whl

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

Download URL stim-1.15.dev1742871434-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
1ccd52f048d0c5575db6ca7f770618207659b228e66b5a63a76b3140399b806a
BLAKE2b-256 checksum
How to use checksums
740a5f53f90fb4eb75445d66755143c5e5621680110ef1bd58ef8fb7551c62b7
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.dev1742871434-cp39-cp39-macosx_11_0_arm64.whl

Download URL stim-1.15.dev1742871434-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
f06c8acf39f22b93337d6b0812197e18b0b33655040eea66a0421ae97e0b0491
BLAKE2b-256 checksum
How to use checksums
641f74b6387e240713d3eb38c5262815b15f5b3c1a5d5f0a1eefe6258ccdb29c
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.dev1742871434-cp39-cp39-macosx_10_9_x86_64.whl

Download URL stim-1.15.dev1742871434-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
62d9a81df5f6eb95e8434f783a0bc400de1b4bcfb30aac762d5db6e7a6a3d342
BLAKE2b-256 checksum
How to use checksums
902e01034fc2605df308f9961eba5114b80956954d081a2f2eaa3df7e3fbc061
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.dev1742871434-cp38-cp38-win_amd64.whl

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

Download URL stim-1.15.dev1742871434-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
ad62ccdd258ceca9a84db4b4a51ee2085745ef536e5f05245b1b0357df51b73f
BLAKE2b-256 checksum
How to use checksums
3a3d662a8cd914950b7105b0010c493fb0845b4af9562dcf26ba8e706684046b
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.dev1742871434-cp38-cp38-macosx_11_0_arm64.whl

Download URL stim-1.15.dev1742871434-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
84e60e5eb684cd4fe6c2613531f96d720c3b6732f916c914d0cdf4eef22aab33
BLAKE2b-256 checksum
How to use checksums
d05bea737e197e3bc4d1720b9759824853f54bd43ddaf60773cc5ed8430c611d
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.dev1742871434-cp38-cp38-macosx_10_9_x86_64.whl

Download URL stim-1.15.dev1742871434-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
1d4162680348c0a38edc312c21f31e57d932778a5fbf5b3f214362e3dc8fe81f
BLAKE2b-256 checksum
How to use checksums
c57793a1953674e17cfcf3b3ee81bd342c48d0c9a82b399e12b2e7616d0eb4be
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.dev1742871434-cp37-cp37m-win_amd64.whl

Download URL stim-1.15.dev1742871434-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
980b400d76776a6e33b47410bd31dfe9b93fbd785c8c16e1311b620d3e5d21f1
BLAKE2b-256 checksum
How to use checksums
a44cfa46959252eb9b81c0dc02a3e46f59cdbd5f9303cfddb9bc38fb22161bdb
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.dev1742871434-cp37-cp37m-win32.whl

Download URL stim-1.15.dev1742871434-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
1b3ef2da502a99e770861ecd71ca63e4751f7a90b86e18426913bcca69e97a2c
BLAKE2b-256 checksum
How to use checksums
c452216acc79befa67ee8733b6281d8f77d610956b8683c6b0b3722219c66651
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.dev1742871434-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL stim-1.15.dev1742871434-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
d0f3903dc7d2eeb154f5bb73ddd47f0825adb37c5b6569fbed09ad041dfbe133
BLAKE2b-256 checksum
How to use checksums
bfbf3145fae83005c8ff9d98596c70e167ae07b775542e846edbe898dc2cb5ed
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.dev1742871434-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL stim-1.15.dev1742871434-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
77adbec3275f6f2f5396decdc94d5e903dd33e7a66d275f8d4cb0027c6c54d52
BLAKE2b-256 checksum
How to use checksums
cba7d120e3f3d32019c3e54b25a0f9b86316c93b162570e9001b825b9e184bd2
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.dev1742871434-cp37-cp37m-macosx_10_9_x86_64.whl

Download URL stim-1.15.dev1742871434-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
07edaa4c7f65c3ec338b00e66b027394012a4c7cef0105ddcca9f1dc0261873c
BLAKE2b-256 checksum
How to use checksums
c6b7a9d36ec24c5abb25c56abd100639fe1e132b3b04682c5d13a5b76a33a5a3
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.dev1742871434-cp36-cp36m-win_amd64.whl

Download URL stim-1.15.dev1742871434-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
bf7f77ba402425f0cf1f9bc08b75fa6c32d7916b34aec4a9edff80816ecaa838
BLAKE2b-256 checksum
How to use checksums
05efd4d655cdf066342f5e4a73469850baf07be7fe21a5e852fd5dc80af9db3f
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.dev1742871434-cp36-cp36m-win32.whl

Download URL stim-1.15.dev1742871434-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
095366703f6c33e48dd00e8c8dca64ab6041b75615e358bd71ee97e8d04d987b
BLAKE2b-256 checksum
How to use checksums
380fed65f10b84ba17072f5c084771a14030435fb117d3f6f29f59ecd460c377
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.dev1742871434-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL stim-1.15.dev1742871434-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
4b4dd145ada22dda228eea18c1ba0497326a515df121b3faec677b84e62fea3d
BLAKE2b-256 checksum
How to use checksums
5ff0926b70dd9091a59836c77527f4f4996ce4b2b02cf59fc13b7320dc269637
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.dev1742871434-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL stim-1.15.dev1742871434-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
05bfc1580cf0970d0d8be280a2cce88f086f70b833197f686992d24effe41afc
BLAKE2b-256 checksum
How to use checksums
4dcd0d61e205f9fbb7dae4a02d48cad3fc4f2323306eb043b52ca6d3104ec8d2
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.dev1742871434-cp36-cp36m-macosx_10_9_x86_64.whl

Download URL stim-1.15.dev1742871434-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
e21b5292b838505dc983a9003649e5de02cf7cb1c49e10c50d1d3025fd88ff98
BLAKE2b-256 checksum
How to use checksums
689b7f7e5249330b728c71ade598641a96f7f983f624a838bb2e5c2e972ec851
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