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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.15+ x86-64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

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

File metadata

  • Download URL: stim-1.16.dev1776308765.tar.gz
  • Upload date:
  • Size: 882.2 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.dev1776308765.tar.gz
Algorithm Hash digest
SHA256 e0ba82bfd50b88e2eb16faadca40ae073e472beb709d380e2ca58177736380df
MD5 0fd6ab2841e31b55e4ffd91b9e02ff26
BLAKE2b-256 9ee192a4c9f7057504f0acf1229752cd8f87810a8bcd64121d427e6b034ccab1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776308765-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 a9679436243bcafc5ee5e0397277fec11777ba8f42b10c6dbc3ec02a57854f3a
MD5 bdf6027e97a8da469cf01556d12ee4b7
BLAKE2b-256 84a5b9c669b9bae856a3ace2fc770e4152cc28ea85319a67a9dd5053846ae19d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776308765-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8583b92404daedd5b2b5c0863451d52c121e061cf483120ac50c6c53c1194fdb
MD5 a830a66278e538c4ed64abc79486d60e
BLAKE2b-256 46e75da7e4b44d92fa26a22d7b496d8065ba93b2cf7328123f1fbc0194d2a8c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776308765-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 10dc843df44daccf8184bbae594fd2edcf402aa1ac35f116ea784795f7bd3398
MD5 ce02206be179297c57b7486b91a0707f
BLAKE2b-256 28e4cf7bad2cc30387c20a2159bb02f2ef4a6e957bd98489b73188714cc27919

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776308765-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 21de9ba6db8a84de7fe2c7a72474161e274b70293362b722bf7f4e9e93f2b8b8
MD5 4b9f9b5ce9b1a12da651b0d00e8ed6ec
BLAKE2b-256 11a632ee3a40031a20274ccbc1aaeaf6de5a77bf68e66f8bbcce268548407ce9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776308765-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 b3c3645d221a8c476bfe57ed3a04a6400560f9ef37ca986e4bfe693202309596
MD5 3ae2b218feb447c6ae5b3eeef83c389b
BLAKE2b-256 13ba1670e0749b59b406f50a74e9001a48c7172a6ebdf01a8bcdacab12b6cbc1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776308765-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0dcdacce9ef7520e439173b971fcff6ae0c8c1501816628aae4465f158747991
MD5 1a26d053c1b05d592860674b5daca8b1
BLAKE2b-256 a996b8230b1dc8db5c03938811242db5d60b9546e99fcb62f7a7c1e9e44e67f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776308765-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5610fb3488880b989e11e3711dff8e077e8c8430d1f293c8bcaf1ad8f80b08e1
MD5 8ed049869022720e73b00a8b1027a6ae
BLAKE2b-256 715a76b5680b40cee6992db01d614762e2e4ae0e921b0fc29f208b9673b62572

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776308765-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 69827d1d872e7cec391f0006f3d26a9b5328814800357c51d1d5bab55b7cdee6
MD5 617c3c95703a4de004fff8f606681bc4
BLAKE2b-256 b2d771a7dd14b0630fe741a551a3b4d2f63a495c072d53770e5d41f6bedaf6b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776308765-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ab5c9a1c21c3437149a7babd025ad141166e78ff21972db1efb4d6dc4a6f0ec3
MD5 3395381ae5095ac2cca3395661ab26a4
BLAKE2b-256 5e4dd52996baf4b18f7c827cfec672215ae040f6c41f65f05bd21c83cc78073b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776308765-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 98257e51adc6cba7b982451f6fec5ded71dd1059a6500dbe3d57e6a3f3c0e497
MD5 bce5f0efffc966010b5680921c156264
BLAKE2b-256 f47afe2bb84d07967841599ce0b1c65c0824711979aea3e679b9500e81064906

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776308765-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 44d0efa4e36b32bd47beec8b54049ec4e01c9733e27c8468a7c2aca1e7e6a8ea
MD5 ff75e719f1ba2d8baa37da10cc60b666
BLAKE2b-256 c733c0ed9cb50ed10d5a8b833a7ac0e3498f6f223f10a0440365f114f6d32b69

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776308765-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 92c23282e193e14328330a32e3d65e6383866922f7c63623358745f6f75868b3
MD5 775ee66aaaa987968b000c40ec8c3dcf
BLAKE2b-256 851c3ea5212d04d7dcb737611ebb5a49cf6fecc9d4f6c83e32a0d00c8864ab1f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776308765-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 2c564b9c80112d6c39afb6609e7c199816ab8592db4dd2d5687210f8351d1b4e
MD5 ab7036422b564cb53443aa5c885ef34d
BLAKE2b-256 6172a04d48ee7d4d93dab727aac3e086db2459354e6da6d390410be47a76ed24

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776308765-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 def148cff560162abb59ac9d0f9f9450705968a63b01778839b94317b95fe51b
MD5 759c6759f9e15f6b60061ad69ef188d7
BLAKE2b-256 308567bb45e69d829b29fd2d0bb3600442cd292b06c46785c606b779e0fa08d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776308765-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 48c6736e5eaddf9efb8b1c2eec6c1c0580f72e1f4ed87ae6c34db5ee262eeb34
MD5 61a6c61fda5e2b75832fe97b2ab162ee
BLAKE2b-256 145f6ab878a06b17faa598fc01d922dd9123035a0ce095e59e51e68575c6ed3c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776308765-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 73a572d58f3df3945a16dbb226fd21042019816668846257be23945771710479
MD5 3757d55c7b0cb6070d6674ba4c6f74a8
BLAKE2b-256 5052b422097f7c02dc0a5ec28a459a1982147ae2b12886c54efc909c0d2d22d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776308765-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 af7f762268638e3ed2323dad9993a03cbc3d46527637d9536dc33a7e18590462
MD5 641b513811317690a192d6709cfd42de
BLAKE2b-256 47b262855d94da440679fd25f97a700f809e433acf9e45dfdd4738a5af9c7f54

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776308765-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b8d64e00d8bb3515d376523e63e0287b8f42e6e1194ae988ec97269aac0062fa
MD5 f8cd5336f6e5a9caa525c24016c725fd
BLAKE2b-256 51db734da300885c1301ea5169065b2551d0de810c9b4c9c2e9c2d90446c6d2c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776308765-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a4ed8ad4d7e7b4e2bddce94ef9cd1942f38c4c4bc23e51ecd5fc8b7dd617497d
MD5 e4f5341d0df88b9db7885d2839a09ba1
BLAKE2b-256 9ea933f8599b5e5ca8eee7f89447f4e7bf7d45f7417d4c46c7e07cb508cd5915

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776308765-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9007f23b5bc3140ce4b628529c6dfacfa155651ade5e6c701e9f0c2f1b1a89d0
MD5 6b338929b4efb8acc455a4a70b6798aa
BLAKE2b-256 b09f5eed07bb5b6b1f3f6aa2f57295e7222e357751a7ab8b2715ced540590a82

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776308765-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 11a3a5db4859575ea34962da7bb487b9b39e3786599dda90d91cfbdcdee15014
MD5 3d11091d6df67f367a222be312141f6d
BLAKE2b-256 8a8ba6a5d235de24c9962f75b073d62e754011cec4e60f95b697644b684514ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776308765-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 eca09cda506de084a59cba3a1acb54118e71f3305228be12bce7a36bb5fbdd18
MD5 bc1559064ee7106f5a5b1b895bd1385c
BLAKE2b-256 5f60dacd74ff7baf7376f895281b6e077da878d1213afa0bfdaca6438050ac9e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776308765-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cd84562fddaf156f09ffeb6f0e158853ba97a6557c3cb7e90baac86de209a975
MD5 9491eb729f5a66cabde03d1a15decaa2
BLAKE2b-256 4549cbae3f549009e936a729650514621e56967280cd87ffdaf40bd2945fee92

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776308765-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 04d0988287353c3f8a4b201b0ce3eaf6cba214b9fa92580c6036d65d64f8cec4
MD5 bdd68d9e1c9f63d5f3d5baec198e68ab
BLAKE2b-256 d2da4d399b7c3ff0fd3b4e23768deb9bf07fbf662558bd7cf302e387287bde58

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776308765-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 8a8566fe193d7928871cfaee5eba0e5b95680368db76f7479868363253d90dd6
MD5 9cd23fa4b74032d94c065fca416b0239
BLAKE2b-256 f925a31f5a7d84393919f259278116362774c2000b01385674f38a3f0656b3b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776308765-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e54f95ca3f62ac402a9dee9914161a5a4b744f0c845aa8893ebe3112e6a723c8
MD5 14ae63b1290249a9615e40eea486c0bd
BLAKE2b-256 90b797f6bb4bfd8bb273df6d459e5af27585e620c23e672a768dbc547a606426

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776308765-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 389c5a439e693322cc3abec8feee03637009448c6f073fd63598be0f72d0ab4f
MD5 a059840c7bf387423a3675f1c85741fb
BLAKE2b-256 bc7bb17bfbee1b507bab3202142a5994c9bd8b3e7967313243d41d0af0c90bd0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776308765-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 aa076c62bbf4197d5c30417ae749820dff7d4d84ba85b10c01193e36fec70fb8
MD5 f48fc303e84cfe31147318299e05ad15
BLAKE2b-256 27eaf20d1206db3efce8258002ab43314f6205121b09fdcc17ec849b6d535dd6

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