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

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

Built distributions (wheels)

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

Total release size: 83.2 MB

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

Download URL stim-1.16.dev1776288508.tar.gz
Size 882.2 kB
Tags Source
SHA-256 checksum
How to use checksums
dcf11024cd6151be82559b1f585c0560a375c6a07d82f26ff09a456b5727791c
BLAKE2b-256 checksum
How to use checksums
d3d13d86c69f7cd421821a522a711db4bd0d790daedfa9444fff02d59af517ce
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.dev1776288508-cp314-cp314-win_amd64.whl

Download URL stim-1.16.dev1776288508-cp314-cp314-win_amd64.whl
Size 1.5 MB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
736078a809e5315ad13a71c805aeb43051d05fa382d1eee92780d030740921df
BLAKE2b-256 checksum
How to use checksums
60cbe822ee6ec6cc1c2e3df59b96075672c6a72b25865edfc246a444cc08d2bb
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.dev1776288508-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl

Download URL stim-1.16.dev1776288508-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
a11bbfde3427fb667d593a1ad0054126d3ec3404a6e796450c651872c6a5b379
BLAKE2b-256 checksum
How to use checksums
e00d14f49e604fc739a023022021b4d2005c3c5887ea0b983cff936334ba80e9
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.dev1776288508-cp314-cp314-macosx_11_0_arm64.whl

Download URL stim-1.16.dev1776288508-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
14109e94757142469ed97cc4b927934805ace2ffd052171acef0a0535f46baba
BLAKE2b-256 checksum
How to use checksums
f147d22a159e9a9d4b8d376b976a4524e866cce022829762d5c910c60e7e5721
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.dev1776288508-cp314-cp314-macosx_10_15_x86_64.whl

Download URL stim-1.16.dev1776288508-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
36a21e230bba47048b187ac88424d2487a2a7d07aafdc93915b37c3ae4f868bc
BLAKE2b-256 checksum
How to use checksums
1c6b113539a31369ed9ba25f067bb69058bed2e56e5325974478623918b64edc
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.dev1776288508-cp313-cp313-win_amd64.whl

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

Download URL stim-1.16.dev1776288508-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
094dc7a3aafa0941b2678a0ed49654f901e824505f95901e64ef8aa4077858c2
BLAKE2b-256 checksum
How to use checksums
fd89151a63f7a9de05d13bc72d0b120ef001877d88cb8019514726c1c7beb46c
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.dev1776288508-cp313-cp313-macosx_11_0_arm64.whl

Download URL stim-1.16.dev1776288508-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
71cf2ea9f2d5bcf810ff1277bbe754ee3dfa4284b79f73b40852f95b4cd70709
BLAKE2b-256 checksum
How to use checksums
e6777818a68cbe6231480dcf39281ccf2012727f4c095109061398a3bd5c2fe7
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.dev1776288508-cp313-cp313-macosx_10_13_x86_64.whl

Download URL stim-1.16.dev1776288508-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
c935da8b45dcde9573c009b07ef0eb21d07817f302f26525b09df304b9e288ff
BLAKE2b-256 checksum
How to use checksums
d97d415889470df4a0d51f36d157c50e58179e9e86d08091d15676d23abe9cdc
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.dev1776288508-cp312-cp312-win_amd64.whl

Download URL stim-1.16.dev1776288508-cp312-cp312-win_amd64.whl
Size 1.5 MB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
bde421ee96978b51039e1fa068ede16914201318f08e64aea11e85b0842b238f
BLAKE2b-256 checksum
How to use checksums
4354a7f95261f7aa7b2465382df779f1fb7a7ca925470fda8bc6d6f3ac59f836
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.dev1776288508-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl

Download URL stim-1.16.dev1776288508-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
8eebd868f851e1e852bd93ec65d6cb4a7ba79fb6bfad4a7fc4f27cd83cb03007
BLAKE2b-256 checksum
How to use checksums
1dcebde1a2d905938361c03b75b35021f6684567fb6213c7d4551c3668973921
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.dev1776288508-cp312-cp312-macosx_11_0_arm64.whl

Download URL stim-1.16.dev1776288508-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
69796462df736eaae49dde5e1d3bc432bccfd8ed3cb56e4b86c2c824d96d9389
BLAKE2b-256 checksum
How to use checksums
b5f0d5ab29b61f2890e11e2a7c1fff5fa119700041a0bd3bc9a12eaef7459c81
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.dev1776288508-cp312-cp312-macosx_10_13_x86_64.whl

Download URL stim-1.16.dev1776288508-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
14ccd83f6282ca46f808b7774b4cfa2050b9f20e047569833ff67c6a3536021e
BLAKE2b-256 checksum
How to use checksums
5ea174078c6f70846d4d5fe106bb3b9f9d82948f9035aa9088b7eea49589a55a
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.dev1776288508-cp311-cp311-win_amd64.whl

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

Download URL stim-1.16.dev1776288508-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
23d88b366985cc2bcfaae5133359d6c368cdb6044daf44cbb5d977125aadaf38
BLAKE2b-256 checksum
How to use checksums
e0e651aba0c0e608eab08b3af192223c4f031d0c67a6ec84aff6754e069b8769
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.dev1776288508-cp311-cp311-macosx_11_0_arm64.whl

Download URL stim-1.16.dev1776288508-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
1c4bfbb5735346e6ea55fc2c8e3432aadf0a3c11037b14da56d200e9a407f77a
BLAKE2b-256 checksum
How to use checksums
c09936eb56d488952e2807393d8d215c8bd8ef3c7b6d98b3658527c6bab1d325
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.dev1776288508-cp311-cp311-macosx_10_9_x86_64.whl

Download URL stim-1.16.dev1776288508-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
d5e1bfd4ae711fa524e756c4b0d22eeeb2a16f89d2b44729d365df825396abf9
BLAKE2b-256 checksum
How to use checksums
e6cd5bfa3bc9ba01b76516ade890ce3300829432a17fdbc9e3fb63d26a768aff
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.dev1776288508-cp310-cp310-win_amd64.whl

Download URL stim-1.16.dev1776288508-cp310-cp310-win_amd64.whl
Size 1.5 MB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
c88d69a77fd895864364ca91cfe87035cd7c7ee369e0c532bedc341cc4e44a44
BLAKE2b-256 checksum
How to use checksums
9d749105058e1555bafefee1282d5b4b9c7c368ababbb922980d88feb79f2553
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.dev1776288508-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl

Download URL stim-1.16.dev1776288508-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
69c7a93a3c9ad201ea3c453750087553833ad6f45b872493130d368ed579005c
BLAKE2b-256 checksum
How to use checksums
97629f5dcf5aa78fa7b9f074d2281427f8c2795e36b261358a6182db752c9265
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.dev1776288508-cp310-cp310-macosx_11_0_arm64.whl

Download URL stim-1.16.dev1776288508-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
1e3d95d9a2158f9838975bb87eda71cb64d3498d7910e5ca5c6d07533ce594af
BLAKE2b-256 checksum
How to use checksums
15a4dcc7a9b2ae1ec39d0d99c19a8fbc898743d73692dd633cf6b3b4d959d29c
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.dev1776288508-cp310-cp310-macosx_10_9_x86_64.whl

Download URL stim-1.16.dev1776288508-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
f1fcd8a69ec7c24714a086aade4e16dc36616a6a512d0273598d947067cf30ae
BLAKE2b-256 checksum
How to use checksums
2265313e014d776eae473b4dbd450411491962a51ab549c704b702b4b50cf234
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.dev1776288508-cp39-cp39-win_amd64.whl

Download URL stim-1.16.dev1776288508-cp39-cp39-win_amd64.whl
Size 2.8 MB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
7935bde32c466abff052547b7c27486dd0b2d0548ccef1ad9fb71b05a9f18bc0
BLAKE2b-256 checksum
How to use checksums
55fc3216274d456a43443cf5f7ab339ca5bed9601e782069551e9f990fff896a
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.dev1776288508-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl

Download URL stim-1.16.dev1776288508-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
b217a8faacd11a94d208983135ad0850d798f4e67acc8f8be8316415f952a0b7
BLAKE2b-256 checksum
How to use checksums
39acf0e89546a664db5d36c6e11a0b3806c03b60892dc233454cd556b61452b8
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.dev1776288508-cp39-cp39-macosx_11_0_arm64.whl

Download URL stim-1.16.dev1776288508-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
2567eaf908db2bdc265c673566e75d3c35a690afbb46744c9377937535415769
BLAKE2b-256 checksum
How to use checksums
aaa047ec5c1834c1cd4908f229452fff9e02a30a25c789912e7fa3968ec35dc8
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.dev1776288508-cp39-cp39-macosx_10_9_x86_64.whl

Download URL stim-1.16.dev1776288508-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
1145e913e58b2b72d0f3bffdb5b952acc9e90474b45c89ee79d290b4ac1e7161
BLAKE2b-256 checksum
How to use checksums
0d76963ef7faadf7d09cfbb4309a13f374c53b6bfd9aa79edd313f6c3acc7559
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.dev1776288508-cp38-cp38-win_amd64.whl

Download URL stim-1.16.dev1776288508-cp38-cp38-win_amd64.whl
Size 1.5 MB
Tags CPython 3.8 Windows x86-64
SHA-256 checksum
How to use checksums
7ea88a955975f1a7f97832a83df2e27a19751d876125e583b5ce8c124ae33e6f
BLAKE2b-256 checksum
How to use checksums
1645ccae41253e5997ac8ad464de0040a56e3eca7a0a2ac2f3329b392a439441
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.dev1776288508-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl

Download URL stim-1.16.dev1776288508-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
c952559618c5350df911203a5216ea599f7605099db015bc6c8e250bb5a665c0
BLAKE2b-256 checksum
How to use checksums
143502cac56fe71f29310f7200db6dce99d7a864618a491ba690f88972dba349
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.dev1776288508-cp38-cp38-macosx_11_0_arm64.whl

Download URL stim-1.16.dev1776288508-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
ed449c6c3a324f9d70aee799dd5953d2d7af95205136fea58934d3693aa6ac6c
BLAKE2b-256 checksum
How to use checksums
c187d60383d1243d1721c19aaca229cea9354e6a482afcf31053f4a635e6e246
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.dev1776288508-cp38-cp38-macosx_10_9_x86_64.whl

Download URL stim-1.16.dev1776288508-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
7a36a8f6df1491836886a1aaabd602e259ee0b15e74e8739a61abdec01c8b54f
BLAKE2b-256 checksum
How to use checksums
e3c7723ee573a39c48764f1d883fc41ff020392fb1dae7721c72a0791c3d09d7
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