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.dev1744231916.tar.gz (843.3 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.dev1744231916-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.dev1744231916-cp313-cp313-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

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

Uploaded CPython 3.8macOS 10.9+ x86-64

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

Uploaded CPython 3.7mWindows x86-64

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

Uploaded CPython 3.7mWindows x86

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

Uploaded CPython 3.7mmacOS 10.9+ x86-64

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

Uploaded CPython 3.6mWindows x86-64

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

Uploaded CPython 3.6mWindows x86

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

File metadata

  • Download URL: stim-1.15.dev1744231916.tar.gz
  • Upload date:
  • Size: 843.3 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.dev1744231916.tar.gz
Algorithm Hash digest
SHA256 bc0ceb5d87f3483ca1f6cd8e9346a7169d77162b9c8173a1dfabcefd7866a2ed
MD5 4d4e1c100873cf6abdcd607b53308d6a
BLAKE2b-256 18f6768df7d73bb439c30fa136e95fd342148f8e9a6568cc3c67b4199410cb11

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1744231916-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d071050f9c650a842312828ca5e8eee69d0827d64eae783015c0be53009da42e
MD5 baa0f26fe0b57478de25fc9c66981014
BLAKE2b-256 cc2919b1975cf3242de92a64f22e06d79649193e87c3bbfb2ce704dc33f082c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1744231916-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f99eed01e9468943e2f028abddac7543565afa1641ae5821b751fd71dc850b2d
MD5 cd6d7304d138568c8cfe797a43b75c73
BLAKE2b-256 67e4d79e00dd6bffc2c744acb16cc1eee067f2f687cbf4b2e6cb076f9d94fe63

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1744231916-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 3ff1d26b8c1c5ec97221ba88b7d324b5c8b7ee69c53b0aadfee0dd1f1d0163be
MD5 43bdd85ee069561967667e60cc1ea11f
BLAKE2b-256 8695653b15dcb7ba3fa14d37fc399ce06db534c64cd55f0af74d4b0793cd9bb1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1744231916-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e8704841c3108b1ebeb6b67a0bbe8560a59bd1a09ac3e77fc50e052dc72f5d9a
MD5 cb2796dcb1072ed50986721d8c53fc6d
BLAKE2b-256 c16ec55b1241d0808891b433473758423583d0ecbbf819bf9f3726ab0a4e28f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1744231916-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 737c4964ee994b8e76c83da125d1dc92b3c69da6c829e4290f7287493a57c1d2
MD5 d9599fdf6d9a82fc4392185850f9590e
BLAKE2b-256 c39bb336d9e047a2959bf0574b4b1b283fc1d563a9849678d6129c6dbe693d5e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1744231916-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0f3bad24245d94d6e6a0cf75aaeeeabf25391d1cde3ff70031b0b3ce080e906a
MD5 c69211d3256a95379df9f7daeb8ea534
BLAKE2b-256 400131b59aa9d6af7a0738c2fbd94d7bf4fdeec2f2bbc065fb176e2e924f7c47

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1744231916-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 632e97e7fcc3c67588579ec9aa931ab22dc1bd2588d1ef90ad003dff1411f585
MD5 47e4534291b76c5cf60e727d1ac4cf64
BLAKE2b-256 0f40a396565cd47fd9d05630b006b98a5a6e28655640a716b6d33a871079a5e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1744231916-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 f56a7264e130240dd79ea4e9aaf8089d3e88b1d416719329bcf04171533d81be
MD5 c015fbfb8f201941e88efd55bbe493b1
BLAKE2b-256 8f15367e2d5a119586abf1c457d95dc18d822624c90a21e9935c0793f1d07acc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1744231916-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0ca067241d09e3ac850040476fb011521159b46ffaab52499d9378813da62417
MD5 38146c43686c66de41996c43a1d9b6af
BLAKE2b-256 4ca81916006908f388aa8e361ae2385c2376b9ce790dcb4048ecd3993d6107a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1744231916-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 caa20cc553f079ac74c37dfd041a7935fd14853dde835a2dab515ff532f8d230
MD5 68fb229a91519764950c40a5c90518c0
BLAKE2b-256 cfef316763c24b02c46a13222303dea91cd631da58d4b3f038f01420c62ab2ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1744231916-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 76b0c3065f32cb48b176445b6f25787c3f6b05c731c7a23daeb8ed95ba1fb082
MD5 ca90362150c1fe38236d047232524486
BLAKE2b-256 a433dc24aa536abace2edc57df2c4b542c4c2f39af51bcb6750786e5f903c9c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1744231916-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 192bb2881bf705ceecd32df43c7ca039f8d4b25675013588edd3d9f4367bef7f
MD5 06e13415a5eb157ebbed9c5e9c721a21
BLAKE2b-256 bbc08014da4df9c810618f4fa2d6a1c154e7c32ffa6cd0a73d9948604c70e581

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1744231916-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1af077e26c9d7deda77c330e73c4a0553c4060ae94033e588667534bc9d59f1c
MD5 25eb716633f536e2377f3d942b4a85d3
BLAKE2b-256 ae4d4ea714638f3ebe55bf52b73889973805379cdca3fb8e6f7dd8710f57ebb2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1744231916-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a921a7d2d40a69efdac28254731677e525b8fff347f3ec84f9b84555332c01e2
MD5 c2b6e68389801f420ec7a2c06c277262
BLAKE2b-256 0d0f27059985b2e472ed5157cfacdd175435e02015d9a17b283748d0c31e02e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1744231916-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 873fa7abc68535c36f3d9a0e3ce19361bb5764c7ca36f079e3f67bf1bec5368a
MD5 181158cf8c0a93a0820fedfc7979fdb8
BLAKE2b-256 84ad810d6472e1a5dc619819be3a3adda62260df746279eaf75ba52478865d7c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1744231916-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 e6f45b442407dd6b05d8825f96c3408dd8179b71813853bd765e15320a2a1ccf
MD5 3e742c7ca72abd7f1541e4b5486fec71
BLAKE2b-256 2d43569ba1ef976571c9523b013395beb6910062c0f4d58708beb8dcc849e756

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1744231916-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 31d568064c681c9465adaeda3cbfd93436c5b814babc1980bb718f7ea8614012
MD5 1ad4ec8bd62ab8e9fe1ae826031ba118
BLAKE2b-256 19a48993db96399fe2038dd98bc99fad676212cd253b9abe802e87df9a666f83

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1744231916-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 569dcea95e15f69024e6ed45b1c3f079fa1d6e50fd70373fbb9ea778d7285b83
MD5 c9903cf5a270fac0900b6e12fcbe0f22
BLAKE2b-256 89382b3d65d0b9e36270500b552b118f062e35851c3df5bc5a4b0fe0023d7ad0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1744231916-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ad01b7f644d9f793c7e494f348024a23e7c32223cf9b585df2ed6668d75cca30
MD5 ea5e88b0c4d6d6fd1c464625d632fd80
BLAKE2b-256 6a1fc68270711f10dc96769e810c961753249ed6a19dbff51fb778734b51e14a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1744231916-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 30dc6993b834f42faa632a12250b6767595c6a22dc112c72b11a3e77a3230fcb
MD5 fb3caba181d68402e67f031fdf8018a3
BLAKE2b-256 81cfa5aad8f09de59fd3dcfe8585e81b03c174e603ea239aa73ee62f15b04c12

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1744231916-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5450f315911060ae74e571046f06412a359bcbf0899bbc7baa1a9b4c27ee8d40
MD5 59aa4cf05fcfe8ee1787bc59393c4770
BLAKE2b-256 ac6d8cfeb4d807692e61686c9f5399ca72f7e7e8dc64bd7974aaa997f251b5d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1744231916-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6e4de113f57f31f0cf52e21347c3e08c3b664d7238f78299658f46de6fcfcee8
MD5 c8732a872d96f3740021565873363213
BLAKE2b-256 52fd4a2709d883bb38177ab1dc3c6cc6df17ecab78c7a8f2fd2b017f2a0b3375

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1744231916-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7be2abde1ea4a572f05e06c339a7a8c9e3478c0e88ea71a56fcea3376e094560
MD5 b0603092ba07b0ee823ffdf2c2aa503b
BLAKE2b-256 0cc8fb32fda51899f0c0c77c03d7f88f56574d31f9f56b1570a561d78991f96f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1744231916-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 e00da24238f4cc3e56967d992f03027ef8ae3b2d05acb156db1f40dc371a2363
MD5 9190cabbc19f0bab114120c4a3ebd12c
BLAKE2b-256 b4e768f76130d944d0dae95697fa50666bfc240c7b2193bd24d8e0f4ed58b66f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1744231916-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 4db04e580a36cabd4175d05887a09cd2087eaf7691db13ab34861926259feb26
MD5 6193735613c475a1c7f95af5e8c15469
BLAKE2b-256 62f7c7c855d41fc62b47ec86d4faf62b6b551dccb307f4b7fd4fe7d7509bbc76

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1744231916-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c5567952be430f8b994b49e2e57a9171880b9182932c406d3f0242332f10d620
MD5 a180f6f9217ab53c62a9df5f9ec936d7
BLAKE2b-256 722f1f87d1f4dfaf778e51d1995baffb9097237997a9a5115619444843cbd555

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1744231916-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 493071c9f6813e74fca9c0622e0c48baf43fb15c5c4b55d03b626b9a045a9a65
MD5 742ac50bfc6daf44275a5620e567b01b
BLAKE2b-256 45f4ed36ab504f2ef1b03ede246d020054bde3410142cfe2b2623028f6529531

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1744231916-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 22ef1c4f72c7940744b4b57ac65bb428689c93d54f9aa6f127e186e465e5f71f
MD5 0891f298bbe05b120d77ab216cec662b
BLAKE2b-256 6c5978692ae4347bee750f446ecd510dd56503be7e4b6f56870b1d5956038820

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1744231916-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 79de285b375332b82d2336dd5cd99495504c59f91f93f2ff8a031574d10ed9aa
MD5 443b5dcb0d1b42966419081789f47785
BLAKE2b-256 ac32bb8eec31a99653efc3cee8e07f9b97c37248f44416891e0494ef288f3ebf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1744231916-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 76836e7501d87f54f40248f03145efb6aa08e41c4f6b02625873be22fd031543
MD5 108719b07facd04a5882f7362bb52903
BLAKE2b-256 d623c99c3a3a7342d0b79a6197dddd38300abe9e793b903b7ad45025d3ccf83e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1744231916-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9bbeb68ee4296602aa26425d6f0a22cd0829001b3c704c93f29b8cca872c03cf
MD5 45ae9bff3a26a9b57c1e8191db2dd7c8
BLAKE2b-256 31e260e431a754279c7020f9e063c37bcfd8896ea6a9be99f21f7d5e05f6d155

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1744231916-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 580bf4d4ba2d5145ca1c200ae6a610ad9b70a134de5834d2d2109c18f8b96c76
MD5 33ac84755f1295227a97c66e44beb0f2
BLAKE2b-256 dab9a72ef322e2b59e2687d6fd92517ab4b26b890d2ced14f557591b92c292e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1744231916-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 03f506adc194ddd670c855fcc29abfaa4ea9d2246deb6635d4bf23dd4a1ac261
MD5 7e0a153ad4ae1db12ce667c3a1d16455
BLAKE2b-256 f3b0d9f575d9aec7db9c3b3b4475a8c7b2b807bf09bf6d95922700c583ad2ae7

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