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

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

Built distributions (wheels)

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

Total release size: 98.2 MB

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

Download URL stim-1.15.dev1743543556.tar.gz
Size 842.1 kB
Tags Source
SHA-256 checksum
How to use checksums
8728788516150f2d379cce6f38f499cfbe38a5314bb07b6579e3fd81c90eeb89
BLAKE2b-256 checksum
How to use checksums
7bda15a59f9b8df01a90befc0fcc399b4e08b2e9fa3aa0e28f2696f15ca8ea33
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.dev1743543556-cp312-cp312-win_amd64.whl

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

Download URL stim-1.15.dev1743543556-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
2a43203c98c0ac801f48d35b3359a0f9f3c5457ca3691b8917101254e22dfd3e
BLAKE2b-256 checksum
How to use checksums
c5f8ab45803773156e370af446142985683989524f3554dba9dc1ca3cf56236b
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.dev1743543556-cp312-cp312-macosx_11_0_arm64.whl

Download URL stim-1.15.dev1743543556-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
b553e7fdef475abd1f7b00a75a43f0162ce823898efcb38a7e19a9d1871cf7b6
BLAKE2b-256 checksum
How to use checksums
41f05530a1fb9c144ff4ef99c96f56f6c8da954d3ef8b769f9cb592c0aa4f518
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.dev1743543556-cp312-cp312-macosx_10_9_x86_64.whl

Download URL stim-1.15.dev1743543556-cp312-cp312-macosx_10_9_x86_64.whl
Size 2.0 MB
Tags CPython 3.12 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
020b7dfebe5b92f22e85a8943be4273c4911aabbc7aed05cff713aee00b3b608
BLAKE2b-256 checksum
How to use checksums
bcdcb2e8fc6d7847f82c6d81e194dd0f50ec513a1b5f132f9bb5786aa25b8ed2
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.dev1743543556-cp311-cp311-win_amd64.whl

Download URL stim-1.15.dev1743543556-cp311-cp311-win_amd64.whl
Size 2.6 MB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
300e11f6104896c631120e720b3ff6c10a276b176cc38031344a8b4d0f3b5166
BLAKE2b-256 checksum
How to use checksums
0e61e00b2351f6796788fbb009095adb89ed30a291a6f1b56ae490cf82ebd89e
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.dev1743543556-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL stim-1.15.dev1743543556-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
5f5d18f19427e5092dabb10327be63918e639c92fd7677623a474285da831e6b
BLAKE2b-256 checksum
How to use checksums
2495ceb2b966584857f0016673a5c4a80dcfa8af8602a7beafe8c50f8416a4a6
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.dev1743543556-cp311-cp311-macosx_11_0_arm64.whl

Download URL stim-1.15.dev1743543556-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
d55e3ee3ce25ffb9bc0ec7b741e4629bbd41565d65edce3238638a5000d2f12e
BLAKE2b-256 checksum
How to use checksums
eb0aa6ff359c64050f3d4a7a9384d7ab0c4e5237dd19d7de2e0e1f92cb3f756a
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.dev1743543556-cp311-cp311-macosx_10_9_x86_64.whl

Download URL stim-1.15.dev1743543556-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
6d32d1150b1a840ddf5908818e04a91dcd434cfbf0ef76c927c9d308ce5289ab
BLAKE2b-256 checksum
How to use checksums
56eee7ed44598d93bc61fb898d48b8ab23949ecf591fba1ec6a54005ace3972e
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.dev1743543556-cp310-cp310-win_amd64.whl

Download URL stim-1.15.dev1743543556-cp310-cp310-win_amd64.whl
Size 2.6 MB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
462922578cf4d45ccaeb6770fc00111b5324c489e58ab9b103453c0631d825c3
BLAKE2b-256 checksum
How to use checksums
390760d14aac791d42a19cce9dafe0321c6f19ac3446dc800cd316ccfae0b5db
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.dev1743543556-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL stim-1.15.dev1743543556-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
166277a50ecfad3e82648b2a3ccb9e0934b893b1d8194e03b8dc4a0cdec2cb1f
BLAKE2b-256 checksum
How to use checksums
567c83a3ac42939198523f741931d7b2c1584452c0fb4ec9c68a138ba71027f9
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.dev1743543556-cp310-cp310-macosx_11_0_arm64.whl

Download URL stim-1.15.dev1743543556-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
46c39c7e8eeca250a814649a4cd9f0e3ba95c2581f378b4e3bc2d4681514f55d
BLAKE2b-256 checksum
How to use checksums
973eafdf4403b4dc79495b5537e72eba0b57728828ab04ae794a2114753c3c13
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.dev1743543556-cp310-cp310-macosx_10_9_x86_64.whl

Download URL stim-1.15.dev1743543556-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
a0e2880709b13555e3a0207c26cc66cfe53fc5324a771f0cf022f693e3c341ee
BLAKE2b-256 checksum
How to use checksums
9d13effddb3797a68980697098b0a3220940fd394d6b656467a53fc477e452b6
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.dev1743543556-cp39-cp39-win_amd64.whl

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

Download URL stim-1.15.dev1743543556-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
2189bee644541df455b663b5489045221dda368caca508fa006cf15c3ffb715a
BLAKE2b-256 checksum
How to use checksums
548dc99e1aeb2d82da3eb77f5b54cf71f8fc96f3bae8199a1341782b55680510
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.dev1743543556-cp39-cp39-macosx_11_0_arm64.whl

Download URL stim-1.15.dev1743543556-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
cd49da9d2e0b1aa6bd9c212b87435ade4aae8df39152ed3a08ca6cfeb334b425
BLAKE2b-256 checksum
How to use checksums
18318732e528c2e41d43f2bb8713fa83d53467734600a8774279dda1554649df
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.dev1743543556-cp39-cp39-macosx_10_9_x86_64.whl

Download URL stim-1.15.dev1743543556-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
5f4b4fb3c795f52fa465c06aaf0b5969a5119ee99ce3837139f90a2f40773f0c
BLAKE2b-256 checksum
How to use checksums
af6925074b1ec2ba823cdd0899390685ed7d955f0cf4546923b5f293f21edeb1
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.dev1743543556-cp38-cp38-win_amd64.whl

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

Download URL stim-1.15.dev1743543556-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
fd9d3efaed242d135f2252d9e3930379220162c20d18daea04f1914ff999de96
BLAKE2b-256 checksum
How to use checksums
3d031c1a58e8aaaabc060e4d2325bab7850e7b062c553e0d7f18de16bbae2ac8
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.dev1743543556-cp38-cp38-macosx_11_0_arm64.whl

Download URL stim-1.15.dev1743543556-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
c340c706cc5ab087dfd85c932d95c7e1813ad5df2de6d6bf2d43c9c1019c4e63
BLAKE2b-256 checksum
How to use checksums
667454a8ef9e72a33065ac7fa068c1c3215b3a101a425d443c96f84c3c9c3fac
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.dev1743543556-cp38-cp38-macosx_10_9_x86_64.whl

Download URL stim-1.15.dev1743543556-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
4c8294b572d9b2e3a40e610d5e8ff816196f5f5b6ef2e8b2dc81fc66997b8154
BLAKE2b-256 checksum
How to use checksums
7448877054ef0b61e8ab4358e25811281c47542d86bb548bfee9585c81f9eb0d
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.dev1743543556-cp37-cp37m-win_amd64.whl

Download URL stim-1.15.dev1743543556-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
6e87f6f869b2d2cb5878d47dedb4eb42b2837743cf90ac0861a580bc440b8977
BLAKE2b-256 checksum
How to use checksums
397518e868a2f204ceb96f8d3e33445391fe9799820b44ddc7609dd6f1ff1306
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.dev1743543556-cp37-cp37m-win32.whl

Download URL stim-1.15.dev1743543556-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
66203f7ba3d6b58c3b2499b2aaaf59812535d9fa9aa6f4794ba5b2ae1f417b5c
BLAKE2b-256 checksum
How to use checksums
a21eec3026cd4b010e545db891cc305d638dea6290573909487ac8ea471b8fc2
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.dev1743543556-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL stim-1.15.dev1743543556-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
4722493e3f693d56ced38cb4604037b4ac1f0d70c1a489a2bca3478f525b63cc
BLAKE2b-256 checksum
How to use checksums
f6a162da6d383edd1aac5269d87cd6588dac4f54e069ccd3b5bf423595c3d4b2
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.dev1743543556-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl

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

Download URL stim-1.15.dev1743543556-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
21082098ca8cc499d929483bae238f9dbd1e1676080b13c051b32e8b41812aba
BLAKE2b-256 checksum
How to use checksums
2e70be71c38b9e51369b40badfb10f79dd4e9c9dd8cd0ac840e8cf55749ad464
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.dev1743543556-cp36-cp36m-win_amd64.whl

Download URL stim-1.15.dev1743543556-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
f81a05fafb375a9bbaf3db7fa7f3d7d05d0b33b071f9bd2d5aa05bfab85717f4
BLAKE2b-256 checksum
How to use checksums
8ae1d6fdd5f04936c8f3268cf6c1c74abba2e99be38214cf9be852aef529b7c5
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.dev1743543556-cp36-cp36m-win32.whl

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

Download URL stim-1.15.dev1743543556-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
1f3bf12c64c54a7583689a71b6eb51793e2fdaef5ccf65409b45ac734184057e
BLAKE2b-256 checksum
How to use checksums
6d25cfe41855c548735dabcc6bac3b8113354df2785697721038bfc176632425
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.dev1743543556-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL stim-1.15.dev1743543556-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
b36f802e983ba22373a003415afd36dc219b2487b6e830e7d313dd06667661a6
BLAKE2b-256 checksum
How to use checksums
6af3111dc000b8e33dd48349161d8c6ae8de5b1b5f68d1237e9f938ab2de5d8a
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.dev1743543556-cp36-cp36m-macosx_10_9_x86_64.whl

Download URL stim-1.15.dev1743543556-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
d20f1136cc66462856463517b5217e70d257f2e98258d75a9f1d2673daaf2061
BLAKE2b-256 checksum
How to use checksums
563c483715207ffa484eda568790cf05fc0093267ddc11ec37b37687e054a3a9
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