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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.9+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

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

Uploaded CPython 3.8macOS 10.9+ x86-64

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

Uploaded CPython 3.7mWindows x86-64

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

Uploaded CPython 3.7mWindows x86

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

Uploaded CPython 3.7mmacOS 10.9+ x86-64

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

Uploaded CPython 3.6mWindows x86-64

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

Uploaded CPython 3.6mWindows x86

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

File metadata

  • Download URL: stim-1.15.dev1743880617.tar.gz
  • Upload date:
  • Size: 842.6 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.dev1743880617.tar.gz
Algorithm Hash digest
SHA256 ae591a3a4e203ac0e0be2cd83b7002a0b33d2f916436731797b6eb04c322825a
MD5 0813f2b15aeb063972d28ecd91dba760
BLAKE2b-256 d1fa3d5ad571e64ce6d9b2e1196d52aa636f57c89b605a677cc20a9fe907c63f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743880617-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 44449838a0b177ffb9e7f8d68682eb4a11dde2f1022854db05a0094f31b39996
MD5 7009a79ca718c33f782d1ddce30395e5
BLAKE2b-256 d99927f68d8bfda0ebf23358e8d25ef141074f8b33dc1ff080f7c6396d15cad5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743880617-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8f2ad9b809cb03a86cf779277bcd7d63bec6fe78fec71cf0b05fe89149475378
MD5 2bf6874ff9b2e87c491c27d0414e40df
BLAKE2b-256 82954c796ea87e901105f2164300c8102b9f524d716692d8ac1d2076480ed6cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743880617-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5c2c251f855152689d3728d5e4b29860034b3a29d458c7c7d9a655323f72f7ba
MD5 486026d4220341f4a56f73a2e45052b1
BLAKE2b-256 9b6cccc22a0f9278fb8e21102bbd67db703eb7b8917fad233b58a738ab927633

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743880617-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e397fcfab803ac3950b3d2834a82eac55cfdb619d57f809aab6c01301bcb06bf
MD5 031ec4e1b1d68cee171934908a81c535
BLAKE2b-256 90a0b4ae7dfd8b25745888cc5132f9f3de5e41eea170492f87f4a466ae85ac9b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743880617-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c785abac1939fa51eaa439605e629ad02624f3c9eb6678db4bd4d3cf13f20e0f
MD5 4ddc8adabeaabf4e9a4043eaa26c8b1f
BLAKE2b-256 52c4bc72bd8a8d72e962ed4d438f120d33d80c17654f12146477feda0da692c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743880617-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 01f767adb7608fee402a1c6e65ca810687d54439155afc6d14d15690919e5418
MD5 77c9f98edf4bfe56fbed8a3b5b56ba62
BLAKE2b-256 2c676a9dcbe7b5ed8f38d781625d1a87b37b4df106fe40e27570fa1a0a0741ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743880617-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 851caa9e863cda732c803d16323b487d9e03a8d422a970010b9a3052b7c083ba
MD5 a530f6ab8ac1fe9db85fd6338511a4d4
BLAKE2b-256 9b364c97c7906feb5ddf6d8ef5fd30627979823631038d398af47b1ac0fc0b04

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743880617-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 28d5e290198c1f7becc10d3a3eb4bc325571cd01c2f9ff5d63baa29cf25adb2c
MD5 ca466f44f5fee82471672fd7fd8ada33
BLAKE2b-256 6b4775124073507e5a53d176046c73b3943179df22375dc4091537dd4e7cc6c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743880617-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 35e322104b09fa3fcb107b97de6bca43a05d1a27195053f278e53eba86e4e069
MD5 d7cb9138c91515eb8442d048fc2f6912
BLAKE2b-256 46579eb4bf23aa25df77a3e647d80c33b991caa7eae2ac77bc3de7355f5445aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743880617-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3d4c7555c49da9c0762120bad87e694a676cd288d20a3310b4989594f26063aa
MD5 30aa394307c857099d2ae70bf99c7ff2
BLAKE2b-256 19ca0e978f1e57d468ee17e2905acd1551d2698e84a411e798324a058ed855a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743880617-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 322336762a4d0e723aea5b9aae61f1cfc652bec4ca63db132f5d3eea7496c314
MD5 03cf54d7d1956f90b0832efcd28aba59
BLAKE2b-256 ed04adb9f46e4d07240787024fc037d074dac91368428f546cc90ae5a6f02645

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743880617-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 acbdcc94bdad92445825a5c80146429fa521d984b3de11f6c514364a4ca97988
MD5 18cd070ddc6a6ba51ce1fde48d3feb27
BLAKE2b-256 0e20d10234c5ff8abe800c0906bc046e3244611fd8a92c116e6af5eaf7e517a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743880617-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 c23f87573680dba8dbd1770ff4e32ac43cbb7ee81dd4d46b59033dc29650a69b
MD5 98b3781ba321ad48201286508adb0297
BLAKE2b-256 ad3e08e5b2b586abad31528868091245b3290c4330199a1ba70678c16821f024

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743880617-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0a89b6b0653efb6146ec377e28bb0192a046b14958a2ecbcfef959b8c96cb506
MD5 9917b766a8458e0c06950ef794ecf8c5
BLAKE2b-256 5ba879f769ff113f116386aa39e5f6fb52ab9016ce1d5b90d4fc4821ad8ecc7b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743880617-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 960109af3072d6a2e5a69b478db48bc7ecbb87a25b09b4c66c25a9fe97244c03
MD5 76b447321eaebc661d6c630032e34e69
BLAKE2b-256 7880d85b62061e5e557e268c2b4f064082701c1c1477de763ab40dce0c5f0118

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743880617-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 83e8afd3108f46779281e052d1f6be554a2af6d475281e2bc8d95c441af8295b
MD5 beffc13e335540055363495126c7a5b9
BLAKE2b-256 2a40253fbc589a93ca65b385b3b11f2aa63cc52965403de43182a3aa816c63ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743880617-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 6dc499daaed7cfdb457d26a7164e9c31de6500c0c36ba0120e3741870aebbd68
MD5 57c08ae43d5ea0c20f4199342d252651
BLAKE2b-256 b8d5e98b3f0a21fe47816087d82c18697907eaf5ed598d1b331d6b0e3c2b126c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743880617-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0226c0233c92d292e673223b4c30c26282f0dfee101813a1fe587ec89e87fc97
MD5 60f223e8bca749edbecdb4163b60873c
BLAKE2b-256 176888825889503e315d72ded9cbcc0e908d94bb41dd7a53c943c455de4f7cc8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743880617-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 66eb6866da4d088cbb381d9cbd074abb1ea6ff6ff8c3acd3411e8984855a26d3
MD5 726bf0a49365b4c8ee16b8e13da05eeb
BLAKE2b-256 af9f4e1898e864a10620caa9ac9bfb44a8028000a761212f5bf3274b0fd6f462

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743880617-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 95ac8fd5b7ed66d69853c50462bb2929c8d8516b4b2cf59e62432c992ee5e564
MD5 eed3be5f68a63377c746ec1d2fbbd952
BLAKE2b-256 4d691e5f7df6d49195da80e395051233781b932af813bd02416f32535c95d4ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743880617-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 bd5d689eb881f23ad99455c5c3d0b8a6b6916dcd8f191cdc53f4a55ff413096b
MD5 a9c2b5a3e8a89f5523a0bd3cb95e2df8
BLAKE2b-256 04b6cc14ccd756c29c848a7d397867b2897c048692e292681ebc9a69bc29a9df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743880617-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 e16e9a3cb75831426cb60fa5c32486891b9674d4ffbda3255c5b8ff9d294906b
MD5 ad5293ea9b335a8629805a5b54c8dbd0
BLAKE2b-256 3153ec79a874a24ffc89db166b1a088fc9ea4e5c2d3024969c8416a055d63b3f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743880617-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c16882edcca1881557fa9b4d1c7566a110aad02d9119127b663c873268be3842
MD5 790dfb2e31882e5b824ad3a8d60d1daf
BLAKE2b-256 ffbb732b8a4b4eaf78fd6907db4a438c57ebeec185b74c74beed645cce4c49bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743880617-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a33f861b8381ec28875a29ea3d00d9325146a62b7e5acb4b701b717cfd7f8b0f
MD5 f58e15f0a56f6ce912c33f2abfad62c5
BLAKE2b-256 f44cba960d62495eef9f6826050047b9410de433e771780a10ac188b621df6fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743880617-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f7e02dbef3bafd847e33726f324021679f6aa701348ccbc8c4b5180b04ac382c
MD5 7e3d53c0a226f526aa0186403a52399e
BLAKE2b-256 e5ed11a7ab0f1fc03785de3ebb9dae2048211002237da70770c968d3310cb179

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743880617-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 8e88e18715a9ce6ec9a6cd932f96c3057603e6647029381b7b1c31d1909e22d9
MD5 8d59c9fa96aab06e3683a34873852ed9
BLAKE2b-256 f0fa4100cf4794b45e7857f6d9434c931b658fb1be7e0ed755fcc15f4d2add04

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743880617-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 b149b96f1f3670a0183e0ff4212bbe956286a1d297161e7e1e3122b35d848e05
MD5 8726840e2de338644a738b4494419eb1
BLAKE2b-256 dbe5b8b4f28f1ca024c681cf1361a150e8acc03bd7df1b304a0970856c7bd531

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743880617-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9a42b01ce7319017dac0574fd02fd52fca416a8acae7195c22541dde592ff8f7
MD5 d6b29876096c71b10ebb39cbaf896b74
BLAKE2b-256 f41659f7f065015e87fb83b313f3f24a226af3b69364ab6b511d05c35a014324

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743880617-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e5e4163e8f368706488b5b1d898e253ce534184a605f6ce28929fe3feb3b1676
MD5 f46296b7254d7eeb0b49952c37791e16
BLAKE2b-256 26d23363cd311d55c42dba705688a9679a3d6614e56d890959b203e6f9c96f85

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743880617-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d0b55bc54cd2ae01f29650829aa6aa34d7ab549abd3e94524931b9a7c8db6a79
MD5 f454b7e2fef7ff6a1ca478294cad3ebb
BLAKE2b-256 ef76a913883496286998d51ab84711a86e392229af6e6aa179fabe2c8c337ced

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