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.15.dev1742838562.tar.gz (840.5 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.15.dev1742838562-cp312-cp312-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.12Windows x86-64

stim-1.15.dev1742838562-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

stim-1.15.dev1742838562-cp312-cp312-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

stim-1.15.dev1742838562-cp312-cp312-macosx_10_9_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.12macOS 10.9+ x86-64

stim-1.15.dev1742838562-cp311-cp311-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.11Windows x86-64

stim-1.15.dev1742838562-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

stim-1.15.dev1742838562-cp311-cp311-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

stim-1.15.dev1742838562-cp311-cp311-macosx_10_9_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

stim-1.15.dev1742838562-cp310-cp310-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.10Windows x86-64

stim-1.15.dev1742838562-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

stim-1.15.dev1742838562-cp310-cp310-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

stim-1.15.dev1742838562-cp310-cp310-macosx_10_9_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

stim-1.15.dev1742838562-cp39-cp39-win_amd64.whl (2.7 MB view details)

Uploaded CPython 3.9Windows x86-64

stim-1.15.dev1742838562-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

stim-1.15.dev1742838562-cp39-cp39-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

stim-1.15.dev1742838562-cp39-cp39-macosx_10_9_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

stim-1.15.dev1742838562-cp38-cp38-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.8Windows x86-64

stim-1.15.dev1742838562-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

stim-1.15.dev1742838562-cp38-cp38-macosx_11_0_arm64.whl (3.5 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

stim-1.15.dev1742838562-cp38-cp38-macosx_10_9_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

stim-1.15.dev1742838562-cp37-cp37m-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.7mWindows x86-64

stim-1.15.dev1742838562-cp37-cp37m-win32.whl (2.3 MB view details)

Uploaded CPython 3.7mWindows x86

stim-1.15.dev1742838562-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

stim-1.15.dev1742838562-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (5.2 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ i686

stim-1.15.dev1742838562-cp37-cp37m-macosx_10_9_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

stim-1.15.dev1742838562-cp36-cp36m-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.6mWindows x86-64

stim-1.15.dev1742838562-cp36-cp36m-win32.whl (2.3 MB view details)

Uploaded CPython 3.6mWindows x86

stim-1.15.dev1742838562-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ x86-64

stim-1.15.dev1742838562-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl (5.2 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ i686

stim-1.15.dev1742838562-cp36-cp36m-macosx_10_9_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

File details

Details for the file stim-1.15.dev1742838562.tar.gz.

File metadata

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

File hashes

Hashes for stim-1.15.dev1742838562.tar.gz
Algorithm Hash digest
SHA256 49cce48beda85e37eeb852571a65c7ef9b659166d02294da1026201b8d497f58
MD5 d6a13390c811eddd339715cdd5516df6
BLAKE2b-256 69f0cba3828506c9274814230f70792c14d9f7b25eebde97309c57442e663edc

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1742838562-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1742838562-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e72de9c9ff25a966870a40a962b6d7ba55d0d9f452a6814c68edb5eb6e27c2aa
MD5 c7196bc2a656b5f955041b0861584e81
BLAKE2b-256 a61a342a39216d97026e4058416103f12d1643426a4f7e26d56985b11f6a4cf4

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1742838562-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1742838562-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 41b07a70b824a9732963f86d76287b0c8b24ff3537f1a78a142aafa7b04dde60
MD5 a28eaece86a1546eda0b6b51264dde9a
BLAKE2b-256 d00a51a1de6979c7235254fd36e85753fed1e92bc666e4097b9d3f84bdf14611

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1742838562-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1742838562-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e7318e133139708798d278331cec708c27bf8d85a06fcf19f60636349b3233ec
MD5 9f914862de1fcb0df3a949ad6bb8a5c1
BLAKE2b-256 42d1f75b1f9e4b4e94b032b05c3eb3c3becb6d66efacaf7a04c2211e18cfef16

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1742838562-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1742838562-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4b6cc3229b48222769e2d6453d8116150448d3f4fbb975b34f63c600677758fe
MD5 6b4cb56ef707ec4941a9b823d9c50e27
BLAKE2b-256 fb6c552c2f5f34b9fd6996be429485c4234a0d9a9ed93853ba307b64770bbc23

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1742838562-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1742838562-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 cccfcdeee5303abcdb7be73801c33b7e10ea89b4e1f82fe7823f6b4c04b682fd
MD5 825d70d66bd8259547989422555ea88e
BLAKE2b-256 1963ccc1a0241303cef5f34fab5d4ce096fa4f826f6515e0c54d7a6be6d059fc

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1742838562-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1742838562-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 34d80eb45d3338530fbb38adbfe26c67b1ebb56b8ab550bce41a15b3e9f042a3
MD5 dddec172ea182703ede492c1384fae8b
BLAKE2b-256 3ed6c6bd3a87f165cb96d1cabc0a160d41126bf63647684a21476b11b364bbd5

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1742838562-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1742838562-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8c9f76a5016ed487a8859dd07d6214fab7168f733e99ebe2bac4819a8dbe883b
MD5 a99c7911e5ff6122317fccf8b2dc9453
BLAKE2b-256 626758a146a109450bdebe3a6ee8ef8f7a39270b62da44f52a266ab0a07eef4e

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1742838562-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1742838562-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 66fb2208f084b67749f60187233132f0c69bbf99271a45033084eb7e62e8d721
MD5 711c91d4674c2f539ea2878dbe0efca5
BLAKE2b-256 89397e94a403b46a258f603833cfd76c7c49d49a1f877b750514134e43341d19

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1742838562-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1742838562-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 2f4e3130371a21edf0553eb1139ec4be75f279f884eccd813837ad7c8bd05d0b
MD5 10a777371e90a27b2013411f3094ca92
BLAKE2b-256 10f78cde34f632516ef57a43836aeaaf68e005df50b2ded4748a187e48267fc7

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1742838562-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1742838562-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dfcc6259d89a44c6f05a4148141f30a6097f49824b010c25e93c656113a1400d
MD5 2daeb21236586d990982493308a10be6
BLAKE2b-256 22ad2e2afd213325cc6a518496ef4eeff14e0895644af558983a74c76b3dc28c

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1742838562-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1742838562-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 96e8483cd430122c9e0ace53dd15c4af5b76d8918062d3012f1fd700d547fdaa
MD5 8bdf4419bb22938337496448ba9d55ac
BLAKE2b-256 f16d08ef3a14e2de91105bbb313b032a87100c9d7f4c32cabf7b19b4ee4fc79a

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1742838562-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1742838562-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b5b10a39a04cd1fc200d51cabee021d4978f29e237929674cfdd8cae7d9a7729
MD5 fd7383167e6b6277f3cfd5be4b86a200
BLAKE2b-256 90ef2c5ed862b82668a9d3d9d4287f4fda4541b1a4ab0c9572253089a6799d04

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1742838562-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1742838562-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 1839de18a4cd87ee555291297e47206ecaf7b5b7465df00dd643cfc25a04bb9f
MD5 2e6da36eb5d2ce2f973d7fe459da30ba
BLAKE2b-256 dba639512f44fe969ddb7368d954b513d58744a80d255235d3213e7683d0c204

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1742838562-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1742838562-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4cc033a7a74954f082e22a632b2312fc67b5832e988fa71e6a3ce887a33fbf11
MD5 1698cb9b8abcbfa8e795a246c38215aa
BLAKE2b-256 d96db7ed54ad5e6a2e6e1b2d4c6ca7f02e2790347838bc31f5e8d3c4de89cd92

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1742838562-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1742838562-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7709771133a1a6137287789390229d4492fd666a9356f44557e690b0cc0b3557
MD5 4186ba0855e6e330944f302efc4a55fb
BLAKE2b-256 f5c28a4ee17f688abc61790d5ff826d4c26b0255dd6e5c10d08ef5be834a3e31

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1742838562-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1742838562-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 77d39088d20a952b9b5b94a4859e69862a7ba2f3da710357b516ae46cbe10110
MD5 0f7ac66741d0ecab48f2b45cc83048d2
BLAKE2b-256 9d8afd191aca6f07c6ab78407f8d4cd945b9c6426e055417fa88648f05a80c14

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1742838562-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1742838562-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 7a41ca871e42043bd68d46e982013cddae171ee21b4cf811393379212078016c
MD5 38fca82511c62589ed17db9be2766851
BLAKE2b-256 c619a18846342e78a82b52508948894d01ccea4a5be9caac7057cced209a7130

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1742838562-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1742838562-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e80210e8f886ee49fb80f6ecfb4d15264ce8ab51c405ea2c6d67236a1e069738
MD5 c11e490aefee23f794ef2037bb9a7b52
BLAKE2b-256 c3c064e582c1d640023ad600a8c56004a46fa297d1ce8b322e669b29ef6960e2

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1742838562-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1742838562-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 66d4d09569349a0f9ee84e3376ed35d94c3a3bcf0ddf5abae22a21543b43f806
MD5 d179279d041d0b5b544b2be65ed3fd4c
BLAKE2b-256 b7f8a3688acc3590db0c0f9f27fbb023f0e65c506f17c0c2f753b43e029550cb

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1742838562-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1742838562-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 254da29082cdd1dd20ee099bc979aae618107edde28c8cf238de829a17d0893f
MD5 baf73591645fa629551f092145aa8489
BLAKE2b-256 145645c0003cdfaa527445f8f385e99730870ceb5e7bbe5d74a71173b8185f2c

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1742838562-cp37-cp37m-win_amd64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1742838562-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 afee67b357e1ddfda9ac8a1c5057309778b66b786c6f2989abe7b62c6a7576d4
MD5 2156075d375fab703f1326a06a54f41a
BLAKE2b-256 12b70645ab1ff846eface413ceed033d13ab07deaf80604ad7e997df36bd571a

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1742838562-cp37-cp37m-win32.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1742838562-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 5305c216529ef78332e5e9ea599bd53b6554f88a950f68385382192c25553d6b
MD5 be530664e84d1b74a80d7120e09293dd
BLAKE2b-256 8c51cc424a05e474ae7038aa65726caaa89b94bfd4d9f84b933ff81a940c5171

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1742838562-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1742838562-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9dd5b62421965788b8fd1d10af221cb473356b8e7f6cbcf81666d232681ce98c
MD5 4e99fe77e34d2c7365cd9e5a576939e9
BLAKE2b-256 dbe3f72e9abc9bd96ed2330c8860549a5fa6c2af10822c1ea7b8d26eaab2f46c

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1742838562-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1742838562-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 971371e3da9bb8bcfab0ef807736caa6584af401a28a200fdf50a0bced5d8111
MD5 fb15116aa3251201389fcb818f5f805f
BLAKE2b-256 7f49b00906b6da96c11dd86108da02506e56c136ebfb9b15ad0c859282314387

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1742838562-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1742838562-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cf8b8f9a52e13f9b8fb9abaf9db3ed277426374988420b88b933dd9e7c8ba28a
MD5 50af9ed5bfa494e0ea0aa1aa4b517336
BLAKE2b-256 70f42be3d8f360bd74d6c526d4f66b84beb75cf6ac11e55ab6933533fe4e1b64

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1742838562-cp36-cp36m-win_amd64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1742838562-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 787523e5f21e2a65383825881076e5e2a48f910d272fba8e82f1a4ef01c9605b
MD5 c76067d2e54b7b05f7b55eba5d6afe52
BLAKE2b-256 ba4210685f2c8f68c561f8b60882af1841ce41142284b27b187cbd4ce0a36dc7

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1742838562-cp36-cp36m-win32.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1742838562-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 d9b53867a72bfdcd54eb567cd94c215f8d62c18d6a8f90c9ed62db638e7bb81f
MD5 13b6efcd726d38e2bb420b6a7fd8346d
BLAKE2b-256 6a98b54429a7f865bc96759c61de8ce3f76eaba919b32d8b190ea6fe51ec3bca

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1742838562-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1742838562-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c106c88d5ebccb7a1d474d3a650506dc0e2b7d40e6c551ebd75919c3de8a4fbc
MD5 23e1a1b7e3ab904adf1d2b4d60f8ef27
BLAKE2b-256 fd4ba4174f2df5646094ac50a83b92f4778a6c4ee59675568a61c84aafd613c0

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1742838562-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1742838562-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 981367e9f8e89f4985f754cbfbe228a3d911f24f4acacb8a0d5954489e98ac05
MD5 8913388dc74d427f0a08b4a4695eaf98
BLAKE2b-256 9924ab5abbd035d421fe2695954140659e10a9c1184d727ead6c4225f2edbd45

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1742838562-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1742838562-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d6dcead906c9a3767899cd05d6ae574015f0b4e793e4ea17a1c913aa094cbb0c
MD5 13864e14cc48d113bb8c04e7210d8c43
BLAKE2b-256 7d5aa7a5c78ad3572f42b31f02a76192b6ea79fbe145ce5e799ebf0031d4f3da

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