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.dev1751065005.tar.gz (854.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.16.dev1751065005-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

stim-1.16.dev1751065005-cp313-cp313-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

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

Uploaded CPython 3.12Windows x86-64

stim-1.16.dev1751065005-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

stim-1.16.dev1751065005-cp312-cp312-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows x86-64

stim-1.16.dev1751065005-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

stim-1.16.dev1751065005-cp310-cp310-win_amd64.whl (2.7 MB view details)

Uploaded CPython 3.10Windows x86-64

stim-1.16.dev1751065005-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

stim-1.16.dev1751065005-cp39-cp39-win_amd64.whl (2.7 MB view details)

Uploaded CPython 3.9Windows x86-64

stim-1.16.dev1751065005-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

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

Uploaded CPython 3.8Windows x86-64

stim-1.16.dev1751065005-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

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

Uploaded CPython 3.8macOS 10.9+ x86-64

stim-1.16.dev1751065005-cp37-cp37m-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.7mWindows x86-64

stim-1.16.dev1751065005-cp37-cp37m-win32.whl (2.4 MB view details)

Uploaded CPython 3.7mWindows x86

stim-1.16.dev1751065005-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.16.dev1751065005-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (5.2 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ i686

stim-1.16.dev1751065005-cp37-cp37m-macosx_10_9_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

stim-1.16.dev1751065005-cp36-cp36m-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.6mWindows x86-64

stim-1.16.dev1751065005-cp36-cp36m-win32.whl (2.4 MB view details)

Uploaded CPython 3.6mWindows x86

stim-1.16.dev1751065005-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.16.dev1751065005-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl (5.2 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ i686

stim-1.16.dev1751065005-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.16.dev1751065005.tar.gz.

File metadata

  • Download URL: stim-1.16.dev1751065005.tar.gz
  • Upload date:
  • Size: 854.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.16.dev1751065005.tar.gz
Algorithm Hash digest
SHA256 ed8fa5b8932fb9d9c447b3fc44f31c96232749224b2edda0c4165b25f31ef36c
MD5 29630c26251642a6175663a412c65855
BLAKE2b-256 f50e36aea4ce5ebe778e75ad5394c48fe71e91c3280da3129081180a8b7667df

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1751065005-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1751065005-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6579ee692aca346dba31f3d5712b9b036f922d17a8ddcf049019773dda97dbf7
MD5 1984ac1ac7f8cde529dc111451448313
BLAKE2b-256 8212d418480d25246c0116a76fd5c7d9f446e6af38b62f6623f7b831c1e597a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1751065005-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 62eda38969fe4e4cf33c808f2694ac63e0fb1625b08e45fec83b6aa0cbe9ebf5
MD5 30b94ed296b0f2ccf8cd217ea913fd38
BLAKE2b-256 4d8d74aa64a8afa0f27eab3c469682327d37f3a535bf410145b10c40add71e9b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1751065005-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 52f335ce0daabd3cc13655b2fa0dc16a2ebc38e5d2de3bc5a0c5fc8553fd1660
MD5 9be8a7b2bcd12f3ae33d0cc282619c9b
BLAKE2b-256 1cfc57db8d485aee681613bf68ac92d1019d65edc8e3bb15127f64d381c77f63

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1751065005-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 6132a5dfce3b11135379f1287996c5ca4d675c9381b72685dfebd51741b09172
MD5 c654c79cb59ab905f25987b7bce4bd1e
BLAKE2b-256 347e0136390d6ad709d9532e381790556a0ff50f6e7efb74e1d427f7badc1e01

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1751065005-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1751065005-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 adf409243bac6b8a69de0799d10e4554f92c6e345388025c1b3d75aaeb7f44af
MD5 c7f859aaaaa973193f21de4e00266ea0
BLAKE2b-256 a3b0f021dfdb5400d3f3f943d9dcec9de5a16280d634492864385d2bf71957a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1751065005-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 77c3fedaceea85a53663eef8a6706b02cd5c0b387388164f144d9dab08447eb9
MD5 fe49ff1f180ed4fe219e98197820e810
BLAKE2b-256 7137f328157120368e86af2a4e0866ed8cad446e3421f3d5b1ce63948a382618

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1751065005-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 cd3a5c87a5b7bc569f192b67e4792ee4e0fb252f50e5862c29ca8bc8fcf6e8f5
MD5 bbcded67daa2fb0253b391916ad3e0bc
BLAKE2b-256 51a5717565c8043a61cd461b7caa816f45b367c6f3f45022ba68423c2eaf8652

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1751065005-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 cec534db9afb6e38a68fd099adbd8c410367574e78299d8166eab87e79e14200
MD5 04243fece8a5aec3c079b1fa817eb928
BLAKE2b-256 82ea8d3f4bd63f0ebd082aaa9f7c02198a61a3ed212783e96e98fa0dde47fc94

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1751065005-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1751065005-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 01919610f17b7548533d493cdecc4309dd719c17471e7c721ec7f2f0b0b8c89c
MD5 4b1ca714c41effaaffd1f425ecb5ed97
BLAKE2b-256 1ebfb63100f71de64e86e6f89c932ebb3cb42c94482b3cc859737a72e6013836

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1751065005-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 51d777dac60cd5f731102a1e6daf2b58b1f3df8866564d71247a6fead4cfcefa
MD5 01e3ebd60fb0432da2b144c84a1889a6
BLAKE2b-256 b365301aaebd314c89bc88606958607dbc7429c3424c175068837c8c4c06bd63

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1751065005-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 06e944ead863ed51ec2db83d14574539d6ddd8202423bb5cdbda6d4e0aa039c4
MD5 882e4f738345d771325bbd1b85922535
BLAKE2b-256 3fa8031a7f391d2e9750b769e9f763d7369bff6809a74d1c9f532c51d0038a8a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1751065005-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 627e38f3c69fda436e084aa2117cd81fd7700638f60ef1ce5a7e462fd6004373
MD5 9bf6dc39ef38c45831053ebe4ac03a19
BLAKE2b-256 35cb36ca34d9be3ede192c4a5c996f6be9cc33d837aaa664402183f31921f454

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1751065005-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1751065005-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 07d7ad5ca0994fa77168b56104bb0a5dc08325d2ab3f4298cfcbb356ee326612
MD5 d5749303a68e063c7255afebdc79d54f
BLAKE2b-256 e91e197cc0d4761222996ec3da5c31987285654519f6b302669f4219eebd32d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1751065005-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b81eb941fc4aaf885d028a0e4fd183454886ae82a5dcd0d95009d82579bd36c7
MD5 e4b48e09e756de6f218a4ccba02aa89c
BLAKE2b-256 5e61b00a091f42d021ea458a14b134b4e24cfcae6a122f76e3f04904445b150c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1751065005-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 27f5f82e0f3a5bf6eff335dbab979042f246b34649f87316374fcb22cbc34729
MD5 8be07aceb48d6bd182876044c478a3bc
BLAKE2b-256 ee91d06b28e55fe6cced03b1e808f863eae9bc24c62e7d809eaa05689fd7bf4d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1751065005-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 b32ebc301d5143cdf0e3f284fc405f0eccb4c6d7a5d76a00234985b894431f02
MD5 2219c09e1758fad6e0ba84d45ce29067
BLAKE2b-256 33b9b4c8e5c17c1d2be881ad830c6b58c8c0ef354d0370e803a3bad149a7ef31

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1751065005-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1751065005-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c0a052ce84ea05524faea92f9a6f1c4f2fc5e7b3d90493e5e6b4eae68eed2cdd
MD5 77089ec1db56179a521f74a7842056a2
BLAKE2b-256 462b2aedd4adab3edc8309f4ea5f17fe1a7d415201d1358518c3d99d720a5946

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1751065005-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1e42d3fd6db80f06481a7f3b275b0827572538d1ae1e8e790e78bb499fae0bd1
MD5 05773d79df0ba3ea2ff1494b53e84f56
BLAKE2b-256 c5fdafcc039536329d1bc0b367433586c3c7fc78e43460aa7d9f7aac508ffa69

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1751065005-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f6a07140853eb722a561d7c3f140db9006c282cdac9bda45cd112545bbecbdbe
MD5 da3ca9871fe12e81a16c1503967f3dd0
BLAKE2b-256 c67dde8fd3b5f579c56380776867735c710b599a230719c75074550d3f693c2f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1751065005-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 298e71bc9a4912f7e3ff0eb049cbc733a08459ac83cc7f5b77579cf570d8fbe2
MD5 81d6cd79a1e6d10ff3f9fd51464f2998
BLAKE2b-256 32b6c88303f97b0eeb93b2f9b91e254d6e24207d13b5f13c261b56878fd8d5aa

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1751065005-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1751065005-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9b1d2f13b870522abb8881cc6da842fbc45e458dd41f1508628534572e1c821c
MD5 76ef6f5ab085e91cb4f6bf552abefce5
BLAKE2b-256 46a9cb59b3c66a618033833070e25bdaded4b4283b1e6f4829b2821fc88d3521

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1751065005-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6fe88a977d4492bb2e328d155724d517a4bb51f1a35942278cb25a9e726df923
MD5 1918653bd7a1032190a7c5da8156e7cc
BLAKE2b-256 e6e32d482b4aead755dc0bb4692fb8bdac91f15dfb8e1c27b5a3263787dfbefe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1751065005-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 314d39b9f1a61448bce28d95364bad86094602a4473aff6be2fee1527f3a6e4c
MD5 43c57ed2fd89faa692515399b82dfef2
BLAKE2b-256 abe6f05758f15fd82b28dbc6988ead1a8547dc3bab8acd86360d56253d71c94c

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1751065005-cp37-cp37m-win_amd64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1751065005-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 0b85e82c8ace993d1c313c736ebaf8c1f41f611ecbf85c86507cf30d8ee77eed
MD5 b5965598397a733ed39e8e62047f64ca
BLAKE2b-256 64d3800c23feaa8f86d4117a5e2016d9964b881a97a0a120b0035e380e4dec6d

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1751065005-cp37-cp37m-win32.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1751065005-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 e9bb991dd7d8b114f5a2930721e06fdb0805231593b1bb5bfc820ccfb70231e8
MD5 51294279a766e73450af0026a154e368
BLAKE2b-256 ad71d9f6d8bb6684048d6a86c48ad705b7955c155a4533c1bd31b3940d203726

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1751065005-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1751065005-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 92ce387833fa08db647ba87635bd4ab8f10311fa878d8f137d46b7186909219b
MD5 ff2d2db41323b6c0ab03dfde5897a077
BLAKE2b-256 1f62c288907bfb4bd89e0f2e789ea4b4518112c2e4b462759aa78bd36df171d2

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1751065005-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1751065005-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a51f5ab29c3dacbed69b316d6cd201373d428c56936f6071d816ee7adca631f3
MD5 4edae12bba925227e561f037a2b46fec
BLAKE2b-256 963d8e4763fd8a4775fd2af8f76a8d71886726c44a4212c27bc4dae5ad20c008

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1751065005-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1751065005-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d18a8a4889d79d64ba2edfa448238834e9f2d5dbe9874c1cfe61925b6a932c99
MD5 39dba40198086ca18b1d96cc732682d0
BLAKE2b-256 add4a1afdab1c1d92c71ebf0c2d20d372b7019d73394eebc2c2669cf5eba6bb9

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1751065005-cp36-cp36m-win_amd64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1751065005-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 910b2fc7646becc47a275d7a0c0e519608e894338f6f7ea8dcd3b5b47428530d
MD5 852b47e3bfcba10881b906e4f779bf3a
BLAKE2b-256 c64972aac93d914baf7495d4e73a4ae0ca1a56c3ec86b5ef2d237ed972a498c7

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1751065005-cp36-cp36m-win32.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1751065005-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 d997df09738eab9c0525a51ed6d1f1e3077a4be0bc8ec6356c8c4b5473bde104
MD5 bb90a78296ed4652f8ba1705a0425f8b
BLAKE2b-256 8800df0eeb215fc476dae40610a5467ebb07b43f7111baea33003f1a9599f161

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1751065005-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1751065005-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 362618330f24323895835c62ed604da5e0861f525493a46e47ac077c3cd96792
MD5 3b1948003c525bf43b912eac6223c302
BLAKE2b-256 0eeec53316922d810ccaf716ec58c3913b8377078ad48de7d1a940dc8fb29c43

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1751065005-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1751065005-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2df3011928f28749976ccca0b4f67754614d09a240c53965de6eb42a4f08d595
MD5 9e81d85e36edddc0f1d322796c58346c
BLAKE2b-256 7e5f56cc269aeeed3da0017dd3f980db4ad97480e694a744b59ab2fd11dfc500

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1751065005-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1751065005-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 19d7d680edd4da6680d3ce3f6744e0a3b5033713f1dd1baf677726a8bc013911
MD5 61ac8e7f1cf504ad1ea47ae3c97d6b14
BLAKE2b-256 6a5e588242dc298c993d6edf2d9f1a70c0810e667d30da2dc753593cce825f7b

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