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.dev1730500841.tar.gz (817.2 kB view details)

Uploaded Source

Built Distributions

stim-1.15.dev1730500841-cp312-cp312-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.12 Windows x86-64

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

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.12 macOS 11.0+ ARM64

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

Uploaded CPython 3.12 macOS 10.9+ x86-64

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

Uploaded CPython 3.11 Windows x86-64

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

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.11 macOS 11.0+ ARM64

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

Uploaded CPython 3.11 macOS 10.9+ x86-64

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

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.10 macOS 11.0+ ARM64

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

Uploaded CPython 3.10 macOS 10.9+ x86-64

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.9 macOS 11.0+ ARM64

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

Uploaded CPython 3.9 macOS 10.9+ x86-64

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.8 macOS 11.0+ ARM64

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

Uploaded CPython 3.8 macOS 10.9+ x86-64

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

Uploaded CPython 3.7m Windows x86-64

stim-1.15.dev1730500841-cp37-cp37m-win32.whl (2.2 MB view details)

Uploaded CPython 3.7m Windows x86

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

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.7m macOS 10.9+ x86-64

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

Uploaded CPython 3.6m Windows x86-64

stim-1.15.dev1730500841-cp36-cp36m-win32.whl (2.2 MB view details)

Uploaded CPython 3.6m Windows x86

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

Uploaded CPython 3.6m manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.6m manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: stim-1.15.dev1730500841.tar.gz
  • Upload date:
  • Size: 817.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for stim-1.15.dev1730500841.tar.gz
Algorithm Hash digest
SHA256 4f4d22fa5160fc7193c67a713badac20701968038a1f8235a57270dbd906f9da
MD5 3640c2efe334b61b15e8be4fb33015ef
BLAKE2b-256 fa892af4bfbf4698e84b546311973dfbf1f6e13f9d0fd82ab209b34d0e448b15

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1730500841-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b9e2e11587d2b57e025d190487f44f763c036e6c757fc5fa8c9526ea510d0d09
MD5 ca2f8e692ae7b81f768a92abc58cca67
BLAKE2b-256 ba2312272d89ad4473817f0b2cbcd9dd44c02989f23d05ddb1a50415ccc5c713

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1730500841-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2260e00530027655878ebd598a7fd2c51a063af3c2e498cc76b249ea94ccdaea
MD5 4dfc45413e4ad70e6037fd97b95f702d
BLAKE2b-256 aa84cb1de3aa7f2bf87375bff58cb2a3261daad11c514e61e4428c1a4db6db9d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1730500841-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fd90115adf48444144aa5e345cdd4c876a4cca774fa6f0b4770435750e6befde
MD5 fe3bdc101909c4ff1544d78275d8608f
BLAKE2b-256 58d7ab6edd69f02518a3c03f4d8e33b6de79f69d216b23c47d45b7e272b8cd83

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1730500841-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c420ab035035616228b8cc73774fcb7e2d65c34b2f745874e414b7dc2a6c4682
MD5 0ecee2fd50744cd2d264f651e6730c64
BLAKE2b-256 6063666bf5d70483eacf12d388f5275b1ca7548f797d697b305a2684e86a1f7a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1730500841-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 13a0805a6db51346a40748bd8e1b5ab93a04fb553807a8fe422ec70b67451cb7
MD5 01a468b6c92cb75a8d10157002d64008
BLAKE2b-256 ea461306a80567536bb42a66162774871fd9643364f48cd52013fa52146dc248

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1730500841-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 20e9addbf74d979ba413655c3933c7b6dd45c928850549557bf7c4f4a6ac8574
MD5 fd3c237863fa6a45f2f66c703367e869
BLAKE2b-256 13a699cd97a27117f545bca1f4accaf2b5e006c3e96823f4ade854db829ab170

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1730500841-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 19d1c9f8bf7ca6ec47cebc96b6651ee98c7fc3bc6612cb3284638e9e978458ec
MD5 71e45c3549c5f3a0dd2f78111c3a16dc
BLAKE2b-256 6b788df817703f24c89fd124215dc5e5c0b2d79ad1b08a4876b9d7672dbd7259

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1730500841-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7d70700d268b8c9759d6066c3989288fe8d258dea5de5c87bf77aaa7fe2aef33
MD5 706c41707a0cca09f08ccf3cee773d36
BLAKE2b-256 a0767a20b220bf65b7bd05952fc6d0a4d7991a5ac4f3b2227950a47309954cd2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1730500841-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 2d8681aa68dcb243d2fc906ff42c7edabb85300d9fd05829c1eaece4d0651215
MD5 2579ad9274a8c66d1e830709a5e70361
BLAKE2b-256 7f73999aae85ad836e799e9f5789b71c000d818bbbeb5572e3bee8f444b3f338

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1730500841-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 eabaca1411a2fd45bfd35e51235c1004dece7e81e3f20e74bfe39fc0763948e6
MD5 841669bfe9887c99fb97491bf9969cbc
BLAKE2b-256 87eb598bc488b9f355823bba40a65fde2e7efa03792ec38a8e44bba4f3b91dfd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1730500841-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8f488520d3cdf98b765242e1215063726b4d90e9a9a5160c631e57c49942601b
MD5 8cc564ab53170f8e7a251c6f6a4238e4
BLAKE2b-256 a26e8ab3eb23352b286f1c2048233e663bd2994f033ebefa46b84ad811a39cb4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1730500841-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 558c482678bf0dec2e7ae2d979c8262995f8f0c5f7d14148f9a34aa120ddf4b4
MD5 e53c6b33bd2f0f1214b91a8655d9a6bb
BLAKE2b-256 585f598eac203d62bbb63c2f45430ab73b44543a76ded1020d8f6a5eedaa2735

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1730500841-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 725a2055cfb60a5f2b06508c791eebe88b070d2c530b92144843b1d2d81799de
MD5 9b8898b691e26177e0c26e36d0ce43c6
BLAKE2b-256 e5c07a8a67d9cf8944830f10ee0690ed93a155d2e640a3ae3e793d06c77111a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1730500841-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dac4cff4d7e8b78cbf19af3b906ce5647513ce091e13997b8c57fa688bc33c89
MD5 40eff4bcaa087c3ca916d430e4c88243
BLAKE2b-256 126f7de43ec9ded446305949c46c5cd5a5d42671cba4966efcf8068ef76bfa3d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1730500841-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9cb5a6a99ab89b50c0ac0174cbb31bf8230e10d527092ca2a91ca82da2c4fc40
MD5 709e33c018f314f31bf2acb6062cfe1c
BLAKE2b-256 70a67383bd4757e321ce10bbf765df6958639d58223a541a5a0069614f9b5abf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1730500841-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d33df366a7e9cf95728db1064701e954406905e2f7170b19838b62649b8d8ff0
MD5 4145b667fdd5a3fdb4cd367bb3be9ae5
BLAKE2b-256 5c92171de7b325e17be7bf06e15472b47bcbe3ec72d470040776d91d30200751

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1730500841-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 cb6bc8ef84dfd96e66b8c79eface22a4c3747035872fb8c9bcbb9a2218154229
MD5 5fe239b9dbfabfdececcd2f3ed3c1acb
BLAKE2b-256 f7382d838639850396060da997442a23e1518d9b8f85c9aae887f6bbcd1fe324

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1730500841-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 29896580e0ee5199e870792a7045869fb739b32cc10c2f5517e0a2ac5789b07e
MD5 4b20329280a25179b10d276dd038038e
BLAKE2b-256 0de3664aa0bb34d0772850fe7a2a798f4064bb51ffadb2433a9271765e56afa8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1730500841-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 46479f30512bc1694adfce0c9cb45452f6200a46eaa1e490784c09596d801062
MD5 ebce04266bc1a8a44b7ec9d8629abaac
BLAKE2b-256 45a583df8e12f3ef78b941f2f7237fa78dd952d6212b25ad5061e47e4af5891d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1730500841-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2340b29fc806ede012b42a1ce27ef779a09bafa1b3e93902c42eaa4997e2be7f
MD5 1f0b01ab800551fcbebe84cb6ee16cb4
BLAKE2b-256 8d23ca8177def3c7f92762b9bf004f34b5b2af67a669c73e5f9716bb78c3f612

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1730500841-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 3c1b3840c947ce10090c77788a7dc2ff5a61458972e4f54ba402c446f4679bd0
MD5 8b6c3646403d60dc71e20531695fcb6c
BLAKE2b-256 0e24a73161ab2bd96cc6ad462331fb8b11a9b8163f594ac037567aa87101b2d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1730500841-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 7ca98cf01500b5f69b8f31b94e042a22c57e6fd5480d810fb2a47958acccc1b6
MD5 71ac524d7a8b31e93b465d71b5d460d3
BLAKE2b-256 2da249bfea47f6b50116ee0d715f226d36077da56e5f433fa96b878db1f497dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1730500841-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 eef5b5ecc76adf282ec7fe9b0829af519364947a8ff6d7515092e7bb6ed9f9b2
MD5 cbb28657687c269d10c240bc6a4ed241
BLAKE2b-256 0f72774e61bd7832f25997f7b452a1da936bebb361c4e7ed283377c4efcb85ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1730500841-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 904efa50fe6e6c1dea60034037a7f407d9e63e710552113bacf3d3fd7323b270
MD5 b78b7318781d4520194887ec2444dfc9
BLAKE2b-256 a2cbc62c5fc3ab1003244c19987f92f373907790d068b7ef89843983fccc8ee0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1730500841-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 25b4a01ab6a36f68570010be4b84baf679011cc4e097a81972bda11deecc6064
MD5 94b738edb16291ca5881c8170b2aa20c
BLAKE2b-256 ff9f817ac01bfd8eacf38a0aeeee685f538fdb33dd53a394899b77bf877fd384

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1730500841-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 36da556c0e74bbfbfda32ed6657c4745131839ed66c57316bae4abe466af1d44
MD5 824e8d7b85d5bbed67fbb7035dddd2d2
BLAKE2b-256 3de98547ef6b8e588aaec72d54c82ca760117eecd4a7f7a90f44d67bc3fcb6ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1730500841-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 e9c7b1e2e0f82497e7547fbe42e66c916ad4478d4a7640a035127cbbe3ff662b
MD5 6e7b1758f0057c7dcd5cca42079f9651
BLAKE2b-256 a57021a277c3b39da6fb98de37224d613e5d62fecabd1dce5ba3c76b990ae35d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1730500841-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 70aa96c20b7b65a615f5b34083e2a9578af18fc0b31f39fce0fa4ac665c57c02
MD5 c79da3666fb36bade78b023303a4fa82
BLAKE2b-256 d09f2ee434eb2fb3bb65c695e26f38d56586c17171df3d5a27f3ce43317e5c78

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1730500841-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 85e3f1756748af1a0339fd3adce461beb44192186698b7086d8db712ad9e6e25
MD5 7f117a2eee1b3b6d6c11c3798c286def
BLAKE2b-256 766a1f350fd094dfdde9bd7d98a2f46d30fd7cd494ca886e35ecb3ab512212f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1730500841-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0276e69b713f4d8f8c0fa7c1faeea2bf724f1ba07a002841dee6c4f97714f036
MD5 e2ee8d9f935fd6bade96b13baa0a8ee7
BLAKE2b-256 4e6c252d72dd2b5cef9c93beccceef6982a175f3db0c6e429d7930ffdcedc3c8

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page