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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.9+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

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

Uploaded CPython 3.8macOS 10.9+ x86-64

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

Uploaded CPython 3.7mWindows x86-64

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

Uploaded CPython 3.7mWindows x86

stim-1.15.dev1741046612-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.dev1741046612-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (5.1 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ i686

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

Uploaded CPython 3.7mmacOS 10.9+ x86-64

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

Uploaded CPython 3.6mWindows x86-64

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

Uploaded CPython 3.6mWindows x86

stim-1.15.dev1741046612-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.dev1741046612-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl (5.1 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ i686

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

File metadata

  • Download URL: stim-1.15.dev1741046612.tar.gz
  • Upload date:
  • Size: 829.0 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.dev1741046612.tar.gz
Algorithm Hash digest
SHA256 5f8c18ffa39f37fc971946c814fe55c5225490c7fb220068474a76f92495c352
MD5 19dae087be8214cdb39d7de49444a59b
BLAKE2b-256 4757b8d368fd6d98db476b0769d38870c14a292659bbd7f7560a2c9c0a53938b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741046612-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 50815a38b3b7277e666b38e64a3be26e02fab1f1a7c1cb5127aad40c88beb67a
MD5 39799d2e7987e7d75c15c7444ad9671d
BLAKE2b-256 2d39671712a8abc6068135a1e455bbbeced93116a10d8074a2bcb9c2c00e770e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741046612-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a13d7c64977456209dfcd50041d0a463719084e145c1e21d939e6a151d6c18d9
MD5 696dda13cd93199c8802b70b5b9303c6
BLAKE2b-256 7b3bfc33c2c70526d681cfcdc5e9a22b0fb6aad0e36d54c78a7615c496d1c137

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741046612-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dd8df5f840d7435c4c8283e8bdb1a55b3f607506cef7151e551fb1de49ac5628
MD5 2713602a98dca71ae385a7c51ce4055e
BLAKE2b-256 dac34689ea8ca0412ae973793aa3b7f81d846193d93eeb185d88314f1f53c299

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741046612-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 16d28efd664223aae2527a3a26ca47dd255696aa0d8cea07ffdff2c6936e1742
MD5 70c9e4a8a91ed86c01102aaf57638489
BLAKE2b-256 80ed50fe6fc0930610bceeadd416e15aa9fa31655912a2896e49fba87cc062a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741046612-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 8d9421e7063042ee5772c83fba6c6696140238b4a913180b0fb7cfb780c9e246
MD5 292412d73642162ddb86ce72f5e21f81
BLAKE2b-256 7ed86d8bcac8d1569985d4f46cd13be903c72146f68c9522f9c189b2253aef03

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741046612-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2df1d96c4519f0a737024db7e2263fecf857a5388f61a3212905b96c74e7b372
MD5 18740030d21e3b88be80aad4b51b5195
BLAKE2b-256 d27113329030f38d9095913eb4d35a4aa9bb94c8cbd19438105371a428888c55

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741046612-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 196b4bab99dffaeed2d00ecf38252802a8b8ca600a4b65fb5f525b319a91b79e
MD5 616d32781b3e4243c0e2d60c62d91fdf
BLAKE2b-256 c6e4e9ac27e2196ef10cfc47aa332628a3797eeb553fc4b1e440e367c3785da5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741046612-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4b34f139c950b7db22b593149a70b9c58b4d589f21530f327669e7cf1d5913d8
MD5 e9f005377351afa025a045ef58c86515
BLAKE2b-256 3f30fefb435557dbc5715733f51fc9fbef2a3d194440f5db785e18f988e349d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741046612-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 16a47b9172d3395ee2daf74dffb703adb6efce943997a4dc93788fb8180cc24c
MD5 927531655c37500bd448ceba1da73470
BLAKE2b-256 8bcb410d3f70e5ff314e47306de0ed043abc3d5e95b726c291c82741702c2c11

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741046612-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 02c8787dc8ceeb3d25a95666c3379aeb42228b2c5325872be54bded649b2642e
MD5 0fd37d4dbb37ef2a28d8de3a7cfa7049
BLAKE2b-256 964a0e77acf311a2a9561fe83892bb3366f8036a5e8c8cf8a89e9a7eb408ede8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741046612-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1b5071c6d21cfe08b855c11d41fe46272ed7387ea6512c89a2b7589b52fa6d8d
MD5 207e2374c2d574602fd5949ee5d13783
BLAKE2b-256 bba9fb7e612586915f416d5a76b3aa275d0a88cad54fe1700c9b506bb4c3bafb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741046612-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 73e45f793831f176a4cf9b0cfdebc431594161d166d3d63fe54be944973997d0
MD5 37ccbc5d24e93175076eb740282efad6
BLAKE2b-256 e8ed3efed33ba36429359782f3f8b6a423e38f657d09e53b3c5dda0b56c7a2c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741046612-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 197f59e65141c8da7b57f4d1653790ca124065ef9fee87f8fc7a8d9b025a05a3
MD5 abe2df4aef5e26255f1404e893581206
BLAKE2b-256 11408858a3a9d6e39c1c63ab9ca4e1fd5aa2cc5c3f918931a89724996a4ccc00

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741046612-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b0b66b7c8288e5257758f859536fff55e21a28e1e5ceff07e303bccb38a67a5e
MD5 7bd8d9545f139d532369ce7f13125f2d
BLAKE2b-256 5e5fe5392beeb1e04531dc8fece221e843a2757f29007f5e38d1976517c3df33

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741046612-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 60aed81537381d368f07e6894d348d6710f2674439c5a97250b0ef93bd8536a5
MD5 0358f556f1aec34bec91e6e538e15109
BLAKE2b-256 f0ac08aa061b9a9992efeed4b4a356e22a78e23162c93fbd0a0695c0fe66edbb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741046612-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 04132dbc45689bd86066934a7d9729768aa4d5c8c9b285ac93f9adacc75f5fc3
MD5 37cff1989d9eb04a4f8207819b560037
BLAKE2b-256 0883ef499b6adb9065056897b0dc9e3f206211640d852571e7cb95e5bc8f7f44

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741046612-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 fad4af0297dbe838df0834145ffb55969526ec613cc6599a084bb6cd395e1459
MD5 e472c88f5a95b557731202ddc905da0d
BLAKE2b-256 812a9a9b088dc46ee3c27734f97dfdfda6553fa527e0d6ecdd9ee2a656ba1b1c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741046612-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5b6a901d51780cb599f6e0d9a78eb14a8efc0f77d63bf3a3b8211236119477b9
MD5 db67f95bc8f46ee79053a192f1ed2524
BLAKE2b-256 73cd0c7f8c9b59c07b160165957372b9c87fdb9f1d2f8c42fe5b3ca84199930a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741046612-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3bf991886cc572aefa6b332054acbc29474b58d8cdd06c1bcf3708e5ac9e1303
MD5 0c1330dbb15cc6d3902066b27fb8ac93
BLAKE2b-256 618bf4648612d815bb6e33e7812e0b3ad0b57d9ebc6a92b3a6f35af139eb78ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741046612-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a11627813f0e59a72d61f70d4b1ff072f50bcf07f3bddd4c41daf1dfd254cd44
MD5 dce942e92477bff784aa869985c22cf7
BLAKE2b-256 3ae45cd2e5693011832fb6f1b422f6bf25aa4c702dbd1b4f57d59a174c0e5aa2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741046612-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 55f7232a1d7ee82b9c6ff9e65fc1181bb4a564400dafa05f965388192d1702a9
MD5 3efcf9db6cad364ed5141e632cbe9c13
BLAKE2b-256 e115b264d6e1d9c427b7493c07ce8a094ddc3a6208535c3c88b3e5058465afa1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741046612-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 8fc50875ab3a7be5777eb6f97655f8d895b61daa6633a8156894a3d3754a6ab0
MD5 1b0504877f25e4939b2accdcadcdf5ab
BLAKE2b-256 7aa83c3aca2aef5bf706966e6fecb4e41fb91eb1f452c030453ef87fbc95c9b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741046612-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bee4617452de615772c86a7036c6c4ed0efe3007e778ea7dcfb0f322c31bede2
MD5 fb78c609e88c65ca670c26658b4f9835
BLAKE2b-256 90837ab7872114e2eb8fd79e9325367b397a808c84b4b1caf12cf1c602ddec97

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741046612-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 241fb3544d1d2120b3bd0d4af2c66b6d4e0091feac2bc532d52b027be07d4cae
MD5 b710675ccf5bb7596e2a485f7bfbce7c
BLAKE2b-256 ece16a3fb20bb9f2eceb60c3745cc0a5a3244d62ad4c3d069dbf07c676698422

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741046612-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 142225c602410379fab8fd2a7846c80b867656d4b4696381f51b800b896161fa
MD5 c2839faf58134662309ed9c2bd9a781f
BLAKE2b-256 43522313fc74b4fc31a52b88f315a1197d1c00efaf84973aa5c5f721fdecfca0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741046612-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 70884faa8e7176fe6a50518d363a2ff31fc294e5de12fe4c41504e6e8c92504b
MD5 11cddb9f19eea0c8f60ecd757b2a12d4
BLAKE2b-256 0f1067b3e0ab5d344e6d339c226177917ee5a14a56c3765d46206067a1e61d72

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741046612-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 a733923c4df2ab1effdb5c0bc28aaecb15c688a3b6bcc1dabb09a4c7c975d506
MD5 187b0b4a9242e624d3952f65dd7857db
BLAKE2b-256 5b81ef1ab513c15d36d97fe22413f066d802884432ef281a34b00c765b9e0403

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741046612-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 65f86a9152a153f1d70e1a3aad3b98c69241c65eb1c1feec5b76fee91ed66760
MD5 7b115848a01fc456d0c35968fcc5b6a0
BLAKE2b-256 aa1943fbde25b6fa013cb04dcd677afc8f334819d8f4c94b7093b104b8c2ae4b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741046612-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f73d292653c3b3b226c6d49f6189bad4fb460909854bb4073320e9a85308cb02
MD5 301a847df1a1003df441bcc835734a2c
BLAKE2b-256 4f9251e57de749d4afe94146faff6478f634d37c73cc385a958cde892057f28c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741046612-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f1ca81ca862cdd90df76d31db4fc106cba598a47b6176a7f41530906ecff6b35
MD5 574fe7fd0a1bb74656990da72f3c648b
BLAKE2b-256 4d3f70ae64a2f16ef038cb3867cfec4f682600b6c319a2d7a4b55e0ea415da97

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