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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

stim-1.15.dev1743105184-cp312-cp312-macosx_10_9_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.12macOS 10.9+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

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

Uploaded CPython 3.8macOS 10.9+ x86-64

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

Uploaded CPython 3.7mWindows x86-64

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

Uploaded CPython 3.7mWindows x86

stim-1.15.dev1743105184-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.15.dev1743105184-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.dev1743105184-cp37-cp37m-macosx_10_9_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

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

Uploaded CPython 3.6mWindows x86-64

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

Uploaded CPython 3.6mWindows x86

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

File metadata

  • Download URL: stim-1.15.dev1743105184.tar.gz
  • Upload date:
  • Size: 842.1 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.dev1743105184.tar.gz
Algorithm Hash digest
SHA256 7ac897af69199f1a387f6128529b96ac98caf9fb9c3e31f83c0babcbffabdfdb
MD5 5304c7562be197627899b7dc8849d941
BLAKE2b-256 6069a6095e4a647f4543094529abe84fcadbaadefb81d37a293af5f4096b24b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743105184-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 0165f16a4558366470669d3cbf410ca6ce353718adda4f1d42a72790cb73cdc8
MD5 163d366df54ccdfdb357420fe2a425cf
BLAKE2b-256 a3650d5dd737bcad25e3753c760ccee6fbf6ef17aef1a81d4c18a8845fe27561

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743105184-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f3c018950ca2766df523b20d12cb97d9976d50b193163bde14c1524eec9e1410
MD5 4827abc597b9623aba3c9218da99d752
BLAKE2b-256 1da9567e8317f3f48b116a47297844d96d142f570d5a5d48bbdd7207e01603f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743105184-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9b96d6cf34d367691233f190af6ae9e8c8836a3ad7b154e765c37005f03c22b6
MD5 8bf33bbd4576d1023ea59818e4be5b9e
BLAKE2b-256 933ea9da2d94f61f7a53f61a147c5932f430fbb751665e256211e316275fe68f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743105184-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9954ed7c4775971221e3278582f0372cd767b2a4920c88664c08f225249ca69e
MD5 540ecf941e930b9b7d04bd56c8fe458a
BLAKE2b-256 f52bfbddb85eb7f0c2e2152e705f46bed0aa4582c427f46f4a8265588b212764

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743105184-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 8630498e2f047518eee67833d9dcfcea7e7f1d20712317bc88a730d0f08cf984
MD5 c7c1986cc98728aaa305bfbc75eca079
BLAKE2b-256 08ea20f089b9005444caa2b3411d04c5b2b35caffdf29059b68f9c7a93644d32

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743105184-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 524f81b54083a01c2b47ea8fc9798a869e559500a275906bc41915fb2b7dc3ee
MD5 8ddf60025fcd0f2f4c642f42dadcb4c4
BLAKE2b-256 e1faa6ad08c72f6fac719a4b8229908c65e381fade57b68e699e13b39629cbbd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743105184-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 40c824c3afe4d0a1d294029409ccc12eb1f062614fd29ebb0daf17a779ff3b55
MD5 b0a2d5cfccaeb66c08ec5d2fe41d3a1a
BLAKE2b-256 a0b910a647959277c81f9cab5c2adc07beab4b592f2ad17e3c7a5267f6afcb77

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743105184-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 43b7cfeba2f86e6a9a352183d6cf5337ce19fe33b0a6b6cc3f6f303bd8c2f78c
MD5 403275504c4ca1b87d36c02b64bc92d3
BLAKE2b-256 04ea3e51028dda4a983d88050de6cbf3873191d46fe48957900358202b9cc1f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743105184-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 46d4209428d8513a7c68475dfc891685e352ba2a53d57558aa2ca33434936160
MD5 6c9f5cd0a63a92f6f7da006c8ab64ed8
BLAKE2b-256 607d6a2f42b5e137cd4ab86cb2671c15f842d52621651d5eb785417993e2201d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743105184-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e014ff2395d9daef5ad4621014965160571fadd19db180b3270c7927f13ec9e3
MD5 68e015619543b67404e1a3f13f83fbd4
BLAKE2b-256 5bacd11ca46d61834d9403d80f907fbf44bdcfc3070ef7f8e6bd26432492f243

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743105184-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2c27bbeba966e57c05d98a42969377d79932e2a775e5e3d981301104225d14da
MD5 3a00ffbbf6dbaff43431225964a7a935
BLAKE2b-256 884c9dde1958055295484ecbb85c546779aceca8235f8821cbf14c0c94251096

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743105184-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a9b5a065ba6ddf0013163dd1270d9f4435a8470ce6f97f73a7961049aac92556
MD5 42f74a7b2cbb1b0083a7b51da1f95e12
BLAKE2b-256 1ec5998779e5f30cc10dfde5bdb581335837201f1181d82e663e33b3c9cb275b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743105184-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 f0477bef4b2823f63881de1793b5a2a93fb18457c6ecc6e304e9a5e7b72b5ee1
MD5 e8ade17bc2b27af589c5184837215177
BLAKE2b-256 82aba267ed90365b579c606004c9e79fb77fceda3657a57eb72c95cd1894cb4a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743105184-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6fe98de9d30332381c0a0d0d612d5f88f1903fefb52334e5bf7d0cd21e3dd836
MD5 e9a47d98251b6db259878d9a3288f71f
BLAKE2b-256 5a2f4c4c73dcfb997c8cc8ce83206a35a26568cbcafaa6e3d5bf78f58616e4dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743105184-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 022e100d1ccb24a54786baa7d4afe960fd45580e322ecf2a7de4e68b564003fd
MD5 09db0d2cd44235bafdf4dd7821466a44
BLAKE2b-256 1cae25d56b54fd23bfc6d84441ecf16f28bcb4bfede87dfcc9a44cb2aeb7b102

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743105184-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 141835f42e368c54ebe0f54946c1d9ce7e7089504143af6288afdeb6cf5ae7ba
MD5 afad83eb636d2702d5fef9a3708d3d66
BLAKE2b-256 15f5d8ba0be3cd2e3ebfbaf5abbf0392517837f88a1441097fc8e87a8444563f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743105184-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 e2c0cb95dd544e8a63c7edc6888a8857adee07d38128c392572dccdab8da41db
MD5 84b5381a9277e14cc58a3720af453f6a
BLAKE2b-256 7d3c3455fae76f1804b4b7620244a132ad043c610547cc508f2b35afe548ef04

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743105184-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d1ace2d87888110003d20fa1df1042364943c0f40b7b5cad0120ac0c8a0b1562
MD5 e13e57554be93ea8e671aee1edfb8c2f
BLAKE2b-256 55467646efef4bef7f1ca9070dc697258244218a66b42a63c22b73f420cb613c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743105184-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a001f4c9c3723de8e9c341d12fd9bd34c952bbfd63eb1be1244f34873e6c991a
MD5 cb52277cfea1736ec9828dbad9381ced
BLAKE2b-256 e76fee72f9b733b11231787907c6429ca7118478e1b4b4ecc5ca43d411d42710

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743105184-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d30e419819fc202cb550e8b1bb7b27c367a8ae0922042d2260add1e313ee9871
MD5 a221f63723cef314ba9b2f4650cb6c9e
BLAKE2b-256 98db763031ea2ab90fcad70bcd65f62eb7b233979946a2f976eaed5744b2b517

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743105184-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 4fec79f6320712c612da3e309dc27e653b62e78d329fc34ae2d257db8953d003
MD5 1e93a35309d6f7d84c0ae8fef2828378
BLAKE2b-256 d3e0a7df6113a3681f38f4c46f367590f6653f68ae5a3f86503757c6b624c77f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743105184-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 23b20426bec4f63934eaa7cd1f7a6d2235786522ba99df3f26366bc1e6c9c5a3
MD5 e7642a87931022143f612e1f920f5e6d
BLAKE2b-256 1057b307d57ba55a17bff3f3ef7791e62ec99f16e49a4f2804cef0c0f31472e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743105184-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a624564c3ffeb3dd823e5db8d4fa10833bee3d3a170b24b7b7211a9df9406086
MD5 271b15e003837caf22c9d6d174a4b2ce
BLAKE2b-256 2477756b75cd17ca5a3d13113532fc31e03a8bbc08e674c3e39201d14f1bb22c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743105184-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 39ed8afebbb27862077ca1966269adfcfe53cabada06ab3fd756a508692433b8
MD5 ccbc73f33d4c20936d530f7596af25d8
BLAKE2b-256 3a1436db1b53ef6527aa277787f4d2a52a8bec92921400263a6acdebd22e2ec8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743105184-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8f9e00c4bdba0303adde5e285e40da4b9cf4512b514bc36c340dd3e259e1c19f
MD5 edac23e8e3b2618b6eb5077ab3f18676
BLAKE2b-256 af4f572f660104ac54ae614bca9b3e19224a085f1c1a6597994d220020caff80

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743105184-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 0c5112e412493659110b73f48d9919768eb64bdc39a2afbfe5ab91f0754e9068
MD5 b2f66e2d24fdbacce3ed1f41d5ac2efa
BLAKE2b-256 3d2eb272544b31a76fff4c2312d01bc52d615587af52d8f00f53622035aabb14

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743105184-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 7c4ce23f52a23a1cc954d5cbefd6f28099e836478649d1052ba983bb7d464233
MD5 f4774e840000cfdc3a22a70f560e899e
BLAKE2b-256 dee776353d6f064ff44b95d8d9167b2c8820fc633b8cc533e213ad1721e4c558

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743105184-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 05743f7b3969c31a939e4f25448fa62a70e51579eca8c4d24fe30a58913a44c0
MD5 7399e79b02fb882e981332ba2ae2992e
BLAKE2b-256 9b59d50e3e65c2e3009b460281ba2abb9ff1b7e6cb7ec56acbc80394c77005dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743105184-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 65162bc47e3352ef64c1efa2e34c75cf17c9325231941f4898a94694df118bec
MD5 8fc68abe75427fb25bf5cb54a6ecf5f1
BLAKE2b-256 58a9db97ef9b547ffbfd7d0f85a7b93118a6306e9048951cb69a92f2f2375db7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743105184-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 826d76d56275ace21d0230a060f9411682a3bdb6aedd4a8c868d8a8428fc6576
MD5 87da07e207e72600bfb8a9f53a2f867b
BLAKE2b-256 193241468b02b3f270a9b58caf53ff84ef116b2ee9bea1a441323ab9718a1d12

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