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.dev1744697311.tar.gz (843.4 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.dev1744697311-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

stim-1.15.dev1744697311-cp313-cp313-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

stim-1.15.dev1744697311-cp313-cp313-macosx_10_13_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

stim-1.15.dev1744697311-cp312-cp312-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

stim-1.15.dev1744697311-cp312-cp312-macosx_10_13_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

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

Uploaded CPython 3.8macOS 10.9+ x86-64

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

Uploaded CPython 3.7mWindows x86-64

stim-1.15.dev1744697311-cp37-cp37m-win32.whl (2.4 MB view details)

Uploaded CPython 3.7mWindows x86

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

Uploaded CPython 3.7mmacOS 10.9+ x86-64

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

Uploaded CPython 3.6mWindows x86-64

stim-1.15.dev1744697311-cp36-cp36m-win32.whl (2.4 MB view details)

Uploaded CPython 3.6mWindows x86

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

File metadata

  • Download URL: stim-1.15.dev1744697311.tar.gz
  • Upload date:
  • Size: 843.4 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.dev1744697311.tar.gz
Algorithm Hash digest
SHA256 f08466871340f19dce7533a6ceb4c40dc67b291110033129802d10528bb5ab37
MD5 fbf7ebd3d5f99679a4e10c95ddf145d5
BLAKE2b-256 cd0582679f6baaf748710a490c5880ec7a97b69208a9181f5918f7fe520eded1

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1744697311-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1744697311-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 60c968a9e14363e26f70859a65ab8d45e224c83458f807ed7b1faf1383a0a8a2
MD5 85096e8348584eb2e493da998b5b62c9
BLAKE2b-256 6b827554cd6cf81903db33aa743b60cdf676911f9d377ad7a7ac827105fb070e

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1744697311-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1744697311-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 24fc123982c6b811c44d30e8d9e87614458c602c323ef6b088b0e29d03050785
MD5 9a2057a6895a5a3b92f81e7064b78a5e
BLAKE2b-256 3fa77b2f7760f4abeb1bf267d41c5568c8767cacde45bf70dcbfbd3ac7524a32

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1744697311-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1744697311-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 0ccaaac2b675046f469486d399f800f12dce2d55f9788d4d4c43a418549a3319
MD5 445d7c44a3db78a17e6633ddd9a9e072
BLAKE2b-256 12146ffeba39bd1f155351006ea018a5f5e9c9c45a9ad9f42ab5ab1fbedc81a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1744697311-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 41b6aaafe945c3f146ed07665de09fac0f20a0b11a71da049f6e0bbc4102a597
MD5 e13449e26c7cb8792c1423c478f665ca
BLAKE2b-256 b4540d5ef01c40f29a96905f1c785e4ed990ed1f0ea9389c7866a3259ad48ece

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1744697311-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 69d4c5dc3be58d2ba68d572a5204028a13f7c02fa71f2540e833076281372494
MD5 9d6a1772332ef62627abe9130e542b3e
BLAKE2b-256 91f96fe84014a443e6576bf028dfec1ead3d793e42a96213900cc385d2d9125a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1744697311-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9a0ed1670073f1d2736fffbc77a669e51d3fcffc99460b9ee62336c724cf7872
MD5 74ed13a693b34323ef455b91bb317b1f
BLAKE2b-256 a34d66c944539a14f5df4ac9b6342192fc0e10565f70aff07db9a04170093281

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1744697311-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1744697311-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 c218da8956341e5a81d8c96ce6f2834994b64436057f9a35a687bd2c896b62c7
MD5 b6577860fcf157d443ef69704e156a4f
BLAKE2b-256 2f4660665b9335c603116de7bf57b8a891395a35f4ec13eb9248ebb9b228cb99

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1744697311-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 39eb56243442445d24afb7fd61bce79586745b584e4b55563e052cfe22343e2d
MD5 07b4c44e4563af19f590358695d3c837
BLAKE2b-256 65fa5a7c401a021117da7a9807b3d31380ca239d9c414300552a7227e129dadc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1744697311-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 013705d635ec9c79bcb78c3d72f28b728d5493079d09681e9f55e489388453a4
MD5 49cd07e22302cae04a156451edd85768
BLAKE2b-256 364fb4a96d92dafb424f3c0107719b5f742cb9918b57770f087766a5fb89b9be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1744697311-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d7ae08ce833400b6b7266ca7a977a474e483610a2b11b257ffe55d097e4834d1
MD5 20766e39d3901e818571b1503e483d60
BLAKE2b-256 6087cb3d6bb66c34ba882513b3c0accc39be6e35fbbe3d3a9f55a6b49160c53c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1744697311-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8b8f6300e2e9e42643106995c1f458b470ce087eaba080233d5553552a5eefef
MD5 7c2e698b5249581e8fbbc5ccdcb36a12
BLAKE2b-256 2ada44ef4c3342b4238ff32a16a406cb004d875c6947f1289f9687967d9a356b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1744697311-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 2112bc9a9b42e398f72ee559c2009cacee64bf0a3e14f9238cfc7f1125b6a06d
MD5 1b61149fbfcb95dfef9d8cf03889ea39
BLAKE2b-256 1c01bc74cfcddda779bbefa6ebf7ea6b8fcf27fb5167d12b5938516693b150a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1744697311-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 636e9d81a8df1f7bd8064eafc6251885156f10711adc52fe2918f248f13104ad
MD5 35136bcc13fa736c9cf8147520e693c7
BLAKE2b-256 b70b1698f88fce3218dab0c1798ddc2c417f641f297d227569f852f35a4aa171

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1744697311-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e1bf460a4413f6373036371518850e5e89a39b86fbf4b7c438de2975f276029a
MD5 baa41d041f3599d492c9dfd3de51ad32
BLAKE2b-256 cced1556d8bbfb91cc444cbc02224755628a5743be20dc934b854dbc3e05f89c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1744697311-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4a6e900454bdf7d08dbd3d5a8dea7393c2f020987cc73845bae42695b30b3b82
MD5 0dbed5bde6fd629080e69eeb038ab2b1
BLAKE2b-256 73ca8d9f591cedd7b0f712872322023a5ead96bffebd5e48e5b3428f988db71d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1744697311-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 8aa4d3d94b26ae628bddb5fa38369aa03c2a65647dd8d51b3b18ff77d2adf616
MD5 d19cacb8135231a49e3a61935779e87a
BLAKE2b-256 1d6d4bfd0fe60e87e625ff7dabe77536c508bff3a434141251afb7b937ccda1e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1744697311-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2bf73a4a7ab0d6bcdccb68b092d7493f5ac8c146510612d54829de86d47ec1d1
MD5 c06e9a6af86ad042827b79cece22ce70
BLAKE2b-256 0716f206c6fc361e05f4259349e34e1feb7d7c04bf35ed3d93b33dccac4bc887

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1744697311-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 70a9126b9294a19b7be4bbd72c1b41d917dafa22ea9185216610f0ccdf168e57
MD5 64632b848b3c00e156b07b22d05d8399
BLAKE2b-256 10183e451623253de7b54b3dddae5d6a603f4cfa8f1b9391621b55d413258469

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1744697311-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1e3c01f9916396e96a75d9010c742911ada93a99c19490768eb49eb3b7059040
MD5 93c19e1d25ef7b357cf986857c76232c
BLAKE2b-256 7a36498c10b16ebd13c7a927cf5f8c3d42eed7b8fdee479bc6bc995d3e9ef7d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1744697311-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 02dcaedd4fd78afa27d0269c5017708d9183123386533fe380a9603f2d42f459
MD5 468c150861adee018991ae66938c1671
BLAKE2b-256 bc7b1c090f4b93307d9143a9d7f2140e8f068e3631c88bc6f360ed193d722de7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1744697311-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 38f542a693114e868588a992667b3c89f1707b9a29801fd5390eff45bec72325
MD5 5d19db5a81d4d6cbf493915bab0b3709
BLAKE2b-256 ec04acae175975d0bb5b8ca525c121d76508d1eb783c1a60f9c287125e3221de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1744697311-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b5a9f66e6835696921d1b40266bcea19778a535e1d4ebc074ff449ed04b91cd2
MD5 0c364d818785899c44e4bde7f1880432
BLAKE2b-256 8c66e8ecc6e11b23fdcc23fcfec541d1353e4f181a9fd705eb2a4e370f246b68

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1744697311-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d9f4c21951b979328cd0f76cd7f445c8510f5c7f3c2f93bc65149a5bc79cdbd7
MD5 a9caa1f4407699dd31e95d924e994eb9
BLAKE2b-256 eccbe6cebeeeedca1d1748afff0603c57f76db6fcfe898e4ca2299d159ddf605

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1744697311-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 71b0eaef4292ea37a9e901ca7e8ed7a1432287391db7ece6e23ba062a5a4075a
MD5 688647ea6bd910cebebdbce2b3d22e31
BLAKE2b-256 2ae970c494513c028c5de9d1b074ff1717cb56cba60aa0a8d6b11a19bbd4ac3a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1744697311-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 0ea54bb57578ceb9447fe66080fc9a2fcda921d3ae10dbd9617f5bab58a2c001
MD5 2156230c7e6b2e2a7cfc4709fdcd5038
BLAKE2b-256 4695817c151d8e8da0a842eebb3680fd7af6bc5962a9c08d58af347eaaefcb26

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1744697311-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1602b335d35dc5f0a11df5ef147d24fb383661955a481ce6df9e08d07c903498
MD5 dd7561fe0e3f63430300aada0ef8da9e
BLAKE2b-256 ab4b0ad8b00bf06b9ec835a351b55bb48f86c328203a4af675dc46c48d3edd17

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1744697311-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a2a428338051a5e3b3ca148391535c757aaff5f23a5b9c42e0d08d1f360563c3
MD5 362e151253d1d176829c57f735547f03
BLAKE2b-256 3d0ff32f04e9552fb966cbceb2f939f6c0e0b29ada82af23cb69ea2297453e83

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1744697311-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 95c31d37b05ff64afdd722e2f029a3399b9541e0f1572c53eac3e2d4d9391c8c
MD5 2d968797b5a281e91ac6a70c6c8fd16d
BLAKE2b-256 e0dd6a5e8d739a8562289736a1f6442030b70a422d72897ee1879ef3ff62e707

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1744697311-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 87f37be14d0eea0058e41930d1350c972442d12f21e30d44f3e6fd5a309d1292
MD5 5c4295b34c71cb34be6c948fd9bf92d0
BLAKE2b-256 806a0d5320b58fe542a5bf9e1edffcb9868cce5d7a0162a971eb24a6d1225847

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1744697311-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 8eafdc7edbe4de56029ce8903278313324600f870aa44a6c913d4585581d8186
MD5 e39f0c298076d17cd3b6b35fd3e8f82b
BLAKE2b-256 68a3b182e140ae768356caf92da3df008c28feae3f114aef5d4d4f6d8a0dd711

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1744697311-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c0bf886c58f3c6b6ee7f1da89a1c9f3184e29f7fd09624e770b1eccec1159806
MD5 98fc5a174a1a1892080fe63ff191be2b
BLAKE2b-256 ee384ec4e9b4cb8649ef7cb72d23bf243a5ac11a18d53a2984f43e389e75b714

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1744697311-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 22de3a39ab06726d75765d2651f738840440a03c5ff251414a88c250c2b7d766
MD5 a97db8f2236a9e70c73b7517a2080b32
BLAKE2b-256 59734e24cee8e3d76e7962b0adeb59425bc94bf65bb6de041339c5560831ceb8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1744697311-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 49f98a9f0edd83a0c3c62d628b6f24e888f819cfc631b7948e3f348a935eb583
MD5 a71046960dcdc4733a5e7c3172d6c478
BLAKE2b-256 f8296dba924202d44ab23745ff90e01a015957b3c38e51b130cf162ccdb8ac06

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