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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.9+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

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

Uploaded CPython 3.8macOS 10.9+ x86-64

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

Uploaded CPython 3.7mWindows x86-64

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

Uploaded CPython 3.7mWindows x86

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

Uploaded CPython 3.7mmacOS 10.9+ x86-64

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

Uploaded CPython 3.6mWindows x86-64

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

Uploaded CPython 3.6mWindows x86

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

File metadata

  • Download URL: stim-1.15.dev1733301548.tar.gz
  • Upload date:
  • Size: 817.5 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.dev1733301548.tar.gz
Algorithm Hash digest
SHA256 1f99e388229e054fbbf66fa1cbaebee44dabf648b3b1bdcbf04e554c2e89f5bf
MD5 184d43b1354590e9c3b414657d87d831
BLAKE2b-256 fbc1d1f0f749673c3b906a67f2bf92a279e524b773cbc28cb40ad49bdbc148d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1733301548-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ccd4580bcc51b2625dfde99d11938c06eea19bff8f209b9f91f9c1483ac56451
MD5 d2b1c612a666b2a511c516642bb87a51
BLAKE2b-256 69ca2e936a728a7ca6ac1245587a86e7668215aa4e81b6254e13e2003e57e10c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1733301548-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c5e30be77c2f9f43dbe741bab6f0866787f2c6141fbe4911ec3ec50c369a252b
MD5 6f0996c3e86b07cb54a5731258234784
BLAKE2b-256 b2301b783f56bfe1f9b9adc7f5905cdf62991713915cdbfd774f55422b4497b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1733301548-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b934c870f2314cf12827d77b6bbbbaeb28ff749a08e819872f5335256ca4cea1
MD5 ea44b1072e24fa83d02ddfbcd0040ae5
BLAKE2b-256 62790e646d5619760275f9027c04bfecbc2633164ce60761268d77d004d4ca0a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1733301548-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 97fa15484ab96d159aade5869a9e2bda4eacfbedbf8d690c816c94fb14ea5efc
MD5 100a9b31e8483d8ca777cfe02c9ec8ea
BLAKE2b-256 a49a628a2bb5af2cd42c3b69e7b6c2f826c0a6b188d96fc607861f26f05e548d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1733301548-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 814346c93c6178f2585313376bc2e03061ab4279214b5dcda2bceb7db8fbd595
MD5 6ca373622f052bd18a620b2291a8491a
BLAKE2b-256 8dcbc1cd77013872c2b4e553a2495cf94dc562c62e59b8b9631c08517ba4c04b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1733301548-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0c84ba8d86a6457f81408e12a40bc60e3be3c3fd38902f34a4b636f98a90f8a9
MD5 9f6a136647024ecd6d29d4167e35ceac
BLAKE2b-256 a92de2d4613eb17dc826c032fee25f5f4f533c32cd738b8363e5a76f2501e40f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1733301548-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3156e104c12b3a1d04fd721b222b57a7ba356a750a8339c3caca9d59ca48bf1c
MD5 1cec3f868f02b4cf918f20d2d46cebf9
BLAKE2b-256 f18ef72e1cd9730aeaf5d1c679d21a153d4590d065664dee6f5b2b60509d9a2f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1733301548-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d783b1bd5ee601b0f20219eecc630282553b0f6fb2c6f6a3735c2fa49799269f
MD5 f4606b4c28eaaea5a15555c74fda6183
BLAKE2b-256 1ece886b2be48220ab117df3a9451bd4238aa3e88c7d3c1b5c8155857746907e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1733301548-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 39065e40b154cb6e6498c2ef57bc691326a717695fc99373d27831f20474aac2
MD5 dbced31cd4ed96b3ef1d40eea45ff402
BLAKE2b-256 f12bfe8b786ba78c2fd8a7bbbace1fba7da30735052db68021b6f00aca5224dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1733301548-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fb4ca8967b85ad8f49786f74862fbee616a82ddc948dda908f63f97e4cf2d7d9
MD5 20e3b10634b4e06f3f59be8945e5320e
BLAKE2b-256 1dd26023ac2aaee86e9d0d7fc280a5266ff5ce96b93a2330a00f49881602fc21

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1733301548-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 decd96a87082a80d7970fda7fdab8dfdc94eed12814b94dabc327bba4b10ccd1
MD5 fbf32fb3d16aa082517d3dfcaa66b730
BLAKE2b-256 e66b9876c30ea94099c774995d01367110bb9839d2bc0dc55b1f6b2a5346836e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1733301548-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a59bae72a3fda9d6fde87453e55707ec529d57f5ef50b36a744201aa78546033
MD5 d6c6e2b25102dcbff4072cb64e2c76c3
BLAKE2b-256 688be4ee93276b7be99f4c8103dcdc979063a7fe701a2872a45a52e6fb59686b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1733301548-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 ae9e40625e9a3ac0cac1957fc6ddac20f75d986c4bb268fe2add497f2c9363e8
MD5 984367830811065bf511c0b5cf6512fe
BLAKE2b-256 550a9294172844ed9672a7e8d02e074063727b50ac907036444c0c4a48465896

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1733301548-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 48337bfb264018d1b4d3566511ba1720f0c4e67b82b200ebb48b6f5e3644dabb
MD5 76e01896171c02a271ebfc3695733911
BLAKE2b-256 06fc7731fd48bdd33eaab9dc4aad32f371239a1e2586c2bbbfcd7b37764fbee0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1733301548-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f7b0fc5d8e52205a9323508f49c0ea5e527f170144e7a468e1058e5f8f727008
MD5 39a44d74c06121f69f27907f64d5d0d6
BLAKE2b-256 66c01062d61c3a7ef8cf8e2430c47570fab6e91bedb10e7d6611744b19016353

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1733301548-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d17da30e3b7c1d039c8465b2059861fb3fedc566ac62b0dc4a7f3beebf295017
MD5 a0f8f45f51291efd0c161238b36b844c
BLAKE2b-256 2cab09e3eb4954ccacc4761df7e99a94dbb8e97b34ccf8058982be62100eeedb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1733301548-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 c4349705bec298eb87e0f529ec93ed24839141975648ceeaf40c903075bb0f24
MD5 8bc06cda670e6d30fa99c73d2d02f2e0
BLAKE2b-256 2b9ac23810759aa2982a11b16701c29ea1ca207fa1dda100bc14cd430be19a6b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1733301548-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bba2eb67ffff503206b2fd2adb906569e7e219013856f92c255404f3c57def4e
MD5 a55406aa9ffa3f5fe7e3df1f2d148df0
BLAKE2b-256 3c10faa65f42ad39c9493af09f9c8d07b60e694afb8daa676a391db5710d915b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1733301548-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 aa6d5e1362e07472fb6d17891c03848335c68824c849179f602934fddbe9ab6a
MD5 9df55d421f5889aec54fb0765cc0432e
BLAKE2b-256 26a8a4f3fbe411a1ed4e2ffbd7682ae1614581c11ce3a0a01db0894555ee6823

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1733301548-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 eb7c3418eff4753c3e1fce9f187d9a44ee03eda82f007b2cce791671749cc690
MD5 94af9e6d59810c39df8fb48d063ab829
BLAKE2b-256 ac90c1b92fcd2ec401168a4675fb0ec32f920be5d8022001c16a0aee346ff9ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1733301548-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 cfa898e0022acac341f8f3d7155727f7af26188f0b5e6df0fda18057bb6a143d
MD5 f3a204228cecab2f9785bd0331df5642
BLAKE2b-256 4b07b8c3f31d7be70ef1cf8afa1ea9eb4877c382d98231f08984ff1adb1d2195

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1733301548-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 e9ece6d5cee159048f779675b8e2eaadb422fb143aa27f422b9a7485d7e20925
MD5 4e2d49e9782675cfad0722a8cf34f00d
BLAKE2b-256 964de0b14752e54aa4712d2e26243159945879c9dc8d6df6e39c0b83847c854f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1733301548-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6f0a593a4c19012a9144c3553c884c6aca8a1cea0f7e241d9370a9f76b71ae8f
MD5 7f2db826f6bf109f8ca6008e3c47188f
BLAKE2b-256 0bd2f34d77eac014d0f27a50f842796ec46abb956b6a16a5f53bf9a40400bbdc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1733301548-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3bbadbab98916c67656a6f4a3d3bb655692d5b8b40d0dd1632921e8025c08ec5
MD5 29aabc19fcca26f749ad38cc25066e89
BLAKE2b-256 3891706b8d5f841fa55bcf5640cf4644e513fd1f30c4c53d320d8f92aa3faf4b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1733301548-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 325aecf213a8d1fc8a270de819f9ed4e829cef7bb014a95c014ff280879e82a3
MD5 d7800566e24150ce74596499a7f572c3
BLAKE2b-256 ce7ff1ebd33c99da6c8513a8a78a6a30d59547d1061aa7fd1bc34f433901706d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1733301548-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 4cf425d00a91035ba361c0559f420ddb89604577bd4fd0b4dd05fa6ec5bf7eb0
MD5 d39d9a387c3a362e7962d841ac359850
BLAKE2b-256 f77ada3c3ae4f586884c1a470641b292fbf8ed09292e79a8015335214ed122f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1733301548-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 036cdf4eeda71a856ce0f7ea9471b018fe53ddfcaff00392109b9520a6c022ee
MD5 175f7484ffb128ba7b4cff93cc4bd72e
BLAKE2b-256 44fdc010ece07fc9dd8ebb8e638f21cd30781350163387023cbd6c1c6d331d44

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1733301548-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e8e0702b30395629bcae94762e7824d974a320450829ce8b930acf6025a29268
MD5 191564a4836b83919ddb2a1aae21f001
BLAKE2b-256 fbfa0555178d3864d97d520467b222c0b25b8dbea6370e9106215522c3f0e2f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1733301548-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 264a8422c4db0826c1c7b3e168018f73a7445db840255d180b88bb7a76a0bf16
MD5 d226170eb42075e406ea164933281101
BLAKE2b-256 a81e284159eed91e91a479023ffbc22873782345120f786fbade52a3775f0f4a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1733301548-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 49df9c8e4a51b7086e110b19ab1729b67e3bc651e295e07ff7da042e7275cb47
MD5 b311db2c33a88647fed8a0e77df7c3b1
BLAKE2b-256 c0fb50099acd4e6702798a320a3a648d0d22728d77b491afc8d3c9c3d1f09d9e

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