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

Uploaded CPython 3.12Windows x86-64

stim-1.15.dev1738886522-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.dev1738886522-cp312-cp312-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.9+ x86-64

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

Uploaded CPython 3.11Windows x86-64

stim-1.15.dev1738886522-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.dev1738886522-cp311-cp311-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows x86-64

stim-1.15.dev1738886522-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.dev1738886522-cp310-cp310-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows x86-64

stim-1.15.dev1738886522-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.dev1738886522-cp39-cp39-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

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

Uploaded CPython 3.8Windows x86-64

stim-1.15.dev1738886522-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.dev1738886522-cp38-cp38-macosx_11_0_arm64.whl (3.4 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

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

Uploaded CPython 3.8macOS 10.9+ x86-64

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

Uploaded CPython 3.7mWindows x86-64

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

Uploaded CPython 3.7mWindows x86

stim-1.15.dev1738886522-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.dev1738886522-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (5.1 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ i686

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

Uploaded CPython 3.7mmacOS 10.9+ x86-64

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

Uploaded CPython 3.6mWindows x86-64

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

Uploaded CPython 3.6mWindows x86

stim-1.15.dev1738886522-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.dev1738886522-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl (5.1 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ i686

stim-1.15.dev1738886522-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.dev1738886522.tar.gz.

File metadata

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

File hashes

Hashes for stim-1.15.dev1738886522.tar.gz
Algorithm Hash digest
SHA256 71a897c3b9783c6f8046a1b93ba6fc6067860c52692c4395d8944f8efa147bb8
MD5 d907be7b43fb243a3535c82b25372934
BLAKE2b-256 5f7b6ac1102701939592fdc382cd50655a8eb65fdaa0e12c66bb6e19ca139a66

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1738886522-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 2408ef3d443b88fc40edc4ee33e99b2c12916e136eaad7b3e7e6608091e32d0b
MD5 af9fe54665e9ee3601226218fd3dbf08
BLAKE2b-256 1458e130806f2291e53f16c84f34dd8e559633bd2fc2de437ba596b5380ede45

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1738886522-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 183645541e270a3a3a3fec5084b12583f9ed841bad706ed5a2e4d8a294389091
MD5 9933d7045bc6c19df5b1faeaa1ff7352
BLAKE2b-256 4bf653f04d53c2f2478ce1853f1d5b56b8b1307cd0ac365dd8e48f6a823c1bb9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1738886522-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 373cd58a05992ce4beea169aa2fba5ef9ec1a471063eeb479946b02b5d4c94ce
MD5 cb4b4de0fd5329bf30ef06ce8924cc6f
BLAKE2b-256 9349dd29d673ebfd1b33b3c69e4db03d3c69ca906e55f3d23cbca30623f615e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1738886522-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b0823d4be90740593bb7135be3f29dc29a217786899bd74797ee075814e07f30
MD5 9f1d6b3aacec17ee838d5fd00dabf0e2
BLAKE2b-256 e25adde7d166c44b72f58652abcc955191433ee67a589d996c0401ebf1911851

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1738886522-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 eddde72b336818272d5e26f37df9b1c18542276a2d80f5b250e419618c9f4fb0
MD5 a68cd43cd6538d5182816e7046e74a62
BLAKE2b-256 8c0e30d585e895813f3813c31dd1aa583cea48b8e0657103a133ba7d05fcebd1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1738886522-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b70690ef1852ccc2e7fada3b1cde36ef6406c73acea9a38505eeccee97bbc81d
MD5 0e024905990325902a767e62105a795a
BLAKE2b-256 53f3af7280e1add9d3e48464a7166fdeb3135f09f3bd38843b528693c4ac41e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1738886522-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 de759dd04627a2a02d715eb6a92b6588ea8a78850cabdcddb7c8cbb0e722aaea
MD5 c104b88dcfd23f9dcefbe005b830b34b
BLAKE2b-256 83ec9a41484f0f0bfd527458f0ae85cb48bd536b026b5c724298cd1deca18996

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1738886522-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 34d205cae9e5f2f0b96f92f1cc8dab783ea624bcf1fe681ddb296084187998cf
MD5 0de389d013372338e9c6f3f8ac3360c8
BLAKE2b-256 5a373427e2c19972470a2aaed9a65a145ad8ee4a5ff0aed2783b3b28b566f8c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1738886522-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 2987b4b72fbcfb5653b5b2fad70d7d8cdc52a12d74fdb93af23ef39d959eb22b
MD5 1c46fa293e0eb82ef49fd4b304208fd1
BLAKE2b-256 0834a3bbcfb811c854035c0404a5f53374124fbbfb4557d2de47420e1c985e67

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1738886522-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 23daf5007f949884a36243c798b2b62141ba78a913950c64714e94eac7926e8f
MD5 64b2f17689b8666d3336ae6dd8ec60d2
BLAKE2b-256 29f82dcdbb4d81bca9ea0dab61a39c1f6c6f3fffbb36ad8edab72317b3cd6689

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1738886522-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e1f704495266cf4832ed5c3e88db73799786c8369fe558fbea41afa90143be1d
MD5 2c3d1a480df90cf9b04e1a3378ea63b0
BLAKE2b-256 8412a157b597cb7dd316886eb84397c5fa80322594e3d4abed320239d0263914

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1738886522-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1850e8ec25dbcb6f6a3fa96cfc3a41e3541f570a84966ef0aafa7b3040afaee4
MD5 ebd3ea3b18e20d7450c40ee788bc397b
BLAKE2b-256 a3b24f35eb8bd1bfc29b9936f12207f25d9e49d3efac5e47c0f82f97dd33aa09

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1738886522-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 ca215541e95954206465592ebe843984c56994ee962fa3212b5f2aefc1b5ba52
MD5 c4e64053b50403a1f1131e0402353b6e
BLAKE2b-256 2b512a7b8f5c84d1dadd86231529b5915df96605bb0140d0e801b20c421cc9c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1738886522-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d0ea9db6d135899b678176e46cbcf3c9370b02a2ca4beebd87591027debefbdc
MD5 3dcbf0188eae2f4ed525649cd1ab5d8e
BLAKE2b-256 7e06a6a88d811ecf888c0688494f538e74597ae40f62018f86ecf04426506456

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1738886522-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d24a0d818176d48427b3ed27fc96c198d82989f23aa69a9b193a0cad5d571205
MD5 dd256bf7551178b6ae70d243c462ac49
BLAKE2b-256 7c21b1533c930f27ae330f850e49b076402d3e5b02304e5437266bc25b504f04

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1738886522-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 aa2725387e5a58400b221507e7bb54bef280344b71f77be721fb9918e8ab1c89
MD5 acfeac643efe04077b28395c2b22a721
BLAKE2b-256 43d53999a53517ad1e71b01776b2be89baf707ead4fabf3e81301b74272c5c93

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1738886522-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 1d7a1b66a0f65d20961acfece5af33ec8fb03760a1085eacd73d5aed8dc43999
MD5 d483f3e3eebea8b7b3bc1cdee3598d85
BLAKE2b-256 4c7cf5dcbaec6f80c13e69b856de3cbe5806a4cf2defefe2b8deb0e973402cce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1738886522-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4419760a8c47efea17cf0d38e69bf8e0361b26d05245f50063c8b4d9f0f101a8
MD5 79bb69f805122d20911dcd8fac5a25a2
BLAKE2b-256 3698cae4c9506cb5565d50ad4f21e32b9d5e5772cc3ff1973f405f96a6f2672f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1738886522-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d8f54a93b1d0a2691ebb4998efc2c6dc6ffc0cf8255b6c19c3b883f9b6e862da
MD5 e0141c55ca3ac2229be32bcce99a6ae0
BLAKE2b-256 65d0b34e2d796839084b8d52fe135920c8bdde1b2053ec0a972d5f3d6f10fd54

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1738886522-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 89276842249083c21e703f6987d2a77a2f765a3f487693eb2cf61597c49724cd
MD5 8b5cf11440ec81895c3cec78341cff26
BLAKE2b-256 8e127de242e3e3ef3fdb0fac1db818fd57cc9058a418f088c2d8902a4df65785

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1738886522-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 e935dcb378ecf5ce3b082627e33b382462ef86572346be082fc5d19e0427355f
MD5 4a0251d2e58f1b913a356055c69c9211
BLAKE2b-256 626271bec1da45084613b0a11c7658730c35e652f29b974204b636112c1ed495

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1738886522-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 77eeb6aecd5d251b42a2b48577c2cf3d53536018d5bcbf692211b7147fee0806
MD5 931549f9ce5f5e95b5bc40063b9d75b6
BLAKE2b-256 0331878dd993fb93a0a4c981a5a13ab11f8f08cfb3dcdcba1593a09f5e6649a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1738886522-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5094350ae00117bdbaa373995f69c3446698b652f4090bdf558a52ee90e14cea
MD5 ba486119e9909742e76490c0a391de96
BLAKE2b-256 921e9778f4e0f059550fb0a45c3cc137f56a0254ca4cd9854b2b58a86f1dee95

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1738886522-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1e8059f7fcdeea41db1438e95b899678ccc770d0239af12b36629a9076b9cbd5
MD5 e11259b3466ca1b5a810b2efd8aefb90
BLAKE2b-256 1d72c54a5a07d46f1968169f6edb4800bed64c394f7dd305fc2a75f443d69878

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1738886522-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3765af510f725c6f4c0fd890d04689a9006f67302f937fe944c3dc338a0dca41
MD5 f3d88fd53f35fa5223bd49d073ec06c2
BLAKE2b-256 48ae4830a1cba25a677f808b15926ea1b0effc1369577f4a8baacb03929e25b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1738886522-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 66aebf3c3c74c9fffc2b1cffca80a8b27f045f028dfda08e72806e21c754476c
MD5 b160958cd59194b02b7418a6e9be24db
BLAKE2b-256 7cc63fceb706cbff9a93b728232ebae507bfc1b9cd02c712734bf84dfeb87b30

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1738886522-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 2f9667668eb6a9e81900ea2893ae682c6df60831384cbd70e4ffce46b423a079
MD5 4167ffbecc67ed1d0597c114ef7950f7
BLAKE2b-256 d784e89798f0cb94f8e22cc11003423dba6594b642aab8a9abaaff1dd2a4c9cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1738886522-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c177b0ed2406041ccde3525fe416262f7731d7623e54b88e1cfeebafa1f1df59
MD5 52e7523f5853e88e2a091f695f74ce9d
BLAKE2b-256 50cebe07a5fd93ad948eca1a47e220a94f8e61140abc5c1c216c75e27a33ee12

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1738886522-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b1e794cc54241b96e8f2e5d19187d049d9a354d92900bed09d7124a7c913a286
MD5 343f707128b986ced1f4ded06a80523a
BLAKE2b-256 0bca3c9ae2fc095545fc5783ad7cec0a4006bd400b6bca4d8321e0951bce3b17

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1738886522-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6887e20bca068aa2c9c387f2887b5169cf512e74f6ca3490d28c2f22b762aede
MD5 fe9ce2fc891ccee7db37208781c12496
BLAKE2b-256 9116ef1e0a23e95b5a4f50ec1bf101c9172c405cfaf34305b57bfc015d9dda82

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