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.16.dev1768331784.tar.gz (865.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.16.dev1768331784-cp314-cp314-win_amd64.whl (2.8 MB view details)

Uploaded CPython 3.14Windows x86-64

stim-1.16.dev1768331784-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

stim-1.16.dev1768331784-cp314-cp314-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

stim-1.16.dev1768331784-cp314-cp314-macosx_10_15_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

stim-1.16.dev1768331784-cp313-cp313-win_amd64.whl (2.7 MB view details)

Uploaded CPython 3.13Windows x86-64

stim-1.16.dev1768331784-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

stim-1.16.dev1768331784-cp313-cp313-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

stim-1.16.dev1768331784-cp313-cp313-macosx_10_13_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

stim-1.16.dev1768331784-cp312-cp312-win_amd64.whl (2.7 MB view details)

Uploaded CPython 3.12Windows x86-64

stim-1.16.dev1768331784-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

stim-1.16.dev1768331784-cp312-cp312-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

stim-1.16.dev1768331784-cp312-cp312-macosx_10_13_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

stim-1.16.dev1768331784-cp311-cp311-win_amd64.whl (2.7 MB view details)

Uploaded CPython 3.11Windows x86-64

stim-1.16.dev1768331784-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (5.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

stim-1.16.dev1768331784-cp311-cp311-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

stim-1.16.dev1768331784-cp311-cp311-macosx_10_9_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

stim-1.16.dev1768331784-cp310-cp310-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.10Windows x86-64

stim-1.16.dev1768331784-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (5.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

stim-1.16.dev1768331784-cp310-cp310-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

stim-1.16.dev1768331784-cp310-cp310-macosx_10_9_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

stim-1.16.dev1768331784-cp39-cp39-win_amd64.whl (2.8 MB view details)

Uploaded CPython 3.9Windows x86-64

stim-1.16.dev1768331784-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (5.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

stim-1.16.dev1768331784-cp39-cp39-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

stim-1.16.dev1768331784-cp39-cp39-macosx_10_9_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

stim-1.16.dev1768331784-cp38-cp38-win_amd64.whl (2.7 MB view details)

Uploaded CPython 3.8Windows x86-64

stim-1.16.dev1768331784-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (5.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

stim-1.16.dev1768331784-cp38-cp38-macosx_11_0_arm64.whl (3.5 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

stim-1.16.dev1768331784-cp38-cp38-macosx_10_9_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

File details

Details for the file stim-1.16.dev1768331784.tar.gz.

File metadata

  • Download URL: stim-1.16.dev1768331784.tar.gz
  • Upload date:
  • Size: 865.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.16.dev1768331784.tar.gz
Algorithm Hash digest
SHA256 40a61d25699f238c55779feb68210a6ea7f7577b6c55629fbc2a7620a45c82d1
MD5 6a3208ae53f99f2cc7a5a7c173b45e8a
BLAKE2b-256 9e638cdbf4af40c6a20ef12ddf1e4c51ccac5f3cdb88446934daf9bf40d1e4ba

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1768331784-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1768331784-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 43f8b36922abbf4b30bba327656952a4043fea9979d702f596fd7883eabc726d
MD5 9fd1ee52558d1e95f89436c63a329201
BLAKE2b-256 8bee8dcd229adf2b93ef63d0cfcab3726766e83e06cfd971fbe2d5a28679c341

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1768331784-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1768331784-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 32228f81679e1d098c4d5131957d6ea8304a14ae4938586c8221d333a92d7e0a
MD5 f6cbc124470fbff836af9ca5f3a5bc99
BLAKE2b-256 46123b54f2e7894e100b08180afd3c3b4acf02d9a181b3ebdf32318680447c29

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1768331784-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1768331784-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 55c842589d5d1d3ea5a95b22458d55ee9b2d9b27023dea19f4a6e2a57e1f4a1b
MD5 ccbc63fbf486d0e34236f3d0ee81943c
BLAKE2b-256 6fcecf4e45b9c7f3e3152fe6432f350cf2b38c62bd658a31d18a8e3f4fbe9fc6

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1768331784-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1768331784-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 4271319ce6c0d08f9ee9cb3d0ff60acd48f29340ccd0ea5c05ca8fe29f384e9b
MD5 425771c55a2712237c555a26b1105b09
BLAKE2b-256 57675f0e8cec9fb404104b46ae0c9b312c330dac68b4301cfb474d56021c5d2b

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1768331784-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1768331784-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 96f9cd695bdbeaeaab4ef299889a1a100ca69f0b312bce826792ad023bb2dfcf
MD5 cd5aa7a357c58bc9745bf09334337631
BLAKE2b-256 e56dcabf363e6d5434c1aee5aaa6b27c02041aeb7ebd79093b033731e5e1bb6a

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1768331784-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1768331784-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c907fef24b5b40232037948c31229e2e0e5ff61bc0d843ae4472899f518aabaa
MD5 ef5d959e28b880fa1f96a42345f14c01
BLAKE2b-256 faa3f38025f79d99cf6b9885daad3736be702613f19a39965616054056f3ece9

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1768331784-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1768331784-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0d81d188412ae41f8c770fd6fd0105904fd838eb6e9f0e5da53888472def1185
MD5 abaecdeb9e905eef47387f563f8c7626
BLAKE2b-256 5ea159cf2cdf939a6c97ace6e6dbff410806ac594c34f7e5504ebab4ab27c00b

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1768331784-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1768331784-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 c75a9008845acf2498812c448131d71a89fc5ea872f82ac145ec5ba5606e55e9
MD5 eda9c90a74410d44b48151a0360afa92
BLAKE2b-256 7c09181b91177b332ff99203d9b35215ca9ec0cce44bca81229b75b8dcb616b5

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1768331784-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1768331784-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 4566d1fab5e42ee973a0de85f6842de3033f9b35f6dddf81a4f21a3c7d1af8fe
MD5 5b026f55216379c578feef6724737ca9
BLAKE2b-256 2c1e83243396f9f077465e97c98cc287f3ef940b469ca1367d48f0ea2b4ab83d

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1768331784-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1768331784-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c7283ed3d93220f6e5a01ff0272dd94ac82f636ca631435feecb9e4531c282ac
MD5 15eecf935d6cbfb6827ac08d8f9eb90c
BLAKE2b-256 75f8fb9610d4f4c8a51fb17e7f6888d5ea3b0680220cd999ae209a2f14003d68

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1768331784-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1768331784-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 250d62634fd26dbe62c7b7374aad08eae1d9224e6208baf66a86bc57b39b49fb
MD5 845e674d1514f53b34f8ee267d1f18c2
BLAKE2b-256 37d7898a81de05d13531ee53fa7ad1d01f92348a28222857c01a0e77bd7a47a1

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1768331784-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1768331784-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 b5e787ad935e5bc4189eb62d12c30e684a5cf9d352780a653859eade0b60eb56
MD5 22d81feb74a3c640644d34bbec246413
BLAKE2b-256 fabdbba510bc94f87339df622558fccb1334e2b705da7d65f3a874eb07362cdf

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1768331784-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1768331784-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 6564b8cea7502ec2adce9ab9b677de0dcee35596529e4bebe6bd81dcbbc6e811
MD5 619167e1c627af4a556deb3907694154
BLAKE2b-256 a482570b1642f0dde0b072909d71c281cbbd63688e1ed19ab202477341a3f4f3

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1768331784-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1768331784-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f38b7e884c68caacbf16d55a71841cb87ded2682c5f3bd9edbeac3db0138418a
MD5 740a0a89a986ccb902ec2fb54d4c17c7
BLAKE2b-256 9fdd053fd79b05738db1dcb60772cd2a75c5f120335795cfd8c5e08111e41c4f

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1768331784-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1768331784-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 732e92e8bd81dced3be2860b959fa56083aeabefb9e3d58371f517e96c350b6d
MD5 755677d398e1b0b7786bbd433e2ffa60
BLAKE2b-256 5bd6b06061b2df4328572c0b9103fc8034f7d0d728a1ae950df8e12aeed3fe57

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1768331784-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1768331784-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9dcc377f15fb9e36e60ac3bb2e9bf021e15be43a97e63b27a7f380871a12e5ed
MD5 3389e2ed9b4258a9dc39fd7817d89092
BLAKE2b-256 653bea2dcfd3561e8f6a08c1a6c62285497040b56f211e58a12e152214e36595

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1768331784-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1768331784-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 294110fc1328d8c208984ee673beb504eede5b65e50e91d5eda6a91ab7376e14
MD5 8d88f0f1bfddd0bf6e10f6ab57b629b1
BLAKE2b-256 1efa901fbb56f68fc402ab27be28f5742acbb4464408be687aaf5691ec5be014

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1768331784-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1768331784-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8d575735d570293e365da9ee5c8999e1d83dca8bad229f90ab3525dfc092400e
MD5 3495d31ce5370c8e2f594f0d03516c73
BLAKE2b-256 8d468e18313aa1d440618ccac7b4e4d0c05a02104a5c90f558f85f386fda988c

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1768331784-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1768331784-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6f49b9d1a40ef5ff1c0247e18c44800f917602edfaa4008e5eacc94aed383a62
MD5 a3473365ad964a7eaf8a34dfd4f6e0ed
BLAKE2b-256 0b5a3a0a392d29a40a26cb0d26b9c51f28d71d3a094222984760c745ef29c9ad

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1768331784-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1768331784-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e42007cf48f541b00ad8cf41f29dea57c80072f2a98ae14c7edc95782e2a70b0
MD5 ab629a5e2a176bcf3ab42d6026d3a755
BLAKE2b-256 5ba957c4b2200ef2ad80093c909c9b6233b3aa2ad4d6d92ea142710a1096e124

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1768331784-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1768331784-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 2f2c0368b4d624826821e33de5338606d8c843e8a666f468300d75902b616f52
MD5 2778d7ef5d6d1f4ef558645025e17299
BLAKE2b-256 daa3aba0aed0f4b57fcd41c98b30c5e7f6467520739a8f10e17bfee278b05610

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1768331784-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1768331784-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f060cf808f305ca5792027975990d4e36b805f0c6bcb42f2bde5fe6e2469d442
MD5 5ceac055f6e3b72a031035f393be4213
BLAKE2b-256 5ef3529df5192a4655f0a9777e3cdc32786a0228ba18e20580ae65ab6d1f621b

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1768331784-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1768331784-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 42a464734a6ad19b448ef828ed8cca96c74521069a6f2b68725e401570420e94
MD5 000a3c0fc65467554427b91dc7af00cd
BLAKE2b-256 8fb268f1feba0a20c5f6f308c4a58eaeec1c3d9666fa9d5c23fd99c9ff97185f

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1768331784-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1768331784-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fe27884cbade2ddf88a19d373d8729af73da91c423b32766d825b73843f2e099
MD5 58607afcd81872283e1653add86a4bcb
BLAKE2b-256 5b205a1572c6bd846bb563528f8b312ef71b5d4e573bf84544986c8f37c2287f

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1768331784-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1768331784-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 6b8afd79fcc52737d3a93b5d3162424a2af47683bd5e26c30d58030c9cecabfa
MD5 9ff3c442c80c75786111d6f6f28b6cac
BLAKE2b-256 07702e6ace4b41069947f147a2e8f087ba00be6e2994e66c04dfae20bddc93b0

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1768331784-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1768331784-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 10b3da1b567b364197b18b530d2b25de3fd43bd4b52ac2887a9dce5c1a2c0136
MD5 c43aad765aa76d4ec8b6d61ba6f0d03d
BLAKE2b-256 0a4dfee2a0d6ffc872952eecae9da17b8ba72dadabdd7f3c71f89050fec30416

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1768331784-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1768331784-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2939ff2be9eb088e0891feeacdcb042647d56490861003a3db4c19c8e1eefa15
MD5 b11b87e0bad4ceb7377b55a1076e2482
BLAKE2b-256 abf15a3b0f5b58e5aef5be44d7921fd7fe93853b608a43856b97fc2b93eac5e3

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1768331784-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1768331784-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3f5f8a2aa5438844f9b2eca89091c396646757f169c544b5e5e14ad54e73e02b
MD5 ed03a69ba37db28318e907fe21ff9f62
BLAKE2b-256 dc33a3ab43a77281105769d9c5a099516ee0f721d0965bca595f0f44873ad319

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