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

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

Built distributions (wheels)

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

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

Download URL stim-1.15.dev1741126803.tar.gz
Size 836.6 kB
Tags Source
SHA-256 checksum
How to use checksums
5437ad618cd4f7d71bca43de340c269aa537ec943e07f09873f432d626d730e5
BLAKE2b-256 checksum
How to use checksums
a9a495e25a07fde519aa6ae01c3dc9665e3bd300f2c95c5e2a4cf20fa9f309bd
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.dev1741126803-cp312-cp312-win_amd64.whl

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

Download URL stim-1.15.dev1741126803-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 4.8 MB
Tags CPython 3.12 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
fdc16f93215363095e21e987ae9257009c31d0cf8cf29cedeb51428a52f334a3
BLAKE2b-256 checksum
How to use checksums
b457ae5f1becc70e20155d15259f011028aba33d40f2223c8981c30b967f2a6b
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.dev1741126803-cp312-cp312-macosx_11_0_arm64.whl

Download URL stim-1.15.dev1741126803-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
45a5493e35f1eaebb38835ec017274dd63275591a58635dddd98239b1c6212eb
BLAKE2b-256 checksum
How to use checksums
f59751ff07240ab80354ce5e88b9d85895c36565372347afd8bd47696035f9da
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.dev1741126803-cp312-cp312-macosx_10_9_x86_64.whl

Download URL stim-1.15.dev1741126803-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
42342ee0c6d59d13bff13542992d63e9ab761067e74343b895e62f0697763bbd
BLAKE2b-256 checksum
How to use checksums
362da98860ddbe392d1456fab9284fff5f3ce9534b7f665c298cc322c1094d3a
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.dev1741126803-cp311-cp311-win_amd64.whl

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

Download URL stim-1.15.dev1741126803-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
083d70c68c7c7d4138174f6ac1bf77457e3d00451ed4adcec578176e15651631
BLAKE2b-256 checksum
How to use checksums
2921af8de57d744d4872834084d5568daf725f0510e18953c39c5ae96a3253bd
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.dev1741126803-cp311-cp311-macosx_11_0_arm64.whl

Download URL stim-1.15.dev1741126803-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
a6be70b01b84525a04cea8eb83be2fd0f7c2b4f0eb0c0fc3606ed325d7a37eaa
BLAKE2b-256 checksum
How to use checksums
8849d0fd6184832fb29ccbdf360599f596bec2f1a2e6d7da651163b0397e7e0a
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.dev1741126803-cp311-cp311-macosx_10_9_x86_64.whl

Download URL stim-1.15.dev1741126803-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
916af23e631abebbe51e44539a701720aaeb65eab8b27d148a7cdf962fa2a599
BLAKE2b-256 checksum
How to use checksums
e0138137ce432d4b457aef027267fc1dbc7341b753e06fd54e1a1b6bd6a2b663
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.dev1741126803-cp310-cp310-win_amd64.whl

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

Download URL stim-1.15.dev1741126803-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 4.8 MB
Tags CPython 3.10 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
d59c34973dc60da5964f08f18751db2ca91111b1e54b02f208f3d30d3567ff9d
BLAKE2b-256 checksum
How to use checksums
6d685190241a5d00aebd538950056f1377e3533860a122ecf23b3e46c332e574
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.dev1741126803-cp310-cp310-macosx_11_0_arm64.whl

Download URL stim-1.15.dev1741126803-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
ce3e480d0630886d32c6263b368a3de08e59a7b7b2b141445bf042230d8506bd
BLAKE2b-256 checksum
How to use checksums
dabd046891ec9a9015247a3a2dbde64fbad332194cb34da75937690037daee0c
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.dev1741126803-cp310-cp310-macosx_10_9_x86_64.whl

Download URL stim-1.15.dev1741126803-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
0db1d4dbaa17e99d0d51233fd20a3ee6ee38dae6ac6088641af35c90c387a08f
BLAKE2b-256 checksum
How to use checksums
b694c3928f7192e1d82e035b0c97319c3fdf2a1d1c5953b6a95737abe3b63b1c
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.dev1741126803-cp39-cp39-win_amd64.whl

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

Download URL stim-1.15.dev1741126803-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 4.8 MB
Tags CPython 3.9 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
e1e139107a59336e54372c4002e8059d2bea85912e5529ce9cc14ac11e81e417
BLAKE2b-256 checksum
How to use checksums
75a98fb645999a815fddb7a0143cae1f800b2126c798c38eb194593c0d236e28
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.dev1741126803-cp39-cp39-macosx_11_0_arm64.whl

Download URL stim-1.15.dev1741126803-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
c32ce2317a9d28af8c4ca06045d45fadce995d7309c239435e723018312ec188
BLAKE2b-256 checksum
How to use checksums
2268401d6ef4e66ef84e8ff5d7616f547cc488e7049d28caa136968a6780e27e
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.dev1741126803-cp39-cp39-macosx_10_9_x86_64.whl

Download URL stim-1.15.dev1741126803-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
415509907be75e04184650d19040156465aac344c952316321310ae93c14679d
BLAKE2b-256 checksum
How to use checksums
53ea8a109b1e9fd4cc3c94a3ad78f79bed6f56ad7d9906ebe1a812a7279c2489
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.dev1741126803-cp38-cp38-win_amd64.whl

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

Download URL stim-1.15.dev1741126803-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 4.8 MB
Tags CPython 3.8 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
477bf2dfa9bd814106df432f0adacd60da2cf4b4bc0cb33a83ae1431410fcbb9
BLAKE2b-256 checksum
How to use checksums
40a7f8068a11bfb5a60a551479db30774346d0df7d2d54b8ef3fa26296d5a4e6
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.dev1741126803-cp38-cp38-macosx_11_0_arm64.whl

Download URL stim-1.15.dev1741126803-cp38-cp38-macosx_11_0_arm64.whl
Size 3.4 MB
Tags CPython 3.8 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
d256543a0355d807c4f45224ce1e2781ef26190d2de8ef3d019049ab520bcac7
BLAKE2b-256 checksum
How to use checksums
f9bf3275b7a1a08b8cd807ce3b86d2646579d5408bdea74173f80f45ed7386c6
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.dev1741126803-cp38-cp38-macosx_10_9_x86_64.whl

Download URL stim-1.15.dev1741126803-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
831c7748e0dd2c05d1aad785eb0c51ff84837815f795b032fdbfe03f7a1387f4
BLAKE2b-256 checksum
How to use checksums
1fa70feb15366a98ab88f67dcd99a6d721a8aab6d7db94222f9e2a7c400f91cc
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.dev1741126803-cp37-cp37m-win_amd64.whl

Download URL stim-1.15.dev1741126803-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
8ddca764071e4ca952e89ba2f2959052ae6145923eef75ba5e92e6d95be41f5b
BLAKE2b-256 checksum
How to use checksums
25b39ee093896bad7fa6bc2c62ed5a9edd6e36c9812fe1d6c120ffa683a5270b
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.dev1741126803-cp37-cp37m-win32.whl

Download URL stim-1.15.dev1741126803-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
4313e44b41b54dd890f8f35548c5aa059abcedf11827d22980dbed986bfc1df9
BLAKE2b-256 checksum
How to use checksums
cdff17a361909c54e3e804c0e388a212788fa285f377603aab4f4915db14360f
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.dev1741126803-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL stim-1.15.dev1741126803-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
f43fe4e79589f54fd06ae88508b7a7ead1527abc16dd6faf16017b8e2e36c110
BLAKE2b-256 checksum
How to use checksums
95ae464fc3a56ede1dc477ce69db34fa642162735b524cd098736eaf520e9a3f
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.dev1741126803-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL stim-1.15.dev1741126803-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
7e1f896025b98ead31ca8285ee3dfef6afe5ba49ee6c05b1d035c6e15cff38e3
BLAKE2b-256 checksum
How to use checksums
a121e0a82c742c3ee3cb477c888e591835de93941f7a14c1c6e355c27605766f
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.dev1741126803-cp37-cp37m-macosx_10_9_x86_64.whl

Download URL stim-1.15.dev1741126803-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
880572c99e587a5b92f34cfb43c6ce902774e86ae83121f5939fadc1a88882ba
BLAKE2b-256 checksum
How to use checksums
e9264a175778f6d689821d81a48ef50a818ff69ff0d29936668cd5b459aff5fa
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.dev1741126803-cp36-cp36m-win_amd64.whl

Download URL stim-1.15.dev1741126803-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
0a2a67d777f083fb7aaefce96e035d0828302fa44ee904700fbd4f5f59b734ea
BLAKE2b-256 checksum
How to use checksums
6834fd3bbbb097a42d4e1da54f0c5f8e566066578189ffdc6b663ae872eb8fc8
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.dev1741126803-cp36-cp36m-win32.whl

Download URL stim-1.15.dev1741126803-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
bebf826bf0751a296e00de7e96d6ed45662880bf66d863429b1812dd5549a0f4
BLAKE2b-256 checksum
How to use checksums
b56cb9a9ef86723d30fdcfb6c0651c768644f08bee6b553ada537c3544b54be1
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.dev1741126803-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL stim-1.15.dev1741126803-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
6c36cce3d2d36ac5c19dfb5b708b591492c7e06f11cf793b58c92e2ea2d60c38
BLAKE2b-256 checksum
How to use checksums
4e06fe1f3cc556c34f8174a21d1289a5e7777440475d5b7e35f51fb7472c0289
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.dev1741126803-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL stim-1.15.dev1741126803-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
9a1f7e683490bbe9890b0d417453aa5bff57ac9661dcfbbcb6a8acb4abd1d689
BLAKE2b-256 checksum
How to use checksums
85064124c7e2209f2f65922f907bf21c415d8e4ad6c32e736934dd1ad6fca3b3
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.dev1741126803-cp36-cp36m-macosx_10_9_x86_64.whl

Download URL stim-1.15.dev1741126803-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
fb022fe9fd57d1abbc3d24533340eded4e1ee1f462901d64b2a82a08656658c2
BLAKE2b-256 checksum
How to use checksums
7785506c84e8db29c2bbf5c0afa68bddccd4b382173c444057022e9233b7cfd3
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