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.dev1737603589.tar.gz (820.4 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.dev1737603589-cp312-cp312-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.12Windows x86-64

stim-1.15.dev1737603589-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.9+ x86-64

stim-1.15.dev1737603589-cp311-cp311-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.11Windows x86-64

stim-1.15.dev1737603589-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

stim-1.15.dev1737603589-cp310-cp310-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.10Windows x86-64

stim-1.15.dev1737603589-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

stim-1.15.dev1737603589-cp39-cp39-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.9Windows x86-64

stim-1.15.dev1737603589-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

stim-1.15.dev1737603589-cp38-cp38-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.8Windows x86-64

stim-1.15.dev1737603589-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.8 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

stim-1.15.dev1737603589-cp38-cp38-macosx_11_0_arm64.whl (3.4 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

stim-1.15.dev1737603589-cp38-cp38-macosx_10_9_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

stim-1.15.dev1737603589-cp37-cp37m-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.7mWindows x86-64

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

Uploaded CPython 3.7mWindows x86

stim-1.15.dev1737603589-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.8 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

stim-1.15.dev1737603589-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (5.0 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ i686

stim-1.15.dev1737603589-cp37-cp37m-macosx_10_9_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

stim-1.15.dev1737603589-cp36-cp36m-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.6mWindows x86-64

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

Uploaded CPython 3.6mWindows x86

stim-1.15.dev1737603589-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.8 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ x86-64

stim-1.15.dev1737603589-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl (5.0 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ i686

stim-1.15.dev1737603589-cp36-cp36m-macosx_10_9_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: stim-1.15.dev1737603589.tar.gz
  • Upload date:
  • Size: 820.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for stim-1.15.dev1737603589.tar.gz
Algorithm Hash digest
SHA256 6ed2c310620fbcff7c65de06a052270e9f451f64c3073f9eda9e1c1cb823e777
MD5 b1c87f5687379eb5a3bf7a6eb6dfd12a
BLAKE2b-256 54f0a13712360547c24bcf61e5e98c61cad3d42a6c6b3608b8499289fd1f85f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1737603589-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 588c74cabf6ebdac3257ebe5660070a9179d804a814123f0c8643246d5815a7c
MD5 fb44759b6b9b7362ec16fa0d4143af4a
BLAKE2b-256 04912a8bc40121eb5416e53b92d2d7a667c2b52ad812f3e4b8900904489f2467

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1737603589-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1fa3887a36990063e087fc86eeebf35c2515a57a5671ddeefee2ebbdececa025
MD5 77756aa6f30413b086f773cb72ac63c6
BLAKE2b-256 4cbf4d50f2c976c4550faf5051df947ce8b06fe0315bdecb0b75d23b1a11a2ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1737603589-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bdcaba9d347a80f7d2cffb7bc9747e2a016a50edb801d8fc232f4a0bcdcdfb64
MD5 92e47bf62e3e0ce52f14249cdd25ff56
BLAKE2b-256 1e7f3aae346853d0e95b11916998c7f9bf75e72315ffa83087b12fec56d04fd0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1737603589-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d6e54cee760da51d4386e4abaa0efc3acb30e7a4400ee0e3a5371a6acf285ee8
MD5 c523dac23cd9c74112595948588cb83d
BLAKE2b-256 83e6e2b8be72960a2c97e82b2dde814ac59c89e6ac7fef2a0a9644b926074f9a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1737603589-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 713a20ed375c41247e8ea5fb3dd6030e3c152dde0e37f962685574971e9d5a33
MD5 e36efae078de6b8030a047b9e544a67f
BLAKE2b-256 84e8c77c39d1a674fe76546a92241f74fd855a386d6887546a5910bb560ee145

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1737603589-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 11a27d750749812a377c4e1767866c647f8b0ace98fc2770812cd6e4a637ef9d
MD5 2b53be7e2aa563b9881ea4fab30a26d4
BLAKE2b-256 ed6edc6a1dc2050b02ef2407003466e411d60d65a7551552ac82d8fdf461ea0d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1737603589-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 255dd1533f4f55bbe8e6981c51f89f4a244b5684618b1ccdf2df57cbd0c68a31
MD5 f8d1cd85a1a0680a2475a226ffd050a9
BLAKE2b-256 0b89fd1b9da23659bed730a5458dba3abc8f0e4b0113f53638a1092604132cc1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1737603589-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 170118724c8c98bb21f34f6812c21fcfefab99f8395a3151e5b3481a7b3342dc
MD5 65a76827d5928f075e4f6b28d4a262f3
BLAKE2b-256 73aa1892378e90a76a64e013398ffd66ee237ba86f8f1c762917b7b4c3184235

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1737603589-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 9a0142c6e596ddf8576f3aa2fea29c8ff774c38165d2b38187bffa1910f969d5
MD5 43706ae29e50f0fa51b33aced1690682
BLAKE2b-256 9b8918b7574087ff1b69016ee9fc5082a85feab5eaf382d71c2bacef91ecba1c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1737603589-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f70ec2e9f62c6ae625afa69906faa41a16c0d360b458354a895e9cf96cff6e15
MD5 f99b3934e5cb0ce07f36d6d32e0db8c9
BLAKE2b-256 8958b85501a1ad1d3d30b17bd467c15d3813828f16de0d73c6bf12c2d06e0f4a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1737603589-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8cbe1927a8e453c980d65a5d1ef6070afefa0af5d7dad84382a3072959536202
MD5 3177eab0701d112f98b7b27a14adaba0
BLAKE2b-256 a3f9d645ed302cc74dcc059fdae64d73a6e5a245f6186a9d8e8b67e383d072f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1737603589-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1040bc8cc31261540eefa0134c37498c5df047661c6fa266cf25d7f35fd0d675
MD5 d41803367f290590f88151e1443d5ce0
BLAKE2b-256 dd1d23a0f71ab3a919fee5cef1bd1515292ac8485a4ce18b6ba82bfd495803ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1737603589-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 b8baf3157f2f481bddfd84945eebb1b53293a514fc541a11bd61bc7ff36c3c76
MD5 e6b16d82b416ad872a649f6e6d807f74
BLAKE2b-256 2b8ea6fa3d4891995675793fa1fbb13e2c973ff55cc39aea7a06eac32481f093

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1737603589-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7b58bb6ca360624c56e31ab37114017b6e8b70162f6c2883c7c4d5664cf42e83
MD5 d452e0e9cdc76df9a3c13d9e4de1045d
BLAKE2b-256 5a16609f4bcccd03928769dd9abd37d5fec826437f2f79b1854db3d18ff36307

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1737603589-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8ea6978e88ccfcffccc8ec1dc30284413341736d8fbafbc105f81ea883546415
MD5 1d7d7681f28dc369afc7279e4e09191d
BLAKE2b-256 546e6ed14d8c8e0a81723aab2e122d5013d0ad1efab855ebf80c3f34aa5472ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1737603589-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3b47368cf1a8234e6d5d87ce4aa9478d0ef60e099485baace73b9cc283bf03fe
MD5 9d1ce7059b96a069ff778fdf2b9d0b47
BLAKE2b-256 34289a67a3654e017870186412855655513ac368aa0a64e4c4df5fffa5e42784

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1737603589-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 a26b60d2187999cd61adcb7141c2bc5ae1a8f34092bded4d154a779fa2555c2f
MD5 666c112f539398cf5702b223907f59d2
BLAKE2b-256 fd2f42c3a9723ea3c068ad74388fcc524b29fb398f1513b37487b9a301537682

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1737603589-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0f207962cc84398392051d96b481c14ab2c2dd9987ba074a4961a43ede967a0c
MD5 5bcdc4e5bbb86360f49092a3f2620d4f
BLAKE2b-256 946ef57740cef4021b3e189e638118a5222bd7b089ef04061259147d3502afbe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1737603589-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ba8b321db56dd19c8aff950dcc03cbb3b234a574a0dc89681eaece4a35068b77
MD5 1773f201598c38d7bdd04837e0ac6b9b
BLAKE2b-256 381f689d6b88046daf4f4b38ce26aa5ab7ca4f93edb49c6fb8682164d946275b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1737603589-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 407b8649b1172a9a0b504ccdc54b2942232492501d06f20c99339af64c5baf50
MD5 e2ee41cb748badfe09810c8a9b96759c
BLAKE2b-256 e2208158a6b6f9c67172a4edc3b2b15de8e762838db406499c08e2684da6fd49

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1737603589-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 68e2236677bd51a811c67ace2842444600180240f612045e07d9812ffd0aebfe
MD5 f86f6a0f09e773618bb2101ab3152b95
BLAKE2b-256 2e7b8d64a58c76792391a83ea301968ae562e91cff91c2037f55a39e793ed0d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1737603589-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 ecdce3b36f73ac653b8e9c53207f8a370dd88bfa296ebe128b88515aea45b8fa
MD5 dd51eae29c3e3a6c3f41074429a4fac3
BLAKE2b-256 fc61547944ba89b570f3c7278b23d40d72cc498619f64cde99eed6aaf6db852c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1737603589-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2315672867e26d5ecebe60569610b1bb747c948dc6d80fd80d7dadd8ff605863
MD5 d50c1221bd731cb2a28f2496cde0d2c6
BLAKE2b-256 73b37957fb5b7b504abcb87682e996a5962b8465344911067251850a09181999

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1737603589-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d61c052774e8bac42299997b1663faeb70f40a67d4ec727c6642ced87fd11a60
MD5 f52b70bbb36cfbf888d21294aef65c96
BLAKE2b-256 9a635077d7b156580bc56c453ee0519eb5f8c0d4283dba5c99097712b62b4b1e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1737603589-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e6298da716706ad1e323c68323a5f5e37351145c4590f6958ea3c419687d25fc
MD5 09b0f231d31980176be4b97082fc87db
BLAKE2b-256 4e46700a154acc8149bea3b048fde497deaced8c47ddc3aefc08b4e7f4f407c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1737603589-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 c10e7d1d9e1adea093daaf52b959ae87cd209a3eda8b26d0178cec249b146f51
MD5 381a3764ed4a7096c6d3c19cc42e698e
BLAKE2b-256 4dd2fb913cc2e31777aa86a14e001a1ffdd36e9ec66070d9a8bbf685a2dd9eea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1737603589-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 b3fd07209b64589521eabd067625c19276a58cab17be2b90f05de02840b4cafe
MD5 93e83d0bd9a041e2fbedb9e61aee3cfc
BLAKE2b-256 b72e52ac18cc23fed7a7ac2e6029eeab4136236eb03056c95215263e68b091ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1737603589-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 aae3cfa8fc5b4b65b3141011646df7180122c69ee7dde279888f6b58070ccb68
MD5 e70a192fc4884b86987dd587722e0784
BLAKE2b-256 7e172d778ea66928c0fe738da3c68c62448741ac2e00d95669a47c78a05625b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1737603589-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a9829c002e8c6721396810ea236a9a935fe51de322c07bc043469c7d8e4396b9
MD5 3541a77eff6f98c54195e62de7dc6517
BLAKE2b-256 fb1efc06c014d4a57061699d0d27ec5e8abf8dd420935b5914841671847d26e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1737603589-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ee555e595d58eaf7942ac41c828eb99040a68bffeb0bd15a14283dd93fd222a3
MD5 e6416167bf56f57c68dd30235e492e58
BLAKE2b-256 20c9f78b9730dd8a72bb32a2fd4dea13db678c813f4dd492a3ba012e3f3c560e

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