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

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

Built distributions (wheels)

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

Total release size: 97.6 MB

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

Download URL stim-1.15.dev1741128853.tar.gz
Size 838.7 kB
Tags Source
SHA-256 checksum
How to use checksums
56f2c78a6dcf418c039f02904e00831eb266da4499516f7687494119b8107f48
BLAKE2b-256 checksum
How to use checksums
1916df8f0e34ad7b9654238309bc6baf29e30555b8f729e0a584560338e07e98
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.dev1741128853-cp312-cp312-win_amd64.whl

Download URL stim-1.15.dev1741128853-cp312-cp312-win_amd64.whl
Size 2.6 MB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
39b0e5285f3c925ff0613ad72e8a4e53588d14a6b2c650a737bb1d420ba33f21
BLAKE2b-256 checksum
How to use checksums
429dc13350c07330e0cf544223c36390223c8736b84c53bd311a09d551c39165
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.dev1741128853-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL stim-1.15.dev1741128853-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
3300701f8623637feb3f1dab930031810a99a2b5640d42dae9d562f1baaac411
BLAKE2b-256 checksum
How to use checksums
88fa21ca398ea09c2a3c83baeb74bf1a2f2014c1d7e14d930db21aad4286131f
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.dev1741128853-cp312-cp312-macosx_11_0_arm64.whl

Download URL stim-1.15.dev1741128853-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
7e5e0acab082397a74498c0362407af0eda215117e4651f638587b946d4e63ea
BLAKE2b-256 checksum
How to use checksums
f6dd2901289cf20ccd945465478a6f907523c1a0c604d3e85f44a90cb1c413a2
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.dev1741128853-cp312-cp312-macosx_10_9_x86_64.whl

Download URL stim-1.15.dev1741128853-cp312-cp312-macosx_10_9_x86_64.whl
Size 1.9 MB
Tags CPython 3.12 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
58d0c384e9e40a27cad31a7f404469b379a1c65166b72caa41a2ad65227ead0d
BLAKE2b-256 checksum
How to use checksums
e210722d4c03fa414cb4e3fa9d25ecfffd80a77a34a1529618c20f950f4dc08a
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.dev1741128853-cp311-cp311-win_amd64.whl

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

Download URL stim-1.15.dev1741128853-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
330612e3f9b83305ee49d55b4d5c27123bd7377cbfd27650ebdccfa2b72ef2e7
BLAKE2b-256 checksum
How to use checksums
01e2ce2ad8a3c1cec80eaa860aac872811356ed07f9b4da855772eb3b55dd99b
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.dev1741128853-cp311-cp311-macosx_11_0_arm64.whl

Download URL stim-1.15.dev1741128853-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
ee13d03a3206b3327ef1f2bde7c4aee6d29c2ef822b5277680f5211389cbe4a9
BLAKE2b-256 checksum
How to use checksums
e30e47630411b69e1c550bc7defde9e0f10cc7a3935373510318ec3b8b03ca38
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.dev1741128853-cp311-cp311-macosx_10_9_x86_64.whl

Download URL stim-1.15.dev1741128853-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
388568350f05cd4c5468b2faffc4c96e9232fdb449cc115ae86107de0e03f5bb
BLAKE2b-256 checksum
How to use checksums
9fe536205598f394e05a155c1934641355359ae34253f9a7b71ea0b502aea3ce
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.dev1741128853-cp310-cp310-win_amd64.whl

Download URL stim-1.15.dev1741128853-cp310-cp310-win_amd64.whl
Size 2.6 MB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
32ac1888185f7ca64b21d6dd9467e043e0e7543e5a78131fff8ee333e03550f5
BLAKE2b-256 checksum
How to use checksums
7899ea273dcb61c12745e26f0e616c78798aa2df578c3b56269d2753aaf6b393
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.dev1741128853-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL stim-1.15.dev1741128853-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
f9626fec27197c2f9d3bc544b9625636e9453dedd3223b6d3a8e9bd7bfe94a3a
BLAKE2b-256 checksum
How to use checksums
8d4ec189c3cc3dfa6e54fc86aa3050977a34bf865fbdaaf05b7ae7ef8cd7f9b2
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.dev1741128853-cp310-cp310-macosx_11_0_arm64.whl

Download URL stim-1.15.dev1741128853-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
e60071fc63152a39be9a8f470febf14635828a5c9b51e52581ed9348d4497bf7
BLAKE2b-256 checksum
How to use checksums
8443fcbe8c6e9003acf52c41ade8914baebe59fd2bb4d8e0ddb61c57c344a833
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.dev1741128853-cp310-cp310-macosx_10_9_x86_64.whl

Download URL stim-1.15.dev1741128853-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
81d8ed8f4f4d97056eb61670b72823040fcaa6da41496a2fe7f2004a35402ddc
BLAKE2b-256 checksum
How to use checksums
a0e6e35a8550071236f08e9af2676a5661604400f9433de44fdf6f319980609d
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.dev1741128853-cp39-cp39-win_amd64.whl

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

Download URL stim-1.15.dev1741128853-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
8236a0cf9d16e1532e7c95a4a964d900f77abaee6eb3a9420674bfdfd6a8cf89
BLAKE2b-256 checksum
How to use checksums
72b9f2923b6bfe49923663d6f5e9c9bf2c81c3b4bcfcc4305a0c1150782e2c80
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.dev1741128853-cp39-cp39-macosx_11_0_arm64.whl

Download URL stim-1.15.dev1741128853-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
a6c339a33feb53f4240ff6c5e162bc6c2f258ad2123169e49510a5ca0aa1f86f
BLAKE2b-256 checksum
How to use checksums
1c365dcc3c9b4dfdfedbc418c820259aac856f673e613ad3250caab45f4d4484
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.dev1741128853-cp39-cp39-macosx_10_9_x86_64.whl

Download URL stim-1.15.dev1741128853-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
3435607908aa2b280e524f84c77d89e266f55eb435e57b7df12ea029a66361aa
BLAKE2b-256 checksum
How to use checksums
a1b35afb98b886a2d60656cfb99f4122d750ba6c10d4fc54504de30acec20649
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.dev1741128853-cp38-cp38-win_amd64.whl

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

Download URL stim-1.15.dev1741128853-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
ae7762d4c7c0449786e71824a4427c610b98b53ed4a71cd0403100277ad10b5d
BLAKE2b-256 checksum
How to use checksums
ebaf0cebb21f9a16514d8d785a2fe1cd6b01d9e90470cfbb1f7644e08bd5b245
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.dev1741128853-cp38-cp38-macosx_11_0_arm64.whl

Download URL stim-1.15.dev1741128853-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
ebf76bca1f16cc333c41af33ea48bd0550d3055ccfe721e85b81fd05f728ec1c
BLAKE2b-256 checksum
How to use checksums
e6dc6596d9bc438df0c1b9d675c9c6cfa124e9c2295e72fc1a35d6211288aeed
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.dev1741128853-cp38-cp38-macosx_10_9_x86_64.whl

Download URL stim-1.15.dev1741128853-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
f1f822bbfb9f07afbe06c0c07cadcead2f05c4345ef93ec7b2ef0769b46e566a
BLAKE2b-256 checksum
How to use checksums
127d2ec0a441444060de6efe222aa8d7daebebabbc16f1b4174ec02f943f3313
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.dev1741128853-cp37-cp37m-win_amd64.whl

Download URL stim-1.15.dev1741128853-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
b16fff7157f792a86615989f5d9645672a0c67d7299fb27a70bc5ce167af930f
BLAKE2b-256 checksum
How to use checksums
10972afaf75e055625d5df706ab203aacc11777914c1c808e2432a3afc4c8a0a
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.dev1741128853-cp37-cp37m-win32.whl

Download URL stim-1.15.dev1741128853-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
e90e663e3f960ae3fe1eb41e7b7989bbf3c689836cf487b38d103bbaa10a8c40
BLAKE2b-256 checksum
How to use checksums
b004c4891d18045ad7f6967b49c630268e826fc6355e8e36679fbaed82e8c42f
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.dev1741128853-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL stim-1.15.dev1741128853-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
8cd05724068b40fb4fb43c6a579387a5245b88168498f96d7c1bfac7e4155e81
BLAKE2b-256 checksum
How to use checksums
a1835d23a9d842eeebfa82fb2f650320f43d107306c0aa118e874b46002d20d7
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.dev1741128853-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL stim-1.15.dev1741128853-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Size 5.1 MB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
837e1dc9fb31a1916d4ac21ed1d41aad08dc0b7c923d74cdb87a2423ddfb3cc2
BLAKE2b-256 checksum
How to use checksums
6937a623abe9c80e92642c765d6bbae6aaa029fbf391f8fc983b1e44f2884151
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.dev1741128853-cp37-cp37m-macosx_10_9_x86_64.whl

Download URL stim-1.15.dev1741128853-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
ef7af3297655f0e3e05713803dbb5924966ecf89b8eacf677cd5d23efd9d1f46
BLAKE2b-256 checksum
How to use checksums
44eafc60703fd708b271e6777777f723c201f0166fc35c43367280e48244e3a6
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.dev1741128853-cp36-cp36m-win_amd64.whl

Download URL stim-1.15.dev1741128853-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
fe708d38a7e7e3a1e72aabbeae0b8f5c37af55f926431cf357e45af4686f8188
BLAKE2b-256 checksum
How to use checksums
3a1aadae89e34752330ea45ba71b32613c15eb907703e349bfb0fbabaf059076
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.dev1741128853-cp36-cp36m-win32.whl

Download URL stim-1.15.dev1741128853-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
da89fc626c9c1547369246d7ebc8585d37a6ebbfca74ca3fa79ad6e1aa77045f
BLAKE2b-256 checksum
How to use checksums
9f5027f6f8505237ad9073ece2a451d9fadd2934e577fd99027d824ba69000c3
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.dev1741128853-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL stim-1.15.dev1741128853-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
df91bbc8affa075a2f5a85ad87bfb761506757af3936a64ce509f0d7c71b64fb
BLAKE2b-256 checksum
How to use checksums
06ee3e7ffbcfb082bfa85079f5a330674e14d7f3b32d803dae9f66ae453e0984
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.dev1741128853-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL stim-1.15.dev1741128853-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Size 5.1 MB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
2794854da10f89b4f2f8975738292ae06db3401a1034709596c3e7b692d690c0
BLAKE2b-256 checksum
How to use checksums
4fce5336979cbdde9fdc7bbdab011b5ddc0fa0c8346005677a770c361a6fd6bc
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.dev1741128853-cp36-cp36m-macosx_10_9_x86_64.whl

Download URL stim-1.15.dev1741128853-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
e5dd3d82a3c9f0938647320a83ce9a59646267c1b773b4df80b4cba2d3ce472a
BLAKE2b-256 checksum
How to use checksums
8a57fa7e5a4f052209c02c006d36e6f461903ec61e354064c4614b0c85e48303
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