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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.15+ x86-64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

stim-1.16.dev1776477515-cp38-cp38-win_amd64.whl (2.8 MB view details)

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

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

File metadata

  • Download URL: stim-1.16.dev1776477515.tar.gz
  • Upload date:
  • Size: 882.1 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.dev1776477515.tar.gz
Algorithm Hash digest
SHA256 e3c43d945d930dc3dccb1cf3552650b96348b6957289563f5089994d6cc91ba5
MD5 f722d67857ac0ac4256b013640f954d0
BLAKE2b-256 578209928c880830bc28defa063401a5a517dcb92e02ae5597e273c4aaf8c9c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776477515-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 1b34d487cde768e9bdfda69eefc9a98d6faf7ed949efe242a9f2a0759bf11ab1
MD5 97f2236da3dcdeaef7157505f01da9fb
BLAKE2b-256 bdd839a86ee3bd0c54a60f74cb751a0c569868d35948d00c32d165e0f87568d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776477515-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fd7dbcfe6e8769af38ab385ff3ee28bf2e4cdc2a0c3a97ad86509d19e4b19083
MD5 605d5a4dc4afe68efb87a1dda9799c8f
BLAKE2b-256 3358bf0ddfdf7f23d1cf78c7ed19aa46f1dae2cc83b7ee22a6b3133a40bd422b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776477515-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cf6aec5e45412b2767880550df936990b175070728785674e9523588e9a4a4bd
MD5 bce8075602966cd3741afb976ce8dc49
BLAKE2b-256 b6c298e2c7dafb85e2a11f49b0d85182524ceda000402c4b53d6894d03e645e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776477515-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 2e6221910b46e149734fbf6c855daa6f659f14fb9931b246fd7b989f4ac9462f
MD5 214c9c94b9288ab4a60b2fddd48948fc
BLAKE2b-256 3df037d523c4b88cbe34f3a3a37613e5a0e7c5f7410d860da7a829d5c19f6bbf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776477515-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 fa736cd0d58550b7e3aad5ee5c5d28b6e524b052254c72b8d2320d0a760a29e3
MD5 ba436b47be1629e26fc531ad51f1069e
BLAKE2b-256 047670f00ae0d34a3c21be4816183b14e59cac9de0b0d35c065eb3804b7c2884

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776477515-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1371be88323f6afca387272880a368933fda7ef78819b186f6c01726ca03eef8
MD5 582bac0f053b46df3d2597fc8fc6c0c0
BLAKE2b-256 0b1e9bfb0fa86714a9ea45d6072cca0bb23fc9815182868d0934dc0ed57bb070

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776477515-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 02db4c4a9d892c80b93188d59952f996e9ebb6497be54fae14376635f3736d61
MD5 15737d9bdad6ada46f7d7a4d621fba70
BLAKE2b-256 3a3ebc763b25758df802f3263b566c59be7489f8ca177aa1dce0056c0615d156

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776477515-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 12b4afa3d75bfe91fbe403775ef6e0346baf14d4da85672d00aa9ba7b080f382
MD5 d6f83b6cdf4ff0646a9b37fc68ad8f5c
BLAKE2b-256 44223ccd86519b2897ab6a9499fa24b82d8f470d1b52a76b23448c1aa91b16d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776477515-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 042038aae1b34d3618b6d6457e0c91edc5c807ed0b3e9a115546df04cb7554f7
MD5 cee72dc015b520c65b04fd78f4ecb6c6
BLAKE2b-256 594810039787f6a3c058e713d80356840551cdb4efd55c6169be115263f9fada

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776477515-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c55ed4ff05b99673116bbd42c70339f62edbb1fc99b481262d288a867e00fe67
MD5 9cf87403e7f3718750dca3ca69b398c3
BLAKE2b-256 a2183f5d995e927ccb3d87a2b64781b82057097c5c7500010377d9d960da101a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776477515-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 02dc89725564256310376e89f57cded76c26236072615e5c410b92525b1fc8b2
MD5 fef7931274539791a4c09a8250af32b2
BLAKE2b-256 cd65a6d773400f23e75237795733200b5dae0452b4b5f23299a7616895aebd35

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776477515-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 c5e212e6026acb1537b4b0e52f57f95244f94c00b30447f86325051c28622c3c
MD5 4bcec7bb94c5711c5c2076e282850c82
BLAKE2b-256 699708ddd8e942c7e87c94d1e59be5e7a7c55a93f418bab8f643850eff6089e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776477515-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 41c1e7bb4fa4808f6618382d7265f97536b378a7320f6f0100e238d2a37c819f
MD5 267167c8fecced81fa85e6ce28bd0f99
BLAKE2b-256 77fd48654a00b63a4ae0c4cfa6035b97f62df32b928fbce4681802c05a26a80e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776477515-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ffd45e560ead4791a901599d3e12a95fe2125559059f5e54d7caa901e09978d9
MD5 2f4056f72bde469234d935f0dc344fb9
BLAKE2b-256 be584e5894f6bc5374a9ef0a0f872d7290d12f47e7df667a4a8e85dd46eadf96

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776477515-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7c92c51882e34cc7348affa7343546d302c6ee05c514807ac0e7909d76e887bd
MD5 0f6d54a20b05d3665833c775adbd9240
BLAKE2b-256 b2f326f95660dbd4b321b43666c2fac63b0d8834221162f55989e85169c60ffd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776477515-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2e82f6751080f0f5efb5270c4c96c487a587a510307aafa32c07be5ce07f0623
MD5 aad7ee75829620480daf9c70945a4601
BLAKE2b-256 f66adc7f4cc45fe008de2f8c8697e7e05ab1d54420201eb76ee143573fe2263d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776477515-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 7e6c3ef82887159b4f4586767fbc390e24ed2768af438205dc08bd5b67cfb8fe
MD5 2ff7340f94cd11c45f71fadada08d73c
BLAKE2b-256 cddfae85cad68a9fa0d1499740b76e462c3236a500432dc62365912b962decb6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776477515-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 119e189f0cfc406d3da9aa25c057a624c7b1b00be57ea704be0f2203749dc6ff
MD5 a52d8020b9ef83d340924e53e24e28fa
BLAKE2b-256 b543a8a17777f1b7750a2d126954c41048ca78365b585b9d02327b1c77e89090

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776477515-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4ac03ad60a8865be1fd6b274bb22f2179d1c2ab634e6da4d7d3746a019f43044
MD5 f68da6823610e2102b8947de016f5822
BLAKE2b-256 3fb293d50d1d318f764b6b30091e334ddd43253657a478877d467ed83f9760f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776477515-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c9b54ecc8ac57c23240290699eead017d9b32165c32a0d12946fcfa62334c3df
MD5 53f7c8a303da84d312a18caacffab8a5
BLAKE2b-256 c1a9796a1a5561572ca6c89e4707c6594773ce28427d26e13a722513ac21a4f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776477515-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 5275dfec214b11bd2d458965d4ade731f4f2197244e81dc62a4d3f8f137d97a2
MD5 441f839c13b483f7a9a119edaa85f846
BLAKE2b-256 f10f18450a075cd0e1d9f6a4cd97fee620e755629c9e608d40069e960a02c9df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776477515-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c804220c7ca787a20a3afffe06ff5ce01f6a2142d8cc281c6e84c256a86551c6
MD5 27176a0fe59f214f69cbd530ac38b3b5
BLAKE2b-256 26128a4a266341bbcff6f267072c5f4a78228e05f5dba72aa13faf9c4adf25f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776477515-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2ce9a465dcd05ff709b38a44889fb3721819709a44dd9c382dd469da1a8d45c5
MD5 f4b88bf45cbd2a857be485b39485d08f
BLAKE2b-256 9f950dc8cd97a1ef50614419615c5e1f31c769dabda1a7bf849f716a2679693d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776477515-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5bfcee92385826b65e44867c49fa85ea50ad8a624c31c264f31eaca9655d27a3
MD5 780e42ed3eabaead4450ddd78408a629
BLAKE2b-256 8cc56783ab34a2f0f29ca83cfce05560c67aacef71f09200c0127e0ccaf26ab1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776477515-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 241190cceceae81c1da491dae5cfc1509e2bf2ede197efaf1a1c516f1b50a783
MD5 c4705b8782f62f6f2aca80ba562fbfad
BLAKE2b-256 3911398c5b773333af46c12755dc20726de89e31dd48ac6901559601c8d71b03

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776477515-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 118391e6057709db7ee40bd5add576f22340456ee9991bbb84ab5578dc95eb85
MD5 2f02c1ecb165ab6fcf3ef22ddbfabc95
BLAKE2b-256 5fca73a740460456fa99109e7b9c5b6a46218de00107bce726625437c6ebeaa6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776477515-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 23d21c69782ebe585c6fe7fe90d07dd8c65eef2eb94dfb62923ba147b966dfe9
MD5 1a28f1a362a5926ce8e9ecaa7a59f99d
BLAKE2b-256 3139be371d31a1812855810327bbf4d0cad8bb52dfe468405be36d3b7bbfc20b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776477515-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cf15ac78afd76e7f031e1e188ef5a38e20bbfd3d382d3c86c164994b0cfada14
MD5 12928d1974f9e7f77581b2ce2f74e79d
BLAKE2b-256 429b9563346ac8802864075ed68645ff8c69e14943fd92180de7911e90594ce3

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