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

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.dev1776383396
File Size Uploaded
stim-1.16.dev1776383396.tar.gz 882.3 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for stim 1.16.dev1776383396
File
stim-1.16.dev1776383396-cp314-cp314-win_amd64.whl CPython 3.14 CPython 3.14 Windows x86-64 Details
stim-1.16.dev1776383396-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl CPython 3.14 CPython 3.14 Linux glibc 2.28+ x86-64, Linux glibc 2.27+ x86-64 Details
stim-1.16.dev1776383396-cp314-cp314-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 macOS 11.0+ ARM64 Details
stim-1.16.dev1776383396-cp314-cp314-macosx_10_15_x86_64.whl CPython 3.14 CPython 3.14 macOS 10.15+ x86-64 Details
stim-1.16.dev1776383396-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
stim-1.16.dev1776383396-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.28+ x86-64, Linux glibc 2.27+ x86-64 Details
stim-1.16.dev1776383396-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
stim-1.16.dev1776383396-cp313-cp313-macosx_10_13_x86_64.whl CPython 3.13 CPython 3.13 macOS 10.13+ x86-64 Details
stim-1.16.dev1776383396-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
stim-1.16.dev1776383396-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.27+ x86-64, Linux glibc 2.28+ x86-64 Details
stim-1.16.dev1776383396-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
stim-1.16.dev1776383396-cp312-cp312-macosx_10_13_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.13+ x86-64 Details
stim-1.16.dev1776383396-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
stim-1.16.dev1776383396-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.28+ x86-64, Linux glibc 2.27+ x86-64 Details
stim-1.16.dev1776383396-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
stim-1.16.dev1776383396-cp311-cp311-macosx_10_9_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.9+ x86-64 Details
stim-1.16.dev1776383396-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
stim-1.16.dev1776383396-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.27+ x86-64, Linux glibc 2.28+ x86-64 Details
stim-1.16.dev1776383396-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
stim-1.16.dev1776383396-cp310-cp310-macosx_10_9_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.9+ x86-64 Details
stim-1.16.dev1776383396-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
stim-1.16.dev1776383396-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.28+ x86-64, Linux glibc 2.27+ x86-64 Details
stim-1.16.dev1776383396-cp39-cp39-macosx_11_0_arm64.whl CPython 3.9 CPython 3.9 macOS 11.0+ ARM64 Details
stim-1.16.dev1776383396-cp39-cp39-macosx_10_9_x86_64.whl CPython 3.9 CPython 3.9 macOS 10.9+ x86-64 Details
stim-1.16.dev1776383396-cp38-cp38-win_amd64.whl CPython 3.8 CPython 3.8 Windows x86-64 Details
stim-1.16.dev1776383396-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl CPython 3.8 CPython 3.8 Linux glibc 2.28+ x86-64, Linux glibc 2.27+ x86-64 Details
stim-1.16.dev1776383396-cp38-cp38-macosx_11_0_arm64.whl CPython 3.8 CPython 3.8 macOS 11.0+ ARM64 Details
stim-1.16.dev1776383396-cp38-cp38-macosx_10_9_x86_64.whl CPython 3.8 CPython 3.8 macOS 10.9+ x86-64 Details

Total release size: 88.5 MB

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

Download URL stim-1.16.dev1776383396.tar.gz
Size 882.3 kB
Tags Source
SHA-256 checksum
How to use checksums
ce5d3028ffd7df856043cf16e2eb83340383af60a0f15534e6972e8173e10e93
BLAKE2b-256 checksum
How to use checksums
ac2d4afca19a2ee88779b92131b9615c8d2b2cd210f3dce206cec62c42309498
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.dev1776383396-cp314-cp314-win_amd64.whl

Download URL stim-1.16.dev1776383396-cp314-cp314-win_amd64.whl
Size 2.8 MB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
3736853b9f6c55de1da2428e486706d22a37944fc60cc99c4b2ff5e1cb39b22e
BLAKE2b-256 checksum
How to use checksums
917a73dbac41e3af162d87acb3f7391b8959a0e7d5b51e9ab5ea2c0051527947
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.dev1776383396-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl

Download URL stim-1.16.dev1776383396-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Size 5.3 MB
Tags CPython 3.14 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
189ffd16c2b3b430d3ae58654230c327244a6e4ca93225baee0a6996667a128c
BLAKE2b-256 checksum
How to use checksums
ac1ad4422f2eece07ab7fe9a37caa75dd8d3af285499b86437d00199f7fd3695
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.dev1776383396-cp314-cp314-macosx_11_0_arm64.whl

Download URL stim-1.16.dev1776383396-cp314-cp314-macosx_11_0_arm64.whl
Size 1.9 MB
Tags CPython 3.14 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
cd8b4db6d3215eaa09c65b420b7f0bfa55de55fb6ea54cd330fb1211c8dc0ecc
BLAKE2b-256 checksum
How to use checksums
652786dfbcfb209a9498e5042553840b4c85ae79cbb99bbbf38e17de333d486f
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.dev1776383396-cp314-cp314-macosx_10_15_x86_64.whl

Download URL stim-1.16.dev1776383396-cp314-cp314-macosx_10_15_x86_64.whl
Size 2.1 MB
Tags CPython 3.14 macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
d61f0b1a5256b8246ba24b68419b6b055043cc2d58e542338e13c84d4a0ce3d2
BLAKE2b-256 checksum
How to use checksums
c5ef4d488477f6c19e01b2ba0f7ca85f511a9ccd2b9f5515f869a1eb9d2d64ca
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.dev1776383396-cp313-cp313-win_amd64.whl

Download URL stim-1.16.dev1776383396-cp313-cp313-win_amd64.whl
Size 2.8 MB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
f182b579a4d4d20a00cca2e268e7f927bc4459e7c622e162096613822aa84720
BLAKE2b-256 checksum
How to use checksums
d9d24cede0735a9933932e7ab0aae469699cbce3b801cbeeb283fc5ab784d215
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.dev1776383396-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl

Download URL stim-1.16.dev1776383396-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Size 5.3 MB
Tags CPython 3.13 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
6dbd109256a02ef27e6cc7f864c6ecdb52c5a5c7ee923a48e9507fb5a659e84a
BLAKE2b-256 checksum
How to use checksums
1bd7aa1bb4063ba69e091ec6f166e273734c9b133db48936b2f7f2e289edd173
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.dev1776383396-cp313-cp313-macosx_11_0_arm64.whl

Download URL stim-1.16.dev1776383396-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
8f57a526a50362f7770ee91fb87e71fc4c470f8337226f7a7cea0a6b3118e0af
BLAKE2b-256 checksum
How to use checksums
45ff02bf331d09074d93638a89899cfa21070b56de97607481d4df8dc173f9a5
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.dev1776383396-cp313-cp313-macosx_10_13_x86_64.whl

Download URL stim-1.16.dev1776383396-cp313-cp313-macosx_10_13_x86_64.whl
Size 2.1 MB
Tags CPython 3.13 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
5f8ffe3b3fa2f8bf138b0ae1d072dd8da3f652a96327d49fa7ddefe42854b10a
BLAKE2b-256 checksum
How to use checksums
7dc6463b347098f8cb4735b5a2fe91ed17963be8dda78951f99505c6d9ec4b70
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.dev1776383396-cp312-cp312-win_amd64.whl

Download URL stim-1.16.dev1776383396-cp312-cp312-win_amd64.whl
Size 2.8 MB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
a1d46e486f18d8eba315e2eb81dcb5e4907c7bb1d03bd6397e8ef786ccdc776f
BLAKE2b-256 checksum
How to use checksums
c08a32c260c5619fd86d5a56e5915d33a8cba0cb867ec19475dc608631d03cfa
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.dev1776383396-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl

Download URL stim-1.16.dev1776383396-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Size 5.3 MB
Tags CPython 3.12 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
dac396060364641b8cb7ce03c4d01a12e25289b5074fb549a676c786264318ee
BLAKE2b-256 checksum
How to use checksums
2386d059ece99cc54602f429a5c6e84eb1aa39f442d3aa7dedd7d8ca9d475217
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.dev1776383396-cp312-cp312-macosx_11_0_arm64.whl

Download URL stim-1.16.dev1776383396-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
6259a8badb92194055a7a9b63e0888997cb84836cd9ca077c09fe2e0ebb8b0da
BLAKE2b-256 checksum
How to use checksums
0bb05b7114a71b0bf32c2330219e07fdbdeb5b350af71e674a354d1d2519d09f
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.dev1776383396-cp312-cp312-macosx_10_13_x86_64.whl

Download URL stim-1.16.dev1776383396-cp312-cp312-macosx_10_13_x86_64.whl
Size 2.1 MB
Tags CPython 3.12 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
f5125a67a228a5ec225f5fa2631622ec4a14a584b7f473e3830662d365991876
BLAKE2b-256 checksum
How to use checksums
72906f7169b421fe317cc0e8bd9d0ab01fc9528af3a66f183025c0513f0886ce
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.dev1776383396-cp311-cp311-win_amd64.whl

Download URL stim-1.16.dev1776383396-cp311-cp311-win_amd64.whl
Size 2.8 MB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
e5620153278273f7508abeb147df0a417f3b2b736f6927b3252004de4f38143b
BLAKE2b-256 checksum
How to use checksums
d52cbc5d0bb0cd64764fd05ddbfab87b73a56c95617d6d500e251b810bc8d51a
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.dev1776383396-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl

Download URL stim-1.16.dev1776383396-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Size 5.2 MB
Tags CPython 3.11 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
8caace17b0d1055089eacfbc5cf47f46f9e214efcadf423288c4ca35a5a5cfa4
BLAKE2b-256 checksum
How to use checksums
f647c5eb5aa772348ef84b6a7927243f9137aa1839054c6137c3bf7299c5c9bb
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.dev1776383396-cp311-cp311-macosx_11_0_arm64.whl

Download URL stim-1.16.dev1776383396-cp311-cp311-macosx_11_0_arm64.whl
Size 1.9 MB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
d18cf6648efd449bdebcd0331b8328694b0e734d9da68082a3675b6c7ebe0e02
BLAKE2b-256 checksum
How to use checksums
b167935bc1933ac6265954ec0d7ad75f681286ff5153abf91d725112225999f4
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.dev1776383396-cp311-cp311-macosx_10_9_x86_64.whl

Download URL stim-1.16.dev1776383396-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
67416450f3c258f873e2234fdb1fde4d1b9ce2dc8105136560264b9a06bc9069
BLAKE2b-256 checksum
How to use checksums
85534da1c92d89af0626a27e16c9056c5c242d1d66d5cb5e1336bb99e34d35ee
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.dev1776383396-cp310-cp310-win_amd64.whl

Download URL stim-1.16.dev1776383396-cp310-cp310-win_amd64.whl
Size 2.8 MB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
ada97256ad2897c38b32adcd19b72157ca70b2d66c359cce3fe03a637bfa0b72
BLAKE2b-256 checksum
How to use checksums
52f01d6a241d4b695adf5004e67fda3e6738acd24024f3b082cde9fa816d9d4e
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.dev1776383396-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl

Download URL stim-1.16.dev1776383396-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Size 5.2 MB
Tags CPython 3.10 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
d8c0bdaedccff13d34caeae96d0c3c1ef08827ec74a3265fd54e57cd584759b9
BLAKE2b-256 checksum
How to use checksums
746bd75c4aa8851800c5cc26866bc88361d079ce12a9f1fe218225d443438a59
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.dev1776383396-cp310-cp310-macosx_11_0_arm64.whl

Download URL stim-1.16.dev1776383396-cp310-cp310-macosx_11_0_arm64.whl
Size 1.9 MB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
8ec9426bef54c6e876a861c5796f47273e5db441de62b6a4a93025cc59a13622
BLAKE2b-256 checksum
How to use checksums
8c7ef473c9a031d32cd9355b1d4138a599bc0603aac76cf258518cd1af3b9d91
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.dev1776383396-cp310-cp310-macosx_10_9_x86_64.whl

Download URL stim-1.16.dev1776383396-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
0ed71a3d41ee195c75ca115e9f65b6d80d696a080f59fb6db2ae729bc9545972
BLAKE2b-256 checksum
How to use checksums
d680f617d040ab25725f94df244afe9650c641e89adcc83d97ea068cd767620c
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.dev1776383396-cp39-cp39-win_amd64.whl

Download URL stim-1.16.dev1776383396-cp39-cp39-win_amd64.whl
Size 2.8 MB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
74b1cabd759acc9b957b7e86306f2c62641a263d7b4d8133f48eb4c18fb5bd2e
BLAKE2b-256 checksum
How to use checksums
05c2ea7b8cd45ce75323ddeb413a7cc6b27fa8740bbc514c6cfd1a47d20f9019
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.dev1776383396-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl

Download URL stim-1.16.dev1776383396-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Size 5.2 MB
Tags CPython 3.9 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
9c5b1da5f9cdcc427f7ce29499e22367b223c57706fb011ae7f29bc95b45d57f
BLAKE2b-256 checksum
How to use checksums
de5c4685dcbc3eb69ff39cb85a2c00a437fa622321b4345354de2ca82021d9cd
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.dev1776383396-cp39-cp39-macosx_11_0_arm64.whl

Download URL stim-1.16.dev1776383396-cp39-cp39-macosx_11_0_arm64.whl
Size 1.9 MB
Tags CPython 3.9 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
6ca14b651fec9e4a1d9d851ea1fc025bd5f550314606383e6a3d55658c7e4e8b
BLAKE2b-256 checksum
How to use checksums
fced2ec65cf311414900b4d08562922d78399807b7b189b251046ca374a22a00
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.dev1776383396-cp39-cp39-macosx_10_9_x86_64.whl

Download URL stim-1.16.dev1776383396-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
5651ea8d78eed1d21cbac193948c7ea41cc598715e1fb3d1e5f285fad9b574e7
BLAKE2b-256 checksum
How to use checksums
be0e4fa5279b08d2f22c50090622818b73b55f5ea10b3c17cacda2c542264e63
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.dev1776383396-cp38-cp38-win_amd64.whl

Download URL stim-1.16.dev1776383396-cp38-cp38-win_amd64.whl
Size 2.8 MB
Tags CPython 3.8 Windows x86-64
SHA-256 checksum
How to use checksums
bb3a43a66a93265e09613880a4afea68ddf076037115c5ba8620a789dc007e14
BLAKE2b-256 checksum
How to use checksums
ff8596bf2e1af4739d31a1fdfff9cd8d77c768d1911236c0ddda95e54cd4bf16
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.dev1776383396-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl

Download URL stim-1.16.dev1776383396-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Size 5.2 MB
Tags CPython 3.8 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
7e49dea186dc0fc2bbe33200499b26c25997ed522224fc795af5f9f1b47d64fb
BLAKE2b-256 checksum
How to use checksums
a75ab9c26f10ab09770fc3a14c65df62b3252a89db4ccf8e82421e6cfde2e0eb
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.dev1776383396-cp38-cp38-macosx_11_0_arm64.whl

Download URL stim-1.16.dev1776383396-cp38-cp38-macosx_11_0_arm64.whl
Size 3.6 MB
Tags CPython 3.8 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
dcd23f2b4aeb44abeb8e34d804680dc1e2cd43fc5fc42b04666e7e5f423d29d0
BLAKE2b-256 checksum
How to use checksums
823231eb58ee5cc95d30349f674eb5fc14c491129bc71ad8c8c55058f73884cd
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.dev1776383396-cp38-cp38-macosx_10_9_x86_64.whl

Download URL stim-1.16.dev1776383396-cp38-cp38-macosx_10_9_x86_64.whl
Size 3.9 MB
Tags CPython 3.8 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
af1c360b71f6d78fc1e65bc5e36328810d1219b36bd81871e847d4d452099b7a
BLAKE2b-256 checksum
How to use checksums
65f1931de3990024dcf425a3752bafa1588b14db525c078898eb4b5245c2d7c0
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