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

Uploaded CPython 3.14Windows x86-64

stim-1.16.dev1768525144-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.dev1768525144-cp314-cp314-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.15+ x86-64

stim-1.16.dev1768525144-cp313-cp313-win_amd64.whl (2.7 MB view details)

Uploaded CPython 3.13Windows x86-64

stim-1.16.dev1768525144-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.dev1768525144-cp313-cp313-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

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

Uploaded CPython 3.12Windows x86-64

stim-1.16.dev1768525144-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.dev1768525144-cp312-cp312-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows x86-64

stim-1.16.dev1768525144-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.dev1768525144-cp311-cp311-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows x86-64

stim-1.16.dev1768525144-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.dev1768525144-cp310-cp310-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows x86-64

stim-1.16.dev1768525144-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.dev1768525144-cp39-cp39-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

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

Uploaded CPython 3.8Windows x86-64

stim-1.16.dev1768525144-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.dev1768525144-cp38-cp38-macosx_11_0_arm64.whl (3.6 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

stim-1.16.dev1768525144-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.dev1768525144.tar.gz.

File metadata

  • Download URL: stim-1.16.dev1768525144.tar.gz
  • Upload date:
  • Size: 877.9 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.dev1768525144.tar.gz
Algorithm Hash digest
SHA256 4dd290aa734b8753bbc498bb75d834ec0114b4df952b0f35cec57111ebad5e66
MD5 7f5c93c328fd90cde3ffb44200f16263
BLAKE2b-256 d670558e853e1971c9193526b6c1481d7e66efc54a0afcfaf235a59b15b67a54

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768525144-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 0a0965957928bfc8b6ae29e105851b15ab0bf988957bce2102c396240e58e7d3
MD5 628015e462ad40953898ca6d12ce3feb
BLAKE2b-256 5f7b2c0cb435ccd2d85fa3afa19528c7eba25a2adee83850ed8f3ca3173892f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768525144-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 df95a7995daa9b905283758259ec50de0e3b862babd5b846d86dd0b64612ca30
MD5 a03411d29c88152cb6afc8b6ba0ea29e
BLAKE2b-256 8440890ef456024932124a8be7b5b121f918547607b269694bf6bc2b51b81f65

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768525144-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b49832c9dad6597576ad798eb7fed58dc78ad332c366e8a291bfd7b176656023
MD5 e237d52031ca19117de35337c80f718f
BLAKE2b-256 85f84b484e7a67a8650215a7d42416d35fbcbeb3b761ab9fc59a2a8e18b373fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768525144-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 083249a58cc9b81a74cd6f5d950ef9c96b5e8103a9748bca0e60a8f05418d00e
MD5 8520862059d90b4eb7bc4de0ea3599fa
BLAKE2b-256 b79aa773e71682e3c41f87dd81149b6f21191dcff6ced76805ef55d82414a653

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768525144-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 740c08ca7b56a3a8f90098616b029129c5f435f3e1ee1aa36a764df22feecfbc
MD5 2d72680c347d13f29e58ffe636e12091
BLAKE2b-256 1048b28e431b8f8188ca9c7868d4a5504c6626e7ca7af6e01e38f9e05d293712

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768525144-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a69eae7e3f85823a1b2509f344e70801da28302939916ab070243a85ba135cab
MD5 67d9b56f8e601689e87e0ce9c3b36c0c
BLAKE2b-256 4c702068d2195912a3b0681d6ece9be2bdaad58b0700d472ed0e2a2261978af8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768525144-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3fd54e15aea0a66bd7403e77617f8f0c95ddbc30cb12056934fcfd2d39974cfa
MD5 7bb2f53a77e59768721de33f5bea30cc
BLAKE2b-256 703ec299ff9d99d6f36bd3309966df38773f06863dd8c1d39e385608b6ec9aae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768525144-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 ca71e15fdf4025f6ed245ff4bd7f03ce3422a41b3b1a2129269d836deca2969c
MD5 c728a0bcc3071896088caa08d3a1d632
BLAKE2b-256 fcc291d1acec8798841ca66e4afe120123532f66620ec7f61dfbde342608d533

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768525144-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 8c551624b5af3fe8521a63d9b919c57124fc163abdcee6fbd9db76d06eb3b7ff
MD5 1c50a070eabcf5c73a75da1b72fd3622
BLAKE2b-256 043ccb3fb6c74dc5d175dc090883bcc401f7646168989a70284e296dc0168956

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768525144-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1bfda310c6482b7530e4e23a69903dfb8ad99a8ffcc8aee203247b9048e02eff
MD5 670c9745ef44720785a739708cc81c73
BLAKE2b-256 25542438be0074e0730c203fbc6b73f5eec04dde0e4d049c3c35233b26fd713f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768525144-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ab600e39430810336a60f5ad8973b95ba6e88e87ee5b22edfc6bebfef6260b24
MD5 9807d8d281c23a389541bc9a476d2cc7
BLAKE2b-256 45aceae98ed51d9277e8f4befb40be3199ed2a81a39a9c107175a71e65f30c43

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768525144-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 0038bc64df5c0d646253f48b1b3680978bec3da3e1b95c9397f5300c54693bd5
MD5 d6e09cbdbe76f9e9a1d43ee4719497a5
BLAKE2b-256 d980319635a02398a20e25660d11aca14f7cbf37a26bfed056102cc753b623e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768525144-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 feb7a7f1203bf7267dfa2b63baafed763746ab59838cc910d829317c5cb0075c
MD5 293b0e0d53bbd0efa0f5102f1ffcc2de
BLAKE2b-256 e929cb86ebd7d43daf10d61ca285b19613cc3d1396d0c651599b2ccc5a6b9e91

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768525144-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 06d7a05067a41995bd365f30732cff52271aba6cc21a7bcd490fbc2515426a1d
MD5 5afc10111d814ba5b2cd968d26d63c2d
BLAKE2b-256 89bb32c1a693736df10c49d3e2f2a6f3c481658109418549e9c8ff9a5fd498f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768525144-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8afcd43c69eaf44fbaab4ae93c44fe328c2bdc2a82179ce27a4235c5ff908995
MD5 6a373229c1d999a2e4fc3e7f7addee26
BLAKE2b-256 58d5da2082312b9da0523b1d1d09d76392b4d4a48cb602221be692921ec74027

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768525144-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c207b520875225c1d7974d6edababbf68e34e3c04678922ed20bd99c6e18e462
MD5 ab7bf36dcc108179b41b625a55818be2
BLAKE2b-256 f556e2ee2b4012ac75d5b0d07ba16fbe1156d5cc9f7fe2c9df69cdcd12ce5aa1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768525144-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 aceb4b4304fe9d23ac04382f6edee47234e957d2b6cc2db3c578fed036ef2cb8
MD5 4ae7d687b7f380f6fbc0d4eff5ed759e
BLAKE2b-256 ce5ca8db7fd3105c16e6b35f8a8fa87dc3f5122bc73dcd1a7d2729e53e555647

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768525144-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 48d8232851f075ef06b0aad21bbba4227206496432031913e9e7dd6b213a2274
MD5 99afe68f551e47483185e9273588fe8e
BLAKE2b-256 34d35342a3416c80d9133b269c3c157140fca04f789b88dbef1908adabb1dc52

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768525144-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6f38acb4eebbe351dd6140756a1e3b7cacf9c74f55956fa62b5625e48b2416c1
MD5 10953bab95a2a01902b309031d1997ce
BLAKE2b-256 dcd1d9e871c7231549c99fdc62d6067bb56a2c2b4afe32b6948288d2293f4431

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768525144-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 246f941de331d9adda2409383b1f2521b5b92d31455d945a14b5367ef7ff301f
MD5 a5d09f20caa90d936d6e3018496efce2
BLAKE2b-256 0d639f467b6c5a7193ba7d43fee741c2ed93e1d1e4c67bacc9cc55a7a7f1365e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768525144-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 fe52423ca8fc4fa5c93e9c41bce14297206e03cd9b0c181033414b4c8b52de0e
MD5 6258b6f1140bfcc0f9e117d4ffa4552d
BLAKE2b-256 0a6b1e6b1df04f9b482b54cadcb9f89cd5d0ea6d28f6045a7b56859df46d5d12

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768525144-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ce4636e0006205cd153f64347d574cf864596bcad9898b5bf413941f1dbf50f9
MD5 8e6ee20040f09583f57c7e5efc73df64
BLAKE2b-256 e11a4ae9bbb827380eee26f0798977ea4cc62b2e4bd414895a3d7c7047842b97

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768525144-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 eece64a903fa23bcda8589d71f57fdbbc6fdeb1ad56cdb7fcacced20b0e6b822
MD5 ac9abf639cd53f220496cef926425bfa
BLAKE2b-256 4468ca8a7d6017724ad58daeb759461ebbf1b4fcbefcd565a7ccf4fa7e4ee77e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768525144-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 289e3a1ebf963f0b288e3e562476a6240cab7adc5bedfcfe8026d69bfcf2decb
MD5 ec137704013e73beb445f4cbe5f4a404
BLAKE2b-256 cc2a673a8f51ea0efac6a7d78212bee55ddc17f75379a70bbb986586359b8405

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768525144-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 accaab6ace65a43bcd1026bfe891ae93aeefbe308858bcae89a27d92d2c14ab7
MD5 553c2dc193cee3d73b23aa98bde4f94d
BLAKE2b-256 45c3c39da6f89cfa41557d88bc4e4e1e43f4fc503a39ba21eaad361edc9c6f1a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768525144-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a06170db8e640438aab6d7d0c3c5f00ed01896960caa5fef4fb0670ffcfe8768
MD5 c74a403ef1171463302ac4490ad1a0cc
BLAKE2b-256 b50931ff5258f3a6e29129aac0e1f24fc23a8063d82377e638d1038f70c1b7db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768525144-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0974dc62b9581d2c4eccf9845ef8eef19be0e056536084496cb81081e6e1b1dd
MD5 91f82159cde661dfa33007180ec78141
BLAKE2b-256 e3f225cb260012570f37f0dd6ecdb3bde88f00c1b8e873004e5e7df9c50683c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768525144-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7bbbd040a6228623a811637ae734b9591b359095a7ccd72867d5e18dab357b86
MD5 6c8d76c3a679ffbf0334ea555eac7406
BLAKE2b-256 20b7a42e0e1b86e3d75fe1c6c2a96405a4b9d8dcc72032992dc428513a886c2e

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