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.dev1747178717.tar.gz (853.9 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.dev1747178717-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

stim-1.16.dev1747178717-cp313-cp313-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

stim-1.16.dev1747178717-cp313-cp313-macosx_10_13_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

stim-1.16.dev1747178717-cp312-cp312-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.12Windows x86-64

stim-1.16.dev1747178717-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

stim-1.16.dev1747178717-cp312-cp312-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

stim-1.16.dev1747178717-cp312-cp312-macosx_10_13_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

stim-1.16.dev1747178717-cp311-cp311-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.11Windows x86-64

stim-1.16.dev1747178717-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

stim-1.16.dev1747178717-cp311-cp311-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

stim-1.16.dev1747178717-cp310-cp310-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.10Windows x86-64

stim-1.16.dev1747178717-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

stim-1.16.dev1747178717-cp310-cp310-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

stim-1.16.dev1747178717-cp39-cp39-win_amd64.whl (2.7 MB view details)

Uploaded CPython 3.9Windows x86-64

stim-1.16.dev1747178717-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

stim-1.16.dev1747178717-cp39-cp39-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

stim-1.16.dev1747178717-cp38-cp38-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.8Windows x86-64

stim-1.16.dev1747178717-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

stim-1.16.dev1747178717-cp38-cp38-macosx_11_0_arm64.whl (3.5 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

stim-1.16.dev1747178717-cp38-cp38-macosx_10_9_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

stim-1.16.dev1747178717-cp37-cp37m-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.7mWindows x86-64

stim-1.16.dev1747178717-cp37-cp37m-win32.whl (2.4 MB view details)

Uploaded CPython 3.7mWindows x86

stim-1.16.dev1747178717-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

stim-1.16.dev1747178717-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (5.2 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ i686

stim-1.16.dev1747178717-cp37-cp37m-macosx_10_9_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

stim-1.16.dev1747178717-cp36-cp36m-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.6mWindows x86-64

stim-1.16.dev1747178717-cp36-cp36m-win32.whl (2.4 MB view details)

Uploaded CPython 3.6mWindows x86

stim-1.16.dev1747178717-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ x86-64

stim-1.16.dev1747178717-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl (5.2 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ i686

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

File metadata

  • Download URL: stim-1.16.dev1747178717.tar.gz
  • Upload date:
  • Size: 853.9 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.dev1747178717.tar.gz
Algorithm Hash digest
SHA256 0edadde5f144270db23c0b92c9752447e19ad314e163f4b311c250d9d65e224f
MD5 b1f65e2fd7fbac39e56f06df2ae5be1e
BLAKE2b-256 ea98a9c5288c7feeeecfa02371e6c4a71d3406521290905e7a65537c88b88ecf

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1747178717-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1747178717-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 50b747a93e5683b4ac95fb5aa9b797d2c5932e9671039743a6cbc49647c4d58f
MD5 b36c64754706e6cd36859d73c3eaddb0
BLAKE2b-256 faa73e3b907e527e59ea295cfd475a5e9dcd111e90ca6a51d7f94b37ceff2ec3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1747178717-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0bae91f52ec1f5b944aef04e72ea5d85abb2b716fd3e50db8fe7793d4a86924a
MD5 38f2c18fc2eb9d1194a6ddefb7cd530c
BLAKE2b-256 15c077820e222632c1f5b592080d95bcd0d46265e79e571f9edc57cc6d2f2032

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1747178717-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 45408ddca75a538801da03aa87e6fbfe31bfc1738d13b90100e09cf03cb6397b
MD5 273662082b8fc525b33ddebeb2d8e723
BLAKE2b-256 1c796d76e8d23ef9d60bd5dc8458e1792918cf1cf6d0aeb231374ba8d89982e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1747178717-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 1549b0500f48c1a4df5407ac9d4dc82b00e01dbfdc81acd7627d2696dc752eb7
MD5 40007afbfa8bf3596ab214ed810cc84a
BLAKE2b-256 da025ac4baeab176fed81fcd08299f3ee8fd9eff30a047816b4da0e2bd0b610d

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1747178717-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1747178717-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0d588dacf9d0a11c761fd07e89eefffda4560c2a0b31d3785e393f9284ad9f63
MD5 5e348ece4ee3fafffd5bd9426daf7588
BLAKE2b-256 b7f60216f030b0a5407af81f1693410e72aad8dbb589bfc3179be3642c3a56bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1747178717-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0e72e4ba92a653d6fbb3fd52834b1d057fc54e7f0fc0f5ea8c714402184ae0f6
MD5 ffc2ebf96550675bee278f5a79becb95
BLAKE2b-256 78737c96a63f87b5cab4f108f38a90e45f0e4611540763e2f72b825119457697

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1747178717-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 a51b8b854fd5ef02dc053ffd4e2966b4e1f29b411881748c222d644a164893a9
MD5 0dae4d7b05c3c6f062000fc35d49e021
BLAKE2b-256 7b444840708c13294a683a50ccef72e2240d153c2aca7cdad4a893b168a18d04

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1747178717-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 db913325463e070d148ece676915eba7fbd64f93736e309bc542a50622def906
MD5 670c87d4e1c9c40b08b43336c1b72603
BLAKE2b-256 78ff7eada60eaf3e23700495f25bc5005f7506224f6d8f7cf7b119af00274866

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1747178717-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1747178717-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 38e7a010d390db11215d3f75cb6aa8a6500382076856a54c13664da7ae864cf3
MD5 4a275a22ff6c1e501a77dc44671e9234
BLAKE2b-256 541de2d87350be07dedd7ea505923728d59488f802ead828ae2f0dcf1472263d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1747178717-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c8438ceb3fa36bf82d1f4cffa146fc4b463453af5d960b857cdcc1e6a37673cf
MD5 9065448b400ab641324882481c513a90
BLAKE2b-256 208aa2bc2b945e10c18781a42be3ad7bdade91087ea7722666c792ccfafa9030

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1747178717-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 aa42fe2016491b61d411c6be45de83ce298a79172013a241ae02767cc13b245f
MD5 fe2f8c4f4b2200d6cf6034af5d02b2f3
BLAKE2b-256 5a50e6491f308ae7b155c209896f0702de31879588d4cb797983b939ea2d0755

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1747178717-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 45053e24fd112dbf8e2ea8558c10deaf4ee7891ad67e79a4eaf9abb4a826ca49
MD5 4ebd2bcebd188fb90101ac382d60798c
BLAKE2b-256 11f72241cb89564dbc2cec351d766b879e5f669888e407837ee2c0757c756576

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1747178717-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1747178717-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8b1695c7e5b73a840f5e60914375ead263d724eb568b7536bdca69b02b90b589
MD5 f242ccde8f213b90c4c6528a3b86b304
BLAKE2b-256 c2056a168d1dde8f2efe71bc17c81871da1ea8bf5ad1bb1548e4f615575661ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1747178717-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a4010907a8388b9f37d4a6dd978a7036bb1dea170966449ea13f31a75048fbc9
MD5 51cd3746aa7126825fbab49fe91f1fdf
BLAKE2b-256 18264d7d4ac87b1d2588c0ffdcfcc5704ba19370c216d659a5ff97df290e3c16

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1747178717-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 85542cb5059368bfdefe3a8f2391830585dc7d9fc3f69949521e9ab1e838a869
MD5 9a3922555cfaca9549b82e1860d198e6
BLAKE2b-256 ce3f842c6281c88066b99e895080f4a01405fb7c14bfffc4c55c1a652a845d88

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1747178717-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 f65a4a671da1c5df5fec71293597a9fc95be6bb48fb4ab8fbecf74f690d266f3
MD5 0f4a38d873ff35d4818c9007c64a50f1
BLAKE2b-256 01bfe4479f803fdd57ae864ef7a9df4e897c8a99c04898c2440b6e69fd716eb9

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1747178717-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1747178717-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5d81ae10dd4a5bfe2c986de3a5c17ddc451bb6bae7091f59a45fd305e773bfa3
MD5 41e01dd1fcf98a42ed9db58341b68a2a
BLAKE2b-256 bdd7469133614d5fa71059dbe62c1eac94e495753683ec79e8f0f3e54b0509b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1747178717-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c9ad3abeeaaa3eddc2256cc8d558aacc010f0213978165d6ed46c957c6e8124c
MD5 2d9a0a015038c09b4b65b07c7a0c36ee
BLAKE2b-256 704112866c778cf8d1e13fd6339adbf201f7e0491e96ffe5a0140c5db23663f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1747178717-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ed9be9eda9c432762489250fa02c43497bd6fb03fb8e7e390626dba9d297f17e
MD5 d5f6dd486aed45a39bde377ee10c99c0
BLAKE2b-256 01e3dbcbe7c783585f69218dc616e44a31d90357c1c0d813cc52454d1159d983

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1747178717-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 39b4eddc326180b14a21d405166178c9da16f00a7d024e213335555f0a470144
MD5 ebea17bd384ad69d345ca0e073770155
BLAKE2b-256 8f4f7f500195ba581783ac844ba6df79d4ac895a0f5dd698181d48679e2e5c83

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1747178717-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1747178717-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e652e1d7dfa9f3512c7ffe779d591a4b8e09a4247d76785099642f94cbfa143b
MD5 05aee9e6de3abb73ac216f4f95957881
BLAKE2b-256 e99524a3db72caffead90d5ae5b830660ad8c801f67195c6a0c0857d131d0102

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1747178717-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d33a000dd2cbf3e5d2a9ca2023f0862999600c0a4d2eb007ac3de80c98ef79d4
MD5 f9a9e643facaf2336483563262677235
BLAKE2b-256 e8c1dafdf76d178bf9819671b49b986a6164b7cb7118cbb1d123ae3f94ff49ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1747178717-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1e8b178628e7a1b61b4a34a823e16d02cf824147cac9b67a624d6565b9e122ea
MD5 10146c4265938bdb5bd81680797250c9
BLAKE2b-256 de4cbe60f022f25fd7515fe6f3d8937e5f4b2554890189ed5f330fa97d8eda05

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1747178717-cp37-cp37m-win_amd64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1747178717-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 e43a813be969a4f569db9e3f45e64dc440026baf29cb1743c1111437ee8e0344
MD5 a46bb96c15a51c3711cc0c10d4a0425c
BLAKE2b-256 35c979098036f89a6b2458758147fd52879902ed1811e0ba1629f784a3b0dd93

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1747178717-cp37-cp37m-win32.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1747178717-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 39e23ec54d1864e3359dcad21419cfe626f750b76d38aac5596912db78961c4a
MD5 ede91cdbb4506dd54fc2a07cda3c7452
BLAKE2b-256 e3ba94842702f94b7952bc7f153170900a9f6f38e82dd0d2a1e9c3ff406d22cc

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1747178717-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1747178717-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f56ba31500c20ce4031a4f21d2f6a9aff1fe14fc64a11453b9104229a27db59d
MD5 80d7e7806c12d457d347e50b6f9d6258
BLAKE2b-256 1d385644fae37f5caa43ee3fb299b6cd5ce04ad4da22fe0b96357ace7b31ed48

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1747178717-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1747178717-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0bd0f4aafbb010f22c9e510cf59b5a846b8ef29a902690ecb22b6a6af448092c
MD5 3cd884a1932f39d2f299e644c47419e5
BLAKE2b-256 728b5f3f305a90e0bbd2bb3720f3bd9ae7d0e8a49406ed2519b31eae0919130e

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1747178717-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1747178717-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7d7e154629a5cee5f549eade7d770eb2e25d1c66d9e3562a63b7f37be94b9c85
MD5 d69b45e9ca6a1201eb7fa83a688fc207
BLAKE2b-256 f28bf7bb03885ecbb06c5e7f4c5776978edb77d4190c1ebf1bb11f71124234e4

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1747178717-cp36-cp36m-win_amd64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1747178717-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 fe60e0d5b61f272f2d6ef149b740f8314fc4c06e83cebeac003c80877751be14
MD5 78d33cfe2bfcb539d7441a1385642ae8
BLAKE2b-256 ae60a864723500efffacee12873720924b331d6f3d27e6a38e38eb6b4a9de1ec

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1747178717-cp36-cp36m-win32.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1747178717-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 ed3c5859da86851e1fefd05db765954fa0e670c7e536988f3784ab6bbb38427d
MD5 16df6d19d5107cc6d4c4d8bd4fd17922
BLAKE2b-256 47e1c66d9ee428ca1f4e548d36749f04333e7dfbb7ab78bcda4d6b4afc6f61d1

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1747178717-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1747178717-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 80f9cf8caf6627ef3e6b618a7773912d55751cccbb59789236419e8583323bba
MD5 d8e8bd08b1db7dd76add0b74b52bbcdb
BLAKE2b-256 070426b3b38e2e507aff7f784c803b1440734b10c06f6e6773435f3ba563eb4b

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1747178717-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1747178717-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 801d554292151c7969477f789c2da09f05af5c2dbb52698b4ff949ace2386d1b
MD5 b3a429d84a4e54e241876800f8d0d3e3
BLAKE2b-256 36b370a02e3e9ec50cff808f2b96413f424a68efd42e307727f9aa3c3f34be70

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1747178717-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1747178717-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f46861c10d2c52409400c0dd9fcbda407c8208ab8c5d7d0e9724a520d3ff6703
MD5 458fb3416dcda308afc85be0f720b090
BLAKE2b-256 fcace101839f5303aa02c95653f1e667b85d01a0051dbafcd4b9f18cf7869722

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