Skip to main content
Pre-release

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

Stim

Stim is a fast simulator for quantum stabilizer circuits.

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

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

pip install stim

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

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

Interactive Simulation

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

import stim

s = stim.TableauSimulator()

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

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

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

High Speed Sampling

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

import stim

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

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

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

This also works on circuits that include noise:

import stim
import numpy as np

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

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

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

Independent Exploration

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

import stim

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

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

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

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

Release files for stim 1.16.dev1758580558

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

Source distribution (sdist)

Source distribution for stim 1.16.dev1758580558
File Size Uploaded
stim-1.16.dev1758580558.tar.gz 862.8 kB Details

Built distributions (wheels)

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

Total release size: 112.7 MB

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

Download URL stim-1.16.dev1758580558.tar.gz
Size 862.8 kB
Tags Source
SHA-256 checksum
How to use checksums
2297f6e8a9fc2442a67c809b39742f14be586ecc6ffdfb1cee0073e587a9e552
BLAKE2b-256 checksum
How to use checksums
fcd8ec113ec14957bde79c1c1d586fe33807cbf3120c17d3bbb2606663035d92
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.9

Release files / stim-1.16.dev1758580558-cp313-cp313-win_amd64.whl

Download URL stim-1.16.dev1758580558-cp313-cp313-win_amd64.whl
Size 2.7 MB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
7003c4ad067771ccef4ba584370b382db3eb3356ca6fbb1ef650d16b31d580c3
BLAKE2b-256 checksum
How to use checksums
44cf0d2e913f900ef1c52161f7f5fbe878393a793c2aba71d47ec0ed213f8c48
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.9

Release files / stim-1.16.dev1758580558-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL stim-1.16.dev1758580558-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 5.1 MB
Tags CPython 3.13 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
0b3252f8607b3d253bcfdb12dafedb4624862e56fc959e9de1e760cf7b9103e3
BLAKE2b-256 checksum
How to use checksums
5d923a797f81b7c43725084993c4bb17179a9f0c7cc10be2cab1e83f693ab079
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.9

Release files / stim-1.16.dev1758580558-cp313-cp313-macosx_11_0_arm64.whl

Download URL stim-1.16.dev1758580558-cp313-cp313-macosx_11_0_arm64.whl
Size 1.9 MB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
98d9603348caec57b08288760baa2bd2f536d63e1cf5052a84344a328940bffe
BLAKE2b-256 checksum
How to use checksums
32753a4abc608f810743f05881030a53d461f89e4884ddb5069de0114cd7a1c9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.9

Release files / stim-1.16.dev1758580558-cp313-cp313-macosx_10_13_x86_64.whl

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

Release files / stim-1.16.dev1758580558-cp312-cp312-win_amd64.whl

Download URL stim-1.16.dev1758580558-cp312-cp312-win_amd64.whl
Size 2.7 MB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
a81d1ac613e17cbeabf0ae481acc527884ee61f82cd9ebc435d4550ce0befee8
BLAKE2b-256 checksum
How to use checksums
27586618d3bb225d592cc11cdeb4acbd9e41360796ee34aac43d06d1c5e63f72
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.9

Release files / stim-1.16.dev1758580558-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL stim-1.16.dev1758580558-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 5.1 MB
Tags CPython 3.12 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
0edd742af2abc33ac4775b1f6e3177e55c5dfa7932b70a64f3c0b93302a72152
BLAKE2b-256 checksum
How to use checksums
303282fe2a1b76297e143b69db4abc2bdf2a28b95322b60e10f9bc958de6f095
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.9

Release files / stim-1.16.dev1758580558-cp312-cp312-macosx_11_0_arm64.whl

Download URL stim-1.16.dev1758580558-cp312-cp312-macosx_11_0_arm64.whl
Size 1.9 MB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
515f81132c4a21c88aea055b9ea36ef0f1e536002775024c1a68de7b8d420037
BLAKE2b-256 checksum
How to use checksums
b6791478072728f08cbfe5a9b22794bd3a0fe648b889dd516a21eea1e1878842
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.9

Release files / stim-1.16.dev1758580558-cp312-cp312-macosx_10_13_x86_64.whl

Download URL stim-1.16.dev1758580558-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
95853c3272d6308879cd91e767f427850b9988a1ad8d0dc947de701d96b91340
BLAKE2b-256 checksum
How to use checksums
0c6656f03d7945023d3bc0838b5a1be462dcd3fabc830f04d41a5f187e880431
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.9

Release files / stim-1.16.dev1758580558-cp311-cp311-win_amd64.whl

Download URL stim-1.16.dev1758580558-cp311-cp311-win_amd64.whl
Size 2.7 MB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
64d227e70a014fe8b25bfcce830e30b5e223855af54a6472dedd784c13a3e962
BLAKE2b-256 checksum
How to use checksums
0dee90e3977a945c5c7edb20a4711fda02363098f54afdb9b2928800feb7e075
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.9

Release files / stim-1.16.dev1758580558-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL stim-1.16.dev1758580558-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 5.1 MB
Tags CPython 3.11 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
c3d27d4078ffc7a8d34a2ca33381a7e1d56fec724102d85236d3df428582d235
BLAKE2b-256 checksum
How to use checksums
7aa24ff59894f428ec961abfcb4dbb5c3988667ae0f6bd6870fe8951bb27ea11
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.9

Release files / stim-1.16.dev1758580558-cp311-cp311-macosx_11_0_arm64.whl

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

Release files / stim-1.16.dev1758580558-cp311-cp311-macosx_10_9_x86_64.whl

Download URL stim-1.16.dev1758580558-cp311-cp311-macosx_10_9_x86_64.whl
Size 2.0 MB
Tags CPython 3.11 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
59ab3487e932af913e499db0b43ad6c7ecc72df2ea613bd46e18a9d7a814a156
BLAKE2b-256 checksum
How to use checksums
910d37180a52579e6ed52e18159bb589183a8b3770047054569db1a30c6cb848
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.9

Release files / stim-1.16.dev1758580558-cp310-cp310-win_amd64.whl

Download URL stim-1.16.dev1758580558-cp310-cp310-win_amd64.whl
Size 2.7 MB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
585d6bb8a093e8866df849b4dfde63e410120680482574e08f92453d7dd311fe
BLAKE2b-256 checksum
How to use checksums
255d2be1b0708cae23153b57f7c9d01b41b9290c90f8b361c07e741b734fc2da
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.9

Release files / stim-1.16.dev1758580558-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL stim-1.16.dev1758580558-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 5.1 MB
Tags CPython 3.10 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
7993cb464a6f79de76f027918ec14768de6589425a07af5f44f50789e592c6e0
BLAKE2b-256 checksum
How to use checksums
abd917bb66e49e48de1169b56a4c6e0f80494e4f8413e8fafb31fda916d5f0b0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.9

Release files / stim-1.16.dev1758580558-cp310-cp310-macosx_11_0_arm64.whl

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

Release files / stim-1.16.dev1758580558-cp310-cp310-macosx_10_9_x86_64.whl

Download URL stim-1.16.dev1758580558-cp310-cp310-macosx_10_9_x86_64.whl
Size 2.0 MB
Tags CPython 3.10 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
905b3bc91226140211a896af9d2bf5a07fb8abbe0fb7e08cae2778432b9f7727
BLAKE2b-256 checksum
How to use checksums
6853d7c1ba4e45a5dcc10c7e76413192d98397b0e3f8c4d0bbce72103cf1bb5a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.9

Release files / stim-1.16.dev1758580558-cp39-cp39-win_amd64.whl

Download URL stim-1.16.dev1758580558-cp39-cp39-win_amd64.whl
Size 2.8 MB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
4c897e1dd890481ae274fd0c23620e7328d1d28767e022559089b3d90f44c802
BLAKE2b-256 checksum
How to use checksums
8331b660a39d63a2f6ebc14081486159eea6d280b7f84bebf5ea49230d621434
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.9

Release files / stim-1.16.dev1758580558-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL stim-1.16.dev1758580558-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 5.1 MB
Tags CPython 3.9 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
85e839ba83e291f612bcc338bfba247d1122ee4ce17169fd8b340e56a3185434
BLAKE2b-256 checksum
How to use checksums
82a199cfe40b42e76f1b218d58f245f757d24cd599a7d5c14d7fcdaf08f71d6c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.9

Release files / stim-1.16.dev1758580558-cp39-cp39-macosx_11_0_arm64.whl

Download URL stim-1.16.dev1758580558-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
7349d85ad5e234beacecdcef81758dabbdd697f9ec681dc79500fba6c8c29877
BLAKE2b-256 checksum
How to use checksums
9383dd8de00c70157a5612cdc299fde5b3714555ad56d63439358d2d826cd4eb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.9

Release files / stim-1.16.dev1758580558-cp39-cp39-macosx_10_9_x86_64.whl

Download URL stim-1.16.dev1758580558-cp39-cp39-macosx_10_9_x86_64.whl
Size 2.0 MB
Tags CPython 3.9 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
033d62f6a5e85e4430a539653b8a8d059a6e911f9c6a2d4fd59ff32808764703
BLAKE2b-256 checksum
How to use checksums
d60bc86bebf54238a1bd50523b281e3740e21857f16c7fadb36edc11080b75bb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.9

Release files / stim-1.16.dev1758580558-cp38-cp38-win_amd64.whl

Download URL stim-1.16.dev1758580558-cp38-cp38-win_amd64.whl
Size 2.7 MB
Tags CPython 3.8 Windows x86-64
SHA-256 checksum
How to use checksums
541163c5abfcd51f7c5bfbc9d89bb1e17503f2d2c58d3c1267628ad7f0218f2a
BLAKE2b-256 checksum
How to use checksums
e3377a289e60b06c1e46c14712eb5dc364069d434ea729e15797e789a6bfa13a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.9

Release files / stim-1.16.dev1758580558-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL stim-1.16.dev1758580558-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 5.1 MB
Tags CPython 3.8 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
7be65c373cb4cebdf4d353ee39d4d6cc4138ff1354efb2fd3ecd624519afd1ae
BLAKE2b-256 checksum
How to use checksums
c0acdade285e33d165d6cbd16a2f3f25acc555698abf08140fcdf0210b0959e5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.9

Release files / stim-1.16.dev1758580558-cp38-cp38-macosx_11_0_arm64.whl

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

Release files / stim-1.16.dev1758580558-cp38-cp38-macosx_10_9_x86_64.whl

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

Release files / stim-1.16.dev1758580558-cp37-cp37m-win_amd64.whl

Download URL stim-1.16.dev1758580558-cp37-cp37m-win_amd64.whl
Size 2.7 MB
Tags CPython 3.7 CPython 3.7 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
a484f787eacaaf27444434b05fc2ce9231dd7094bf187e93b8ecba019d66c888
BLAKE2b-256 checksum
How to use checksums
87edecaf75f6b7100c867c0fa4d9d2c04979d89f70e47899a66cf1e531870984
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.9

Release files / stim-1.16.dev1758580558-cp37-cp37m-win32.whl

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

Release files / stim-1.16.dev1758580558-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL stim-1.16.dev1758580558-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 5.1 MB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
784ea4b1c7ad7a051e03b41d9eb5b6a01558037bd8332450ff1bbaa7ab1ad12e
BLAKE2b-256 checksum
How to use checksums
f8a923fb1e710401be2efd730db116e2dff77cc397ee421833bec94875aa7b31
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.9

Release files / stim-1.16.dev1758580558-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL stim-1.16.dev1758580558-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Size 5.3 MB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
77f94e673a9457ebb17b5b33324f23de4c7bf8714a8bcfd2809ae0d00bb15fb7
BLAKE2b-256 checksum
How to use checksums
0d93ef1921569d1f3b30919850a62c6f7bee05ff3badaa364ba35cb68e04fafd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.9

Release files / stim-1.16.dev1758580558-cp37-cp37m-macosx_10_9_x86_64.whl

Download URL stim-1.16.dev1758580558-cp37-cp37m-macosx_10_9_x86_64.whl
Size 3.8 MB
Tags CPython 3.7 CPython 3.7 pymalloc macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
b101f992e857e3476472ce8a1946d51811144350bc6f6bcdc5aa8086f5f3d41c
BLAKE2b-256 checksum
How to use checksums
0eb9abdf4ef63db1995a804da925326e1d012e6304656a95b7b2d7e245ac0c0b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.9

Release files / stim-1.16.dev1758580558-cp36-cp36m-win_amd64.whl

Download URL stim-1.16.dev1758580558-cp36-cp36m-win_amd64.whl
Size 2.7 MB
Tags CPython 3.6 CPython 3.6 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
0be20c5a6a22561d2eb99659bb5f620a50e37fc1b9a99826f944a09d960ff04c
BLAKE2b-256 checksum
How to use checksums
85a828535a6ac8662cf3eec8140c7c904f54e989e9e2adeb09a56f8d07f4bf05
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.9

Release files / stim-1.16.dev1758580558-cp36-cp36m-win32.whl

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

Release files / stim-1.16.dev1758580558-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

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

Release files / stim-1.16.dev1758580558-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL stim-1.16.dev1758580558-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Size 5.3 MB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
58f0a2f64a809e045252f912cf13ec12758abf7d2fb5bdafc31ec936bbcfb924
BLAKE2b-256 checksum
How to use checksums
041aa12b55abc0a7032cfbeb9392aca521ac0c1607671878111b6a4510c49f19
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.9

Release files / stim-1.16.dev1758580558-cp36-cp36m-macosx_10_9_x86_64.whl

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