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

Uploaded CPython 3.14Windows x86-64

stim-1.16.dev1770241571-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (5.3 MB view details)

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

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

Uploaded CPython 3.14macOS 11.0+ ARM64

stim-1.16.dev1770241571-cp314-cp314-macosx_10_15_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

stim-1.16.dev1770241571-cp313-cp313-win_amd64.whl (2.8 MB view details)

Uploaded CPython 3.13Windows x86-64

stim-1.16.dev1770241571-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (5.3 MB view details)

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

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

Uploaded CPython 3.13macOS 11.0+ ARM64

stim-1.16.dev1770241571-cp313-cp313-macosx_10_13_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

stim-1.16.dev1770241571-cp312-cp312-win_amd64.whl (2.8 MB view details)

Uploaded CPython 3.12Windows x86-64

stim-1.16.dev1770241571-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (5.3 MB view details)

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

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

Uploaded CPython 3.12macOS 11.0+ ARM64

stim-1.16.dev1770241571-cp312-cp312-macosx_10_13_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

stim-1.16.dev1770241571-cp311-cp311-win_amd64.whl (2.8 MB view details)

Uploaded CPython 3.11Windows x86-64

stim-1.16.dev1770241571-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (5.2 MB view details)

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

stim-1.16.dev1770241571-cp311-cp311-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

stim-1.16.dev1770241571-cp310-cp310-win_amd64.whl (2.8 MB view details)

Uploaded CPython 3.10Windows x86-64

stim-1.16.dev1770241571-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (5.2 MB view details)

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

stim-1.16.dev1770241571-cp310-cp310-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows x86-64

stim-1.16.dev1770241571-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (5.2 MB view details)

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

stim-1.16.dev1770241571-cp39-cp39-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

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

Uploaded CPython 3.8Windows x86-64

stim-1.16.dev1770241571-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (5.2 MB view details)

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

stim-1.16.dev1770241571-cp38-cp38-macosx_11_0_arm64.whl (3.6 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

stim-1.16.dev1770241571-cp38-cp38-macosx_10_9_x86_64.whl (3.9 MB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: stim-1.16.dev1770241571.tar.gz
  • Upload date:
  • Size: 881.7 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.dev1770241571.tar.gz
Algorithm Hash digest
SHA256 7e4f4ff150c74e18981726725d828f127b8f173162a738bb117337d3e73a299a
MD5 c2cb0db556963d9ebf4f280f11f458fe
BLAKE2b-256 75d50e997b04e2782f6520d5428768506b8506ba2bae3c4fa0a37d0aa9912886

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1770241571-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 5f3ac6aa7771589ddce6c0594651cc70ea4bbbedc9ac0e0cb1128b478704fd17
MD5 3c0c0a0e9208e151e129c7d0dfe30b01
BLAKE2b-256 895c0b0e6049d2f7a04769f277360f2dece355d445028bd3a5bfcc993ee6f014

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1770241571-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 798f4327e58d8c300cb36a3f65d1f29d15464944b92361184a64839c90c25e19
MD5 5f6290652d6bfefb645d757065e2d598
BLAKE2b-256 a093a66e24864dcb726e70a546e3988a33e8af45616a9229dc71fb86b8991e20

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1770241571-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0dfb68151b57cfb5ee91d667ea77475ce6146b132ab25da06411c8c65922841e
MD5 e55fef338c52631b6ca7c00d6a5519eb
BLAKE2b-256 d90f2e06c2e5fda3331a5190545bf3e07f6a12fc6178d64489ed7ecff42404e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1770241571-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 2004d192f45867fcf9f97f732ff032f3fd09dcdc4298080376d00b48678a274e
MD5 e8ad740f7c0c002d589e29304e7ef996
BLAKE2b-256 ac1e8059439408bc99913d1b6d4c6e0898961b92606debc39e23b71a52baff6c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1770241571-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 ef858d884057baeff54ebe22bac85ca8d4fa041b859df0b6aadf90475e0921f0
MD5 a3eeba52804049300584ce0250e26694
BLAKE2b-256 8a39046c5b6b8d55f9a96aeda025f896331a436ebb535dc844a66f1b67beb65d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1770241571-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2ac4ed26de416823c7f3ed0bf1ea529956363d53cffc7920d0bd6baf64006ec3
MD5 eb264caa9d6f2361e31f898473d50cd2
BLAKE2b-256 12940eec77312d4014fd9122d23eca54c5cb69703f1ce7ada5da139d77c3fcfb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1770241571-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dbe9f6ebdce0d6c4ddeacbd05122398012516906cf51a46c2292292ea97d38fc
MD5 9c3cf4c87d3ffe1f44ede260758dec6e
BLAKE2b-256 d72b143877e3318cc9886fe0031f3307d0b03a107694533299d8fc745dea376e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1770241571-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 b85663e8490a2662599d9e149a8dbbf278b59d6b16a8dc84e5e4ccc3a851c47b
MD5 2ba56b5c32cd20e9ecdf08b2323c8a0b
BLAKE2b-256 6ece6291d3870f50310760801a65c33b9c9ad0f38699e43e3064f79139b27c5d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1770241571-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d6eb1592ab0cb09e246e35d768a5f445902514d61ec6844da0b0d152207ab92e
MD5 902513a6bfd7f1ad67bceec22e52702c
BLAKE2b-256 2523598fb9f49f68c0c89dd74e45ced9425806fbd3108887b22c42275e521780

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1770241571-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7a384def8974b3d3114c0f0bd7848e787cf8f5936d8b93ebef4865f67c7c0fc0
MD5 19aa18672c4007e0276d28bff7a6215b
BLAKE2b-256 e3fdc9c0aaf8ed024808e0038e26f8427a3f070cb626c0eded8aae8ab733f247

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1770241571-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c90765ff8109c7f672b77a9b313b42427d62fd4ff972f330a13f006313232e5b
MD5 d0547c5c51f1ba38ab2ff527031af28e
BLAKE2b-256 1d3be130c6e908ade9a80c8a73b9a414ff3cb92c5402481ca4f060087c9cd1be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1770241571-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 8e2bfac98bda1a72d94e73d27fac3b3534744ee4378ffc8d9afbb6ea6b8beca6
MD5 4b55b66f3a6990c9efc84c9715477c21
BLAKE2b-256 10fce65505fb92df6062384899cbe5bbe1213099d89accdcf84a44fbea764526

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1770241571-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 9c14788dc041523e0da6a82f242d2b888e0fcd069644b62c051bde72e8eca0d4
MD5 4e30aaee009dd09b08806fc35ce5a5a3
BLAKE2b-256 70357b761a617065cf5a417ab65dbda3c2968cba7b5900c28ce18bc8a22c8896

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1770241571-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f31b09838f53aa65fb0733d532e901607417a5d8d5d3fa54a6a53785ad6d1df8
MD5 cce2fa860b620fda3f5e8e06279f740c
BLAKE2b-256 215676d841bf2090b8c2f3451ad9ccb17585d2e3591cdb6a929b0aa24f1ce23a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1770241571-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 12ba049f212986b9e805cea56a42b812057c5062b1c1bf20d138f62deb75aa07
MD5 2c16a8275445930afe683d49c7756ac4
BLAKE2b-256 c2231ba8e1a481cc07bcbdb1868ecfceb3635d3aad0eae7765fa67d053a7f775

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1770241571-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 028778e334bfaa7457272825f986682391f5ef6fe0b7043df3e2a25a8b67f642
MD5 4d4d4104fc7b7cb1eec9c00bc8b05939
BLAKE2b-256 843a2757700eaa4af31860efd58840d17128b03a641352ac06eb3e02e4493641

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1770241571-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 6ebcf5f9e3d3b87b9786400a1877ef9839a4ab26115b39cf7a31cbb78b12674e
MD5 e264f8de72694de93c0b8e5fef4d738f
BLAKE2b-256 4d891645ca956af4202dd0dec0f58d65c6b13c494cdb46e7f83948268a3ea993

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1770241571-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b62ce0fefaf11394706c3c5774e21fe4edbd84468f9ba08a91a19fee9074a9e9
MD5 2314faf1bcabfc641c1120d0a18ac12b
BLAKE2b-256 0d25f543d4a767a92d5347ae3d0f372cc7b30878174e3ca04c21ad2432ceafba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1770241571-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ade00006ca03203c1f7cba1cc71e67b86cd3965af78a5bd8a8ce31f22d9a7922
MD5 3ef5132625e44d0b89c041b13785c35d
BLAKE2b-256 07dbaa38439c1411212f0e43916c80531fbac1d228afe9009ecbc3682c2036b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1770241571-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5863038f16cac518e91ccdd66e71853bb5cb6ab372a0024671c8b49b26235280
MD5 0b62042bb27de338263f5a9787409a7b
BLAKE2b-256 183cfdd0575382c078806343c6adc5517981a312cee40f891b23369cc1678477

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1770241571-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 7bc74c8fcfcefa8316a539b15799487a4edd167d4c66da1f99a51b461c3ae749
MD5 100f8c223e436ae3177c773128b14f11
BLAKE2b-256 4f8b9c98ea910140ab0f7d9423b2c151836e33bb2d33c533fc801648b8972267

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1770241571-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 855cbfb312a201da51217e43e06508504c084205fbd2c1d86d051663a9c76550
MD5 876da784fe88ff8ba124a4b5f8ffaeba
BLAKE2b-256 dc955dbe3ab613bef95e5ddd5db78425aac44fdb4ff780245043ae093a02ceb4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1770241571-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2a5f63f37f4b1813608738e058f5ec23ac38b4117f48934188ce48e6f8126cfd
MD5 699ec9a6ec5647a84927d06c474842a5
BLAKE2b-256 7b55da2f2be27876482d2907331be0254b1a062e1af01d9b5ac6ab778686df4e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1770241571-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b25de91d03f845c0b131536a4dace00348a10c75542ff3741210efef29899182
MD5 f34c68ed5afe15434035ab1b2b5692fe
BLAKE2b-256 6ef72a1a7c54c3bc9cc94591d5040cb0bd757441f9be1456c730b0325f68766b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1770241571-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 60f8e8f9376b4bdac7b6090446b132b53a728690eb669d6dfeb9fff939a93517
MD5 1d93acf184819ef4b4fd1118875be127
BLAKE2b-256 c28a29313d246d1072ad7fb8be826d8cde261d6c787dac70b1fd8ee0220e804b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1770241571-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2ec6fa9a60550787cebc5c37698dc273c70f8b072d9e18d9d1f7c35131baa358
MD5 2c4518dac27c4abafb4de6d6f7f3b215
BLAKE2b-256 39cb841b83f37cc15619b54aa2624ff143ad9cbbc4b4a1b02ce28065a4786c86

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1770241571-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 adc73dd49d97c2068ca7e607ac2dc38ed970142862f1fefd1c1f188a3f26299b
MD5 0cd5a0063509616ca34b4ff6532deea4
BLAKE2b-256 7e33a2fe01a0cd730d80422eb93d81ef54147a357c05cc8f012004b0ee28fe72

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1770241571-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3e2c2832990f4a256b1388f835da08c6226ec753f77d00651f34f6bb152fc911
MD5 a9009783edb5bfd1b93a6a540ffb09df
BLAKE2b-256 27cd6e170bb5d9a1d6e8b24c915c6fdf85ef95208745a8ffbe14c92aae9018ec

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