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.16.dev1768329600.tar.gz (865.3 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.16.dev1768329600-cp314-cp314-win_amd64.whl (2.8 MB view details)

Uploaded CPython 3.14Windows x86-64

stim-1.16.dev1768329600-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

stim-1.16.dev1768329600-cp314-cp314-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

stim-1.16.dev1768329600-cp314-cp314-macosx_10_15_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

stim-1.16.dev1768329600-cp313-cp313-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.13Windows x86-64

stim-1.16.dev1768329600-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

stim-1.16.dev1768329600-cp313-cp313-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

stim-1.16.dev1768329600-cp313-cp313-macosx_10_13_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

stim-1.16.dev1768329600-cp312-cp312-win_amd64.whl (2.7 MB view details)

Uploaded CPython 3.12Windows x86-64

stim-1.16.dev1768329600-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

stim-1.16.dev1768329600-cp312-cp312-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

stim-1.16.dev1768329600-cp312-cp312-macosx_10_13_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

stim-1.16.dev1768329600-cp311-cp311-win_amd64.whl (2.7 MB view details)

Uploaded CPython 3.11Windows x86-64

stim-1.16.dev1768329600-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (5.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

stim-1.16.dev1768329600-cp311-cp311-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

stim-1.16.dev1768329600-cp311-cp311-macosx_10_9_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

stim-1.16.dev1768329600-cp310-cp310-win_amd64.whl (2.7 MB view details)

Uploaded CPython 3.10Windows x86-64

stim-1.16.dev1768329600-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (5.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

stim-1.16.dev1768329600-cp310-cp310-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

stim-1.16.dev1768329600-cp310-cp310-macosx_10_9_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

stim-1.16.dev1768329600-cp39-cp39-win_amd64.whl (2.8 MB view details)

Uploaded CPython 3.9Windows x86-64

stim-1.16.dev1768329600-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (5.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

stim-1.16.dev1768329600-cp39-cp39-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

stim-1.16.dev1768329600-cp39-cp39-macosx_10_9_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

stim-1.16.dev1768329600-cp38-cp38-win_amd64.whl (2.7 MB view details)

Uploaded CPython 3.8Windows x86-64

stim-1.16.dev1768329600-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (5.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

stim-1.16.dev1768329600-cp38-cp38-macosx_11_0_arm64.whl (3.5 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

stim-1.16.dev1768329600-cp38-cp38-macosx_10_9_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

File details

Details for the file stim-1.16.dev1768329600.tar.gz.

File metadata

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

File hashes

Hashes for stim-1.16.dev1768329600.tar.gz
Algorithm Hash digest
SHA256 ee718f30ec89e4bc3debddf7736da8ac0d1192908ade73366da20bb5309e9a6a
MD5 d57f1b13baa75155a915cdfd537e976c
BLAKE2b-256 fdf49315849ea7e95a9389820805bd4bf18f93e8aca78fdc9c97b4dcd0767966

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1768329600-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1768329600-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 9d50c0afc6b33cb85132eae8aee1610d0b45fef647b2ae9cb5516d945c665e50
MD5 238694ff68ead42421a6ecb64a33087b
BLAKE2b-256 10bfd96840556330d879af0ae87de308924b04a11bd20fcbb565b79e887c1605

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1768329600-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1768329600-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b99894f0f3c5bc8a992626f2abcb2109e876a44b880a14db9e86915efda0da3f
MD5 8c82824e009485331a3bf7e229e19338
BLAKE2b-256 2435fe1b776cea126d3f133def8e00c12083730ea57bc7adaae3f06512bf7d67

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1768329600-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1768329600-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4e21422d231014592f14f03fa1d65ac81aa7084ecaf800e2c54bc8b7da2f4c84
MD5 3596374a1cc7c31a278c3ae56cbae30e
BLAKE2b-256 ec26993f5fd1d5122d3907c6669f2cea7290702b98aac6b8e8893987f7a260f7

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1768329600-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1768329600-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 c45801fd27a368b0599faa8705e95bc719f3fe3ffc52071f598ff880c109226f
MD5 d898977cb92b6d63e46a9b9011a49222
BLAKE2b-256 b736259ea05958a76ca97f8db247179496b4a0a8284a85819872a82ce6487d1e

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1768329600-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1768329600-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 8069528bb2cd3b890ebf5f26355ed1ed064eb4b6bc58bc01cda56e19cf4d4905
MD5 7f79def35ac23dd8e148ab69e0369a62
BLAKE2b-256 ac398d48d987c879ccffbdbaf5db23a99c87bb8e892b9f909f9d75c0a7e58301

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1768329600-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1768329600-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0f86a9b5f375cf1b966169b8b2c75d8708269218775a0cfb7eaeda816f2bac3c
MD5 b90dc2b8b2ce17e75f48a742d3a4952f
BLAKE2b-256 730c4ba9a60e59043cf1327cd001ee01f3214b903e5b1e4a421da9c8e921393b

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1768329600-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1768329600-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 08b9929041def49111a40fbadefe408e9e73abd4e7ece242bfb1480d591e6655
MD5 78176f2932731f24ca7b0c39a3da30c3
BLAKE2b-256 695983690fd604e81a605452786bb30eb0ec68ef8bc9a53328930c554ecc5098

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1768329600-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1768329600-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 ba4c5735825a06a473d061d6a23b32bb96b308654a66855bdfb2c9a4b4302ca2
MD5 973414d1f26e75039e2020e34d90da3e
BLAKE2b-256 8ae411fa21265b0d00361f961dce8e0b1eb04f9e995322fa46cc8aa7db6c2e33

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1768329600-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1768329600-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 81a012e2aa62a12ab9264ca49af4b04ae8ed9a032875e49a2aeb0fdafb132087
MD5 2e5e1f3e891d858c866459ed578e60bd
BLAKE2b-256 d042b032bee7b6eb5235f60c506ca7479a8cc42b7578755a734100acebcf0f22

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1768329600-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1768329600-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 71f9df8fe7be5f9c078bf2dc1c5aa59b749dd078c7a1fdd4dc2f33a236459a1d
MD5 9f3ccf2b78e63b2ae09c51298870c687
BLAKE2b-256 8557e8f79cd7b20fff1a655150815001b69ddaf31a0e25bd2b66b46ac8576101

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1768329600-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1768329600-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7f418d0f290a550f3a74117dda1bc9a56b0aedf673e03d3aa6b9a99c1eac5118
MD5 14a1f2e20846cb62dafdcd286b18f2a9
BLAKE2b-256 963d2e060623746e6a611873400ca45010c3dbc6c17ad5b12d9d5b5468a9d6f2

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1768329600-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1768329600-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 fddf78b3c60876951cf13c6fc4edfe44bbc4143b5fb03d46e7fe5c20113db750
MD5 3c6832dfad29a34dbb2398cb925db838
BLAKE2b-256 20f89173c29bf5bbd96a3b3a90b3c690f9e864e3e37125b6d26940dffa718ce7

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1768329600-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1768329600-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 f4210685e3e3e88fae869a8e410692c78c0f3086455c17018e631535e291b013
MD5 6c798aa7815223544b78fbfa59301939
BLAKE2b-256 e50b06af5122cc14ad0c4079e57a5a692e1c2f74a5979668fe81b4f95c14eae8

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1768329600-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1768329600-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3c668305078918737158055c9593f410dfc86891e8c16bce6bd3f1cda994df4c
MD5 2d43256716cd1fa6b1a4f09ab089ed7d
BLAKE2b-256 199b04ff1dedfff5b5370f84f3b7c7a133c682b4d13f8b5867f92f27b5058075

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1768329600-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1768329600-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3e101d2649bb976e9ff98afe1d07ba515e34eb8210ab710305fd94055f6ed10c
MD5 2ae096e13fa0bf2908deef080ece6aa3
BLAKE2b-256 f5f332741f1a1a90b1d213213e266631e3506408027bb7a5dc2cba6205664c7f

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1768329600-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1768329600-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9cdd6553c986ceab219f570b529efd94c9cc6c5b8f75cb1fc998c24c8eeeb949
MD5 332187d980bb42f66459163a541f3325
BLAKE2b-256 8dabb96df5636f00ba50808a94d175f13b6e176b7e36a497deb81e0e5d8d61bd

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1768329600-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1768329600-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 051dc6bf9d299bab07bdd0eced348faaabc81b483e69866cf5778e11314fa5fb
MD5 cf3ca79967375c554383f206824ac3bc
BLAKE2b-256 dcc75668662ec6a2a7cedc0574734f9464640aad9d7b6d571ce95147920cf0df

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1768329600-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1768329600-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 764eccc2dd8ffa1226bbb388b29f6b8ef21011d21967d1177184411885b3e64f
MD5 d1dfcc94f4eb225b99755ff7af20770a
BLAKE2b-256 4b2708b001f17e4e836ad206a041ddc01b003cd474cb949709ff0850eb043168

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1768329600-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1768329600-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 631998e07611f1aef26ac63534ca173ad5f70eafe4fe3702179665cade671279
MD5 a8f4fcc95378d37852a5b554a20ce789
BLAKE2b-256 a4bca532a8a4a0a74208667d19dda6b8d06f4ed6bb95b1f3bce628ba440b565b

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1768329600-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1768329600-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cd4478c233adcf5681286b3d3a39e1b337a1a26f4446b0721307cc9845124f2a
MD5 fe7b500881e97026a12529fe0d8bf39d
BLAKE2b-256 8600783106b62bb9b80867e7e5ac4a096115c41e59123314b6cccc0d1de8c741

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1768329600-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1768329600-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 d0a8cda08ec8b0076afaa7d81074782f839c0d2d86bcf2c8770d4740e1eacfbc
MD5 cf3584f1162bc717758daf797f9cf1d3
BLAKE2b-256 65a1de113113bc389082290a2883b6219f94ab341c32300eb02618ad86426615

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1768329600-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1768329600-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1b8569b6836575c011320e726cd61fccd0cf9e9c1f73cd4d88b527a3175559c2
MD5 58f7d7a3a2412ab8d97ca0528c1c1b41
BLAKE2b-256 12e9c0c8f8ac8f29314f7a48e27d53c1ffc240a48671ceac026d36abec067682

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1768329600-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1768329600-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 97786d38f1c4781afa391d843554136ac3f86ff67b77b50b0b99615c300be428
MD5 19d56590b804cae00ed1d0bfe54c1f58
BLAKE2b-256 842f23b59507f7c1ac1fab9bac2567a8b49780774c3e27552479c0cf4c2e7cfe

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1768329600-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1768329600-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3cbec285fc06366d4c5e9681982c00079818297d065aea37e0f84b1b0cc09aa6
MD5 95840c4f2f2dbe889f75c3d474f1bf93
BLAKE2b-256 2f09be62b235383f4cf268cda6b435e1893be5678144d01871aeb1f40ff2b6bb

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1768329600-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1768329600-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 160b6b291e070584273a9b8b2ec6376d706e3bc651195224ef5b2cf3d9aea95b
MD5 bdab16c475b57e2716bd173a0ccfdad5
BLAKE2b-256 8f232f310b09a7954cf6ac3c5a6cdf52873edd30efaa9cf0a508ffacb929155d

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1768329600-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1768329600-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 549885b38b48f132a8da183b2327d168aa6dc33d4f52247d028be136204e5bb3
MD5 e745dcf68a8188be4738d4c9eb530997
BLAKE2b-256 2afcf3d584b1350c97b76b324bb4d8b1967de87a683443b59bde0e1fc588f338

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1768329600-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1768329600-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 753d7b09fdb722372ddd92970df0a8f80bac233604a24f16044caedd50225bdc
MD5 7b920ef6b222d7a5fe4a033fac42087f
BLAKE2b-256 9ae0c43e744698f59897a512132279740f0847251795102766b25b11304dc956

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1768329600-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1768329600-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9442589295321ed7f2c1835440317b74e12fbb33f6639f103f3030f10cd26b37
MD5 b0fc54102998c632b05fead44bffbea2
BLAKE2b-256 2b1aa7d5b5ede7c7a292d79e5270cab6e8380aca4dba8375926b34fdef99e5b3

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