Skip to main content

A fast library for analyzing with quantum stabilizer circuits.

Project description

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)

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

stim-1.15.dev1746595831.tar.gz (853.5 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

stim-1.15.dev1746595831-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

stim-1.15.dev1746595831-cp313-cp313-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

stim-1.15.dev1746595831-cp313-cp313-macosx_10_13_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

stim-1.15.dev1746595831-cp312-cp312-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.12Windows x86-64

stim-1.15.dev1746595831-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

stim-1.15.dev1746595831-cp312-cp312-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

stim-1.15.dev1746595831-cp312-cp312-macosx_10_13_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

stim-1.15.dev1746595831-cp311-cp311-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.11Windows x86-64

stim-1.15.dev1746595831-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

stim-1.15.dev1746595831-cp311-cp311-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

stim-1.15.dev1746595831-cp311-cp311-macosx_10_9_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

stim-1.15.dev1746595831-cp310-cp310-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.10Windows x86-64

stim-1.15.dev1746595831-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

stim-1.15.dev1746595831-cp310-cp310-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

stim-1.15.dev1746595831-cp310-cp310-macosx_10_9_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

stim-1.15.dev1746595831-cp39-cp39-win_amd64.whl (2.7 MB view details)

Uploaded CPython 3.9Windows x86-64

stim-1.15.dev1746595831-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

stim-1.15.dev1746595831-cp39-cp39-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

stim-1.15.dev1746595831-cp39-cp39-macosx_10_9_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

stim-1.15.dev1746595831-cp38-cp38-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.8Windows x86-64

stim-1.15.dev1746595831-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

stim-1.15.dev1746595831-cp38-cp38-macosx_11_0_arm64.whl (3.5 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

stim-1.15.dev1746595831-cp38-cp38-macosx_10_9_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

stim-1.15.dev1746595831-cp37-cp37m-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.7mWindows x86-64

stim-1.15.dev1746595831-cp37-cp37m-win32.whl (2.4 MB view details)

Uploaded CPython 3.7mWindows x86

stim-1.15.dev1746595831-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

stim-1.15.dev1746595831-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (5.2 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ i686

stim-1.15.dev1746595831-cp37-cp37m-macosx_10_9_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

stim-1.15.dev1746595831-cp36-cp36m-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.6mWindows x86-64

stim-1.15.dev1746595831-cp36-cp36m-win32.whl (2.4 MB view details)

Uploaded CPython 3.6mWindows x86

stim-1.15.dev1746595831-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ x86-64

stim-1.15.dev1746595831-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl (5.2 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ i686

stim-1.15.dev1746595831-cp36-cp36m-macosx_10_9_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

File details

Details for the file stim-1.15.dev1746595831.tar.gz.

File metadata

  • Download URL: stim-1.15.dev1746595831.tar.gz
  • Upload date:
  • Size: 853.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for stim-1.15.dev1746595831.tar.gz
Algorithm Hash digest
SHA256 a8b65a4f11d41b1ffb42126360f182eab7b51f632357c4067fb5e7e6603fce30
MD5 83b607fbfcd203156da224d8a124a3fd
BLAKE2b-256 c3e2508ca1a53659f4a612efd1b69bd3e00ed4e33af7924ca37e02b927a1ed2b

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1746595831-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1746595831-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6875a866f6315063094cac18a7b47ecacc5612db039f30ec66c042a9d705cf57
MD5 b04e90fa8922a446f2a749a5f98f9da8
BLAKE2b-256 de2eba39b0519d7398fe255c6090e192bc02d9535da800561e7464de10b1097b

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1746595831-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1746595831-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 518703f5d11f88c8eda6a0ad30c9a29779806e083dc5c1696e71e0fe591bf2ac
MD5 b2a51d19b3ec9b8ea3f0e08f5b36f46b
BLAKE2b-256 b6f9e64423a329dbe1de2be3862e32cfa9017e90ce2c68b1960d896334c0142d

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1746595831-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1746595831-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 48a9faaad26a68c236b8bd7828b54ab340bbc20e7b18d544bda827a71d1c7afe
MD5 9fe3897dfd90c73a7c3df00b1c02d2da
BLAKE2b-256 cb2ef1dd5022488adeb4406ad198400883c8d40768b71c1ff1f3a9516de52bc6

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1746595831-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1746595831-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 781d45b1bf69f6fb13fa2030560e108cf3f667dc4a8efdb857d753d04a4ba910
MD5 16f15fd5c063d9619388f7d9d9424322
BLAKE2b-256 c10a470eb30d2b847aee2db2709329cf1233b8a72e854771f77b6a0d4c45e73f

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1746595831-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1746595831-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ca52fec0533f094f411b1934e7eac07db38270b98ffeb843ce1a7ae5c53418ce
MD5 0dcb586c2fbd9be93a50c58597990a52
BLAKE2b-256 ea835b9dae2850e45137a509fea36aa359b2e619e9a5f5ae3ab7746a5c910db0

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1746595831-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1746595831-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 11b917af00eb7bae8ff7a87ed95fb16713237d7d0001b21042f05056223ed08c
MD5 e6f2bb59bd1e7c87c66e3bdb536f9cf1
BLAKE2b-256 11c6a14534c26b19bcf44cca7df3f878ba2e19f09e6c003f9137faa781fdcc71

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1746595831-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1746595831-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 2d1d0455610c9f93ca84ae3741c61fd55eae43a18e847e4b5a3ad35ed90ec865
MD5 0188da099828e08f38dba5c9f1ff366a
BLAKE2b-256 5b9102d7f84479cae92a2ea9a0ea57f6eec7f7b38002a5537b5cbde2ad6d0b87

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1746595831-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1746595831-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 fba2109fb6c8d5628b34b38d955ef53f52c6953d0c8ce529c66b2c3ab11ab1a0
MD5 f7e3203eea53c2164aea8ace10ec8d1d
BLAKE2b-256 dd9225d7dde0eb01dc12fada3530cb41f1982825ae8285208d4267f1ece76c46

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1746595831-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1746595831-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 49cb7a428238667bee846cc736386ff3c07a48ec50f8fa0231433ac5fd7b4669
MD5 8dd1b58aa945de2bcb0c36ca14e7d810
BLAKE2b-256 7246a0e720b5071f300f336fc877964e1e8fff4d96bdc62afaa47fb0f95339d4

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1746595831-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1746595831-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7205b11e614627a111a763ae5ff7370efcd11b843e88a18f8df5988f9bda2f16
MD5 3005d604d45ca4faed80811f35025470
BLAKE2b-256 2e017999b70257efce45dfe08462530cec04883f1ce7d366184ce442c85cb65d

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1746595831-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1746595831-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 66075a2990004083568011a66b25e3692ebf5beab92247b27214faf7a6aa301e
MD5 9e8db42300a24e45bae28843322df8b9
BLAKE2b-256 8da80cb5ed5132a633bf3faa6096502380c52801d5e1019a5953baba13674141

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1746595831-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1746595831-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 75ba9929de54a7ad8997cf962e7eac0464f475f2216c50bdae6d270465670c6e
MD5 3dd76ca67517978522b24c25c42d2579
BLAKE2b-256 d9728a92fd52891ca505babd903abf6256e3168ead23e921fb140516be65fa44

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1746595831-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1746595831-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 70fd38e9df1f5e06820bfa74c22f6e4ff7215451330cfe2f3f0e6a823761cb62
MD5 60fb24daf6b7da5bc4a656f8759ca7d3
BLAKE2b-256 0db1bce2d3805e59a3bfd55d990d8606f1d4ffb5db68671381b80ea3e4438352

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1746595831-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1746595831-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e0ca04d8afcfa8bd10be4923de2a71b860ae71d7bf1c70f25502dc85185676e5
MD5 fecb0afc24ebb68293f196ccaef4ac66
BLAKE2b-256 a0e20397639dd7b3f1c4306dfa057b693337d39ff4fbdaf58f8d7170feeed597

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1746595831-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1746595831-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 05db20f5bb17ca18674f06eb6624dbffdcd0d8d55910c38e4a7febbbbd29a666
MD5 280cc51d445ae608aeb9fe67f2ce66b8
BLAKE2b-256 2c2dcbd529252598ecde9d5f20ef05ea8705623b6ca12993b7defde195d56143

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1746595831-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1746595831-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 d10599583eca91366112aa2c0f3384a1edbb736bfc94441d7148e18da95ea1df
MD5 48cbb1920a8852843a1cdc6074e4509d
BLAKE2b-256 469a6aafc2467e8bbf2ee3a2e584751826a25e64d5fa25110b5964907b89b075

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1746595831-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1746595831-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 65d84453bc02ea975aaab36a4ce62ba19ae45a3922e4ca44aeaa79e898b35450
MD5 923fc98976df9f5b8acc12592ac2f01a
BLAKE2b-256 6977ae3e805ac04b0c4e3188f3fa4763530ef38ad47f7664437392e1dd334a76

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1746595831-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1746595831-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 978ad02c1a1504fe42f22e14daa667c9837a0b1f96ac554ec7a03db93b98db5b
MD5 d9478199aaf22b94c1a4b8f5789b97ca
BLAKE2b-256 368d52e267947ba585973debbf8e8e8d840159639e6ff504a17f3f695946c4b2

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1746595831-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1746595831-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ed9305b16e20d88cef03ab81d21ab34289b674ac8b7fd88cf302a2b4b5bf0666
MD5 88bba6c1fbdefad7b53416023141f23e
BLAKE2b-256 1a805a0a33a7ea0c0de3b4e0f811f3a601b65613b8975bce8c2762d216299b29

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1746595831-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1746595831-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 3215eb51142d1ba05f56bde867a4d6a3a7755d585580c75d8cb6e44d7a351c34
MD5 3ef288b8eae3bc46fdd6cbcb8cf8893b
BLAKE2b-256 702ef46361a4586afb68b68104ecd4c235b9f237977f2def24dec6ef66f7d6aa

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1746595831-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1746595831-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 61f2e542ca2431b15b79523f7962233f2d9614e994f01d7022104936b9a0c510
MD5 420b52e3d45fba28031bc6478d554f4e
BLAKE2b-256 96bd9be4364322bf5e78b7e57ab52efbbf56fb38c3cd851a3c075669e9c8f525

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1746595831-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1746595831-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c1501be87bda318224b939fba5c4c770c5fe05c78e9b896a6bb71d2906890873
MD5 6568ef00580e13c86ff4147c33dddfb4
BLAKE2b-256 b7b8baa3127dc6dc2a8e5e3466eec5dec76b86c4e9b6873b01f86d397c6367c0

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1746595831-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1746595831-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5f6b757297d1bb0f59a5362b96f42f4f085aa80c5394fde61371f18fffee177c
MD5 668901eb95fce48dfccc2ee9749a686b
BLAKE2b-256 879c62b8c551df1a89acbde3100c438103a8471a880033e272bebc034160a3df

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1746595831-cp37-cp37m-win_amd64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1746595831-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 27c2566bbcf35da161ffba6ae5681b7da3cdb3085ec4c0120b316b0024bf9556
MD5 2341e29770a153e703d189d144dd92e8
BLAKE2b-256 7be682e2d10cfa19da579a9137d78be048297d17921bc562c1a400f4c4b07812

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1746595831-cp37-cp37m-win32.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1746595831-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 68ffe845484583a1d379520f6a62aa863eb8771f949c466ef9ea2f26d8560a01
MD5 461ae0b653a5672440ee24a38016900f
BLAKE2b-256 489cadd7dc090727b65aa9c5546bb4d6426b291cebc20556ec3c0d284bcfd613

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1746595831-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1746595831-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a74528142128c84c1ee7becab5f60548b5d02761c03e6ea69e3370ceb31a60ce
MD5 527ea8b7b8e93e8f5382fc09d90748f3
BLAKE2b-256 79cb4b2c88a9dc143b733e0463fba4630523d9e54c73a89f2ed39b974b50d8e5

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1746595831-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1746595831-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7f71f92cb42e1af21a589f9acf52350f776756fb3e2fceaaf089b320f2de58e0
MD5 8d28777d18169788842bbdfdb30fa1d5
BLAKE2b-256 239ef0b70c6e47ad6e5f5875bd51bfdfa74800865051debdacb71047a34d0320

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1746595831-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1746595831-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5e96790954a2c1e42e73fd4a5b96a4d296e21fefc8f582a04deb612e55e37e30
MD5 e71102da08bffae87d5b36abbca5b33c
BLAKE2b-256 0c6bc365a5faf882d02baf933566e1a10d9c14e50e75d72f5f72af67a56f7eb2

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1746595831-cp36-cp36m-win_amd64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1746595831-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 733b8f047eddb2d7c6e674682d6c510ce89fe9586bedc5436a4e7d4d239aa950
MD5 91b5b14af3c42a5a44c93fdd18681e45
BLAKE2b-256 9d27e4cd74ab78c540ee31e2ce2415400f23fc8394ac2ce9957781b16d177c45

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1746595831-cp36-cp36m-win32.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1746595831-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 dfb7851c76c6cce6a0f142239f5c18e0c46b5678d785e51510a42e15ca3fa3ce
MD5 c5bccc9ca30e7cd19fe2a7e8b2fc97a7
BLAKE2b-256 7c4612971498cb920b262daf7cca5824bca2a748c916aa75ca6681a1b1963782

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1746595831-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1746595831-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a0a27ff8b350a7f31e1d8337253d66179d81e5cec0914ccbfc92cd513b418c75
MD5 6062ddaf5e78ace4cfe084d375b054d5
BLAKE2b-256 61adcadc073e24392ed0fd80b1756813032c7995f0851ec20cb9103ba24bba0a

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1746595831-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1746595831-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 eff1d282345fb8449d12902202e0fc950beb107e79728c828c320ac5e2e25d99
MD5 d51fdf15b105c0fa5e022ab532387cdd
BLAKE2b-256 d302c04a3000ddbbe3e60589424a3137dcdfb82ac80a1081b07ecbe0837e28a6

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1746595831-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1746595831-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5e3cc7555d80f4d9a4f8906517f5cb467ab82d5c30300cc507f93a4fb4dba072
MD5 edc7504165e0c639ac1422837f4a4714
BLAKE2b-256 c0894d1c56e736142f668c907a2b1a947bc484c9ac1fc1d54b7521016b069585

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page