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.dev1751007257.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.dev1751007257-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.dev1751007257-cp313-cp313-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

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

Uploaded CPython 3.8macOS 10.9+ x86-64

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

Uploaded CPython 3.7mWindows x86-64

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

Uploaded CPython 3.7mWindows x86

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

Uploaded CPython 3.7mmacOS 10.9+ x86-64

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

Uploaded CPython 3.6mWindows x86-64

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

Uploaded CPython 3.6mWindows x86

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

File metadata

  • Download URL: stim-1.16.dev1751007257.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.dev1751007257.tar.gz
Algorithm Hash digest
SHA256 7846fdf18551255abd50ccd0e43fd125408faf53023167de65356446d12325f4
MD5 07307d3eff1b65221fe57cc373d9706e
BLAKE2b-256 bd022177243c650072ee13ba2960100383df8307127543f8475c71b2ca52264b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1751007257-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6d2b34c5f7bcea85e185039b5580f22b255285662e0acfa60533e4ed8a062f3b
MD5 caf211ce0da80c662a5efeb81c482f14
BLAKE2b-256 34e0822224006ecdbcd8903c4d3698dae31b0c7acfa52738254743f9195ca055

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1751007257-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3a882e2aaac2e8a487e6c06ea43740a2e16735a334315f372b85b26adceb976a
MD5 142a3668578555c96c4ebbba24fd50bb
BLAKE2b-256 98e9114fd3fb573664b87f1207a041c15fee6c0fff2ad1daaa245f95a859abdf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1751007257-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 7391344562d653efec02657a1c7a1814c0f1f7d8e6e05236c4bd4492ad753ff1
MD5 1327507ac6fffaac606ffdf887dd7576
BLAKE2b-256 143cd9823cc96aa3b91126c77ec267afc86888565aa073364b4a211bb0e66778

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1751007257-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 9ba83c23ad08b79789a2e3a7dc6c1e368ae73c92662c4502ae0478b346d412bb
MD5 d048bec94636682b564029940511a440
BLAKE2b-256 d290001b593ffaa2a4c30e83eb1a9342c57e7585f78488633cd811f571c52a4b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1751007257-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 864eb013c53d10cd9dc4a2adad4ec2641f9f6be420dc4d0ebd77f255b93f4d72
MD5 94effdf3740ddd15f2f00ecca5f1c311
BLAKE2b-256 3376b53a5e5f803269927cbf38b43b8b004a1efe4039c952d570db494b21360f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1751007257-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 87019cf084016d5fdca0bc5ba8515d54d3eccc52daf047d8d55508b403f82c82
MD5 07913015f1175455e0c94205c41d941a
BLAKE2b-256 93d97f745d1f5e06eb034f49da4125883d41d22a03cb66f69a27d75032c6c384

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1751007257-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 65a7d159ced26b2b2260a2685af110fedc772c4fb3bda3ee09e4720d67c73b00
MD5 2bfc81f26eb7a1a7f019b58c0a47b056
BLAKE2b-256 2b9b9696d5c80fc83959491f8e45560e0d3f7631c50884c5b7d1c65a46532f1a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1751007257-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 785e7f4972ff5d1088aa057c921de8068e0a02bcec607616a3e6a956311bffc9
MD5 973236bdf5d705b10493c3a221238447
BLAKE2b-256 a428e49cdbc2469f63f47eaa542dce14b6229bc6d8541e95770f9894acc5c4cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1751007257-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b65e549358c7c7f52a5b4c4baf7a745d0164c8fc300af88696ab0a00bfce9159
MD5 4dcd1b539f06bf7c7a800cf0c83ba4fe
BLAKE2b-256 d2879f6e302325833347e02101d8f76f0fa70b692033f0c5e3a165a98aad98d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1751007257-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3bf386520c3ca0203c768f6e9012e279b0b3f08dc98e9fe66dd98f1bac34d098
MD5 78dbaf52029330a47dab9da09fcc0f8a
BLAKE2b-256 930a6976218ffb182b64c4349c74310f7e8dfe20e4ecd578b7ee6962726d115a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1751007257-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c3508c00ab5b1bf531eac84e74857f7394d272953f692328790dde78f1440cd1
MD5 c3016df035da944e5172506ef4b2df35
BLAKE2b-256 43acf83e2229bbc2acd5443eecee5208329cf487481078ae76c9ff52238174dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1751007257-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 ba2b28ab750af4d3cbd8f37afd109750a70b12481d02bbd0be2c11063af55d3b
MD5 50aba42dc68172c313d27f5b931bfa1f
BLAKE2b-256 a8e51c62ce40dfbf32966ee862e411a88a02c3ce4b8e8ec4a8a9ff8ba09ed5d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1751007257-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e237caa143053b064c311e5087dabbe1797607d9aeb75ce9ce97f7571fb3d03c
MD5 c48fff0e0386edff85ef06b7846c7455
BLAKE2b-256 210e7eb8ea14f1549758e2d3e7c0ce28503228f451a611624804065228dbde9b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1751007257-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d223737506f8eb05bb3c2d0a16c05cdb2e01ec140324af2db4d379cf0413d298
MD5 e1463d12bcb3d943299bc3e42cffd957
BLAKE2b-256 6e0adc609b5fb5201ba2d5e69d6aa53fa1ddda266a6e41adec7efa8379aeae76

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1751007257-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 87916037f874f6938f2ef0d33d2537b614b6a6fe53f5349bd13b83829d2021e5
MD5 84cf2054efe28627c437243861b49915
BLAKE2b-256 75a5bf65108d8f4cf3b798f8e6de1f577a4d3819f453b7d110093e0afdf40673

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1751007257-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 639ad2a697a67d181b52204a3f4f569ef9a1d3da013ed0f0165e777bf3b5d7cf
MD5 ec200c45e999ef318202f6606f311dc5
BLAKE2b-256 4abb518076f70b6897ac3b7b92313c4864942ef357a0ad238adeb7213dbe20c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1751007257-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e8cc28764186bac379d7d6250bea6946cda8a9b9d6a0b208e6939b871cd91ab7
MD5 6e4f50b59f32296312a5dd333b5f7cab
BLAKE2b-256 cb4c32f2fef5920afc7d5398ed715dfb40389fe89bbd40f6198da4d44771ca3c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1751007257-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ba2bd8c9a92551511ddc0e2989512170c41dcf663c280790b97942f8115c9fdb
MD5 ebd64fd8af19c1cf6c4f0d50d7305177
BLAKE2b-256 00faacf08d9169da5b8cef1d574d4a2742965ad8a55a539df09326f619ccaeea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1751007257-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 555095b310af69ff88694bedbbf73d2e522ddbc09bdf0af9144f059a887e060d
MD5 af65c80f3b5770e9d32c3f743309cf78
BLAKE2b-256 f804467fb43214631d53287073ab862dd9a751a8f7eb2ce6c8f8a545894a97f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1751007257-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 5faf6fbd3051b39af435c2bbae814b355363b9e5b4f6de6e7926f4d119b82b21
MD5 e1e139eb3abd314685188d674b4568c4
BLAKE2b-256 ad5683ccef14d50f0337b929d22a3c0440b476b24bf6f4e6b031ee81875310e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1751007257-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ec6ec165de488fd40f114cdeb84e6be8edcca73a2aefdf1791a8560a2973f8df
MD5 8206b85c4291df7a2c753e19ba5d6fed
BLAKE2b-256 c79cb4f0165c04f44332a647fb14443d870ec53b73a337451b982a59b63c9c79

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1751007257-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 040b35dc1ab8b1484bbf5d3554b9bdee08d9d4a6d043658995b389103e5a4b45
MD5 37c7bb17b25ab4b10fe3aa2e650e7298
BLAKE2b-256 ca48afd75f3196830843fcbd33dfb7a5d7a3a7b726e1870b7d63bca054e14254

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1751007257-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8e6ebaed0e2608cec15837e1737eb0df9fa5d131d10f59c9501cfc145bf55be0
MD5 2b8acfc7b628b3d93e0a4f4d7c902b53
BLAKE2b-256 a9d521b515f7783447de412b2d9f433104bddbc8d15e8e2caa2a7297ed4e39a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1751007257-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 cfd70367b26ce30ee1d9782a3113e42e1f2f96a981511085ba6c07950a6e96ad
MD5 3f903af81357cd27dfa1d483f66b9146
BLAKE2b-256 0e727f9410ad87bbae774f4e517cd483643ba277dca2ba9d245e1d3fb19b2201

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1751007257-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 5d7a10731b682839a5773833a065d1dcc94c1a0b2f4915f1816000611f24c5a6
MD5 2b612c7756f7fa654ed6f882ab8cb3a9
BLAKE2b-256 a538b0d7b77591034245dfe02b8e30c6be806582445aa472624b2dbaadffb2fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1751007257-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0761edc69c401fc10915eb6b32c4462c7f61cc7d0834903b6e4206bbb779f676
MD5 5f93723202e29e0bce638b1f09d0e1dd
BLAKE2b-256 024dacde481c859145806a241d5ca0a740ab20d3144ae998b11e5848ab87ce16

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1751007257-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a1d82fad6652afdd6ef0a45bf10023c80db0b4f3e1fd24920882477be5392eb8
MD5 20cc43c96e5a666ac1489949bf0220e2
BLAKE2b-256 8eda093c9bd5ac3c5191d633d217f42059d7f75844f9c50d87080a2e73c93171

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1751007257-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6f8909d472d89e276295c6f8d552a31846774eac90355baf09ed41e88e50a63a
MD5 c0558f1bda1fe41fd9b99c78f8361d74
BLAKE2b-256 f8f8dd07660a3641c332be195bb4c5f50bac296bd8b1046aeee6271cedfaca14

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1751007257-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 6535a904ac3334e17d135bd4243681a41ee568724eb3cb085ef35058669360e3
MD5 d7ec80b7360f605d3585bba02018ad53
BLAKE2b-256 5861b6957169eeb834f84a4b77e962742380d7f3637d9dbc032ba4efeb33a08f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1751007257-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 e3c98438175db3e3723ae3b9bac3cf0887f07156387b0c252db6686e4dbe8f89
MD5 14266010dde11198ffe986395d2e8da1
BLAKE2b-256 39051961c096993b845f1ba2a1c97f0100716209f59de6cdb19864775b9b8194

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1751007257-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3670e9cdcd0a3300e683989196ee5634f6851d5e30dbb3515017cbe650975805
MD5 0a5ed4bf5c6a29172cfdd2dfe09fc9cf
BLAKE2b-256 af693f2f04f9c9f2ef3bac7ecfb399df500eb3f84a455aa071692a3e8e1b6f70

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1751007257-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 914a9d540a721dd9b9aa10f92a68654827d40fc63b6884ae26cbaa914bbb9e2f
MD5 0e58ce7c8901a9095a6f4435f3e06073
BLAKE2b-256 c0314195cbf141c42c22b6ab19ccb17e46988409c72b5a06afa16e2bfe0001aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1751007257-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4cc94610eae81da575f63d2da3229041f1c063fb63a8cebd0d4f4168e06c0058
MD5 29a24460d4339ad07eca9fd8dce0d0ad
BLAKE2b-256 dd80b882297f8fae8556eaf5b6bbbeed24c6e1ac1c8faf44b21634a7b81ed286

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