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

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

Built distributions (wheels)

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

Total release size: 107.1 MB

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

Download URL stim-1.15.dev1743894906.tar.gz
Size 843.1 kB
Tags Source
SHA-256 checksum
How to use checksums
f05fd84216cb64bafc0997fd592baa4d1c0438e0e9d3a16759952f709240ffcd
BLAKE2b-256 checksum
How to use checksums
33773fc518d16d63c6d80235f1bc9a0173a2d3777363ea29a919520b6e14dac5
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.dev1743894906-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

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

Download URL stim-1.15.dev1743894906-cp313-cp313-macosx_11_0_arm64.whl
Size 1.8 MB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
595346abef6d93a76fe8ad225f55cebff11be74c6f444546e043327a548d56c8
BLAKE2b-256 checksum
How to use checksums
156b7a896fb59c7173a461368864155e04f4dbab0cb732227431dbaba8321256
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.dev1743894906-cp313-cp313-macosx_10_13_x86_64.whl

Download URL stim-1.15.dev1743894906-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
1336f24d2baf53b709b35a9eff81a7983b1e5f8b994bd410455423de24b82965
BLAKE2b-256 checksum
How to use checksums
90f2c196454909321124dfaf4b90840f2698250315d1d7a6278c4b1fb83327fb
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.dev1743894906-cp312-cp312-win_amd64.whl

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

Download URL stim-1.15.dev1743894906-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
bf60aa6140114cb599277bb988a193388d3820c43fa25b434b75cf17da6a055d
BLAKE2b-256 checksum
How to use checksums
7c88921e152036198ee1106d2ef98e0efb33d9e80f7599a5fee27f266a0b0a39
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.dev1743894906-cp312-cp312-macosx_11_0_arm64.whl

Download URL stim-1.15.dev1743894906-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
d52ac5507b42aef7863133e84fa7c29e668ef3acd5d00a84ffe5bc5b756ab443
BLAKE2b-256 checksum
How to use checksums
195e140c027930b08f38ae8a5372411bab76b282050dc8946b3cd1ee96750a08
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.dev1743894906-cp312-cp312-macosx_10_13_x86_64.whl

Download URL stim-1.15.dev1743894906-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
be437c3ea777ca7e5adfb09b59a8613c07b21ca44302c46fa8556b34dd8f76fa
BLAKE2b-256 checksum
How to use checksums
be84a3ecba1ee7eb0666659d6c11ed54df0ac65137433bb9e82e3b2c89d8e0f2
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.dev1743894906-cp311-cp311-win_amd64.whl

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

Download URL stim-1.15.dev1743894906-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
24e469b833caeed5a78a26ba74c50533edbe0eb16b86dd1f1cae5cd9d074a54f
BLAKE2b-256 checksum
How to use checksums
4549d48f151b7b9c5b04b8b12ccf21a51bbffc03c54209bedc1a64f1d1708c6f
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.dev1743894906-cp311-cp311-macosx_11_0_arm64.whl

Download URL stim-1.15.dev1743894906-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
78ca5542dc30f20d9cbf2131aadfb482e9d662dab057855df286a8dcaddab3bd
BLAKE2b-256 checksum
How to use checksums
231c5944b3d95ed9dfd76d85b9ae1326a983b8778dc81a45fc5e0b563bf1ac84
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.dev1743894906-cp311-cp311-macosx_10_9_x86_64.whl

Download URL stim-1.15.dev1743894906-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
81ee7445754088201060e49d6941da8182ba11c62690252d31b2565154033fb0
BLAKE2b-256 checksum
How to use checksums
578eb466660c4dcfe93ce771a0d100a126d75ffff26509a5a0ef8445c3f1a487
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.dev1743894906-cp310-cp310-win_amd64.whl

Download URL stim-1.15.dev1743894906-cp310-cp310-win_amd64.whl
Size 2.6 MB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
f92185ac359531373860f3a0e1a5f8f755877bc482e70711225d34f3d46ed2a5
BLAKE2b-256 checksum
How to use checksums
128272b5f46c0f9df3d8937518833793bb5bcbf3b1b6b4eb2b5976474663f4f3
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.dev1743894906-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL stim-1.15.dev1743894906-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
dffb70332490333b00d8a7edb7c75a6865a2cde56337b873c30b61efb6a870f8
BLAKE2b-256 checksum
How to use checksums
8790ee5d6411d54f19a160b1a8211aa09fe222648e47a9988e3e5cc564cdbe44
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.dev1743894906-cp310-cp310-macosx_11_0_arm64.whl

Download URL stim-1.15.dev1743894906-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
61d4bf0c4836630b44ed3f505e7db3ef9b5209cc175519fdc39ca3c78ca54e9f
BLAKE2b-256 checksum
How to use checksums
53c716699e151d3601d11d5e278acc5c799d5e167f3df79d33097a163b9d1250
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.dev1743894906-cp310-cp310-macosx_10_9_x86_64.whl

Download URL stim-1.15.dev1743894906-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
7c2397096adbf423320726194221b96c2708947dcc8264e32b16d9064a65e27a
BLAKE2b-256 checksum
How to use checksums
f1728d0c5bfc07ebac569e4adcea98a52f86939c0a6ecff20d45690db39335a8
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.dev1743894906-cp39-cp39-win_amd64.whl

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

Download URL stim-1.15.dev1743894906-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
63220a0d41dc74d8f7c8ca7a9e4ed7d8c80d1bb9e29e47c516694339b6bb2648
BLAKE2b-256 checksum
How to use checksums
14bfbec69af79ffbede4ebdd47b9e3b00ea0b6f33ddf79de4fd1862fd40a4388
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.dev1743894906-cp39-cp39-macosx_11_0_arm64.whl

Download URL stim-1.15.dev1743894906-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
5d8b84d061ad49a95cb308e4e9004986f2f577dfee9bf0babb3b5d7cfa11283a
BLAKE2b-256 checksum
How to use checksums
c0fa38dd056052ae2307ee93594e630027b4b7115dec3077e86eb1504bd3ed0b
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.dev1743894906-cp39-cp39-macosx_10_9_x86_64.whl

Download URL stim-1.15.dev1743894906-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
03c6ca126b31540f287918afaf2b5b800f0c9f6c09568848aa71e5e33c51d181
BLAKE2b-256 checksum
How to use checksums
1c93e795fb6021212857ed3075902cfbbe5a9db56594ac0b3456d6ac161b9bad
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.dev1743894906-cp38-cp38-win_amd64.whl

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

Download URL stim-1.15.dev1743894906-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
e3f40353fdecc2a126f1a940617e6e76eb8ef634ad4c9cd9debe9d130964d377
BLAKE2b-256 checksum
How to use checksums
fae3af9c7a7797aaa9e06fdd5fdbe7414bf5fb5958a2c63978f8bb6a42c1b59c
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.dev1743894906-cp38-cp38-macosx_11_0_arm64.whl

Download URL stim-1.15.dev1743894906-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
ce8d1de891231047f12ff911f9cb8c302d5badeef3406645adb3764b957deb52
BLAKE2b-256 checksum
How to use checksums
145232742b30f3e2a62665c13e7ab58fcfe718442c664b47fd7789e3c43a6d10
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.dev1743894906-cp38-cp38-macosx_10_9_x86_64.whl

Download URL stim-1.15.dev1743894906-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
c6c8a64bdda0a96afeea55240ce6b17ff42f99d0cd9c3883e826f49995bbee8f
BLAKE2b-256 checksum
How to use checksums
050f96ed631d03178ad12e544ab0dea7911a69e43f0eb7847e2ab79a88430666
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.dev1743894906-cp37-cp37m-win_amd64.whl

Download URL stim-1.15.dev1743894906-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
20a32f82809a589150cadb6b8eb0840b9c4e3bec8dbd3a72c0f13f6933046fa2
BLAKE2b-256 checksum
How to use checksums
4e1be13f4a0fa3e4dfef27de3a6db09b2b8c5be2a5aa3525e35c8d50097bc331
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.dev1743894906-cp37-cp37m-win32.whl

Download URL stim-1.15.dev1743894906-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
8c5a7fd37f56251ab1a9d74e7f758ddbc9af2b98c05f18fe1f35ec937d97cae0
BLAKE2b-256 checksum
How to use checksums
23fea2cf8c28ca44ca75b07cd0fe07fd6a238dbf3e73285bb1173f441ccb5822
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.dev1743894906-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

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

Download URL stim-1.15.dev1743894906-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
adfcdfd18df2ac8b07787f1242117ce92c21e3c8616b56b515a30514d31dcde9
BLAKE2b-256 checksum
How to use checksums
13032cfab3e43070cc1e3b0d7bc7bddbc267111f30367e8cc2b53e978814e72c
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.dev1743894906-cp37-cp37m-macosx_10_9_x86_64.whl

Download URL stim-1.15.dev1743894906-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
60c42c0c8544dd9b4f5a9598e2ae9b67a287a751f1604f6f5b77edaf50f907fe
BLAKE2b-256 checksum
How to use checksums
e5868b24c3e72030f81c1e29bf5c5fc35950c72fffe69dcb6f9687c0cbdbf52c
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.dev1743894906-cp36-cp36m-win_amd64.whl

Download URL stim-1.15.dev1743894906-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
d455546d530f2912439754b55e56c54d62df36f9629602135268a12e5dd82bcc
BLAKE2b-256 checksum
How to use checksums
9322859e86a1b7d1eb15d68aa1d08f8d2bfd25c23b82fdcf14e568e09eb30242
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.dev1743894906-cp36-cp36m-win32.whl

Download URL stim-1.15.dev1743894906-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
3400324b8cfbe5b28565243949522e3fc0ae3eeeb450c98fa61499d46dbb8375
BLAKE2b-256 checksum
How to use checksums
e815577c3bf8224b177ced81a0b8122ab6648fdaadcc10680088661f01a575c7
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.dev1743894906-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL stim-1.15.dev1743894906-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
543a92a6f38e1daec0298fc86be14468170447a7d46235665e1cbcfae123c841
BLAKE2b-256 checksum
How to use checksums
b23948fbf03307e876014af88f681b09cb387a9f1f23c02413b200ffeb91e9a2
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.dev1743894906-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL stim-1.15.dev1743894906-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
93d0a76e5480b1c19c48ad5fb94d6c9de038f961729eb450b0c0d90fe0ffdc1b
BLAKE2b-256 checksum
How to use checksums
ad7a780e351f7421fdb375c85f5a0006992cee8a0de069bcbe4cf8dc539dad55
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.dev1743894906-cp36-cp36m-macosx_10_9_x86_64.whl

Download URL stim-1.15.dev1743894906-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
387c90bdb14c0c592713dfc8527d3036884f3ef66c8672da2997f9a363469cd7
BLAKE2b-256 checksum
How to use checksums
7c536c2d5a4cd277a19330854593e3cb28d1ead2f7c6e5321b67c7a9487620b1
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