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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

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

Uploaded CPython 3.8macOS 10.9+ x86-64

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

Uploaded CPython 3.7mWindows x86-64

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

Uploaded CPython 3.7mWindows x86

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

Uploaded CPython 3.7mmacOS 10.9+ x86-64

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

Uploaded CPython 3.6mWindows x86-64

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

Uploaded CPython 3.6mWindows x86

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

File metadata

  • Download URL: stim-1.15.dev1745405475.tar.gz
  • Upload date:
  • Size: 850.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.15.dev1745405475.tar.gz
Algorithm Hash digest
SHA256 5a0d0f072abc0c1d90963fba05bac18ea714eb3f7f6682b6ed6051c566a2b5ab
MD5 059ab54508b6f93f62c573dd81b4a2a7
BLAKE2b-256 3eb9bba4f76fbcd5b692e2283ef4a6763f30e630bb883906e06d5003391e97eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745405475-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fa08fdf681536c1cc15f540c1633d67432d6482e032e697db18e114ca101f281
MD5 64cebb2b108e3350faaa51da248a3447
BLAKE2b-256 a6407ec39a7b7d005fe7a68e7d4d00d1129ade2f5c5f78f97852721fd2a87c46

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745405475-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 75815123c0bed4adb3e38be70bebc9f95bfef60f79e9013bd452317f4822db7b
MD5 6f4135488247c355a8d8baa9d53802a9
BLAKE2b-256 4cdefc1d5df466287504287d694fc9413907c538a3a6ba10b69d605b8f5f0b1b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745405475-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 c056232fda31e43712b71d1eb7937c171d5a6eabc2f1b5713145ee25685995bc
MD5 cdbebc79d994fe4824a162fceec806b1
BLAKE2b-256 f5e84a0f8dd0ffad9685a3fcb85f58efc29db2ecaf79b66c5fec103d28069b3d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745405475-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e550a52584673ec26547d9f78916ff47a166211b91785f03b92cdb2618d8194e
MD5 9a80c1679fafb9b030018ab6578e44dc
BLAKE2b-256 88a2800b8dda4990fa014102a4e9eb37fe78aed82658188bc01f28006b48ded8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745405475-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 079094084d89f7237496975429928edc0990883b7ce92bc908d4673ecc51bda8
MD5 7d2a955fe2a6d0b1e2c4c5fb9268acff
BLAKE2b-256 c33426161dac186f8a5468d4a2c4bdd66796652d6509796a4fbdf108bd71dd90

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745405475-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fea8539bce4f233712cc02aa142b82eea359e83997ed45bbad86ff128a1fa1f8
MD5 b241c2795fd1917874496f5f7f2be997
BLAKE2b-256 a32da16192c750c7f3cefab3ce620de8ecb129395694bf1624f364c5dd06b632

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745405475-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 915e598a55ee1aa4b906ce361379f1b4b8b2a6ce96ccf63e8d39d485e7fe1f8b
MD5 363e55ed83040642290f03ae02dd1b74
BLAKE2b-256 dceaf6e1e1a3b6b09df654e302b15890b16560df23805bb89175dbc692ee5122

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745405475-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 978b8deabbb350f36f2be0960692b8c353e472c39185c2de804fd1aba226b57a
MD5 0371912b785da6909203931d88462f28
BLAKE2b-256 7ece438c8666bb3c2547f988eae452fec793559d178c28abc790ab415b518015

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745405475-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f246eff09a0d8055ace154e73f2b743f7c061f2120f0fd95775676a839d2c525
MD5 b19e95590f3cee53487bfc37f9bcc42d
BLAKE2b-256 1dc21eea8758cdc25e80d6510b0b51c91537e4a2bb08894739641cb7fe1507bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745405475-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3e8e61a27c221fa54c18fb72c8d9d8baad57d2af927f9a7a11ce9b838acb5ebb
MD5 1598e1b2ffad8fd975806492c7b9fe27
BLAKE2b-256 42ecf6ed4f29a7251f857542848174ad09adc5e52736467fd9b26a3a273b74ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745405475-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4c556177c0c3b891dc103a31c05fbc8cd14e44eee88b6847a7c898d57d14c5d0
MD5 fbb999eb203331ef0bd17e81072539a9
BLAKE2b-256 313a69eab0715697ee4f60d821b68150f42f289dd69975d85ce044f27d5986c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745405475-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 df91eb75eba03423032e3c0789173a38657d901b2209fb29cbfd7ac2ae27e96e
MD5 cebb4f1908c01bbd8a8dfb5c689d7938
BLAKE2b-256 cb4ec5a54cd308dcbf87ddec06a43edae2172732159024200ffe7e81aad222f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745405475-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f7bf269b9e957ccfed66eba0b37c4434aa59319af91d7b30af758df310b3903f
MD5 7eba81095a6a21bfc40256283e758daf
BLAKE2b-256 2134cba57504eed3731b8479dfd3eb7b9f6cd14f17e23431581dad1022de8345

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745405475-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6c212b9feabd230ca008aa65b2687b4c8968df8d125b73ec6b9f40d77ae12682
MD5 0b5b670e6d0827184f96177c98272430
BLAKE2b-256 efe3290bc83ea7e8424aec032872a623b77ed1a61699e7e80c0f656bfb167895

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745405475-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 638279b4f412f49f4e7be5b49e40cbf0a2e359b58d395bb603165ffae0c85443
MD5 779d248790d962e148e4635bf3733be5
BLAKE2b-256 e5812550e0dbfe2579e9360f0375e41c289e3a9e586d5d3915a83b3a6d8c687a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745405475-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 b17a288133d590549199b42ff52a3ea336df858c425fd34d8fb93d8fbc8de251
MD5 0a1d335ae8f969e671bf70dc2f2cdcc2
BLAKE2b-256 2ec7912483be6a12be3674fe23f04b428e97de6b5a1c56f37a7fc472ad8c598e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745405475-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b2667da749cb03ec51a07e44271c4bcd1110fdb91c42742e76196a60aa12bedc
MD5 96caaca355b162ef45eaa56f2c41149b
BLAKE2b-256 b04a9bb92e9a6aaf234c703f2a8ea35a14620aa78d2c0ac7405a74169cbc9450

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745405475-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b5dc57ef67bf4cb638eb1b560bd33e21738b05a3b2d04a570e92eab540c16d96
MD5 7f03e53aeece17cb6de5288c9bdaa387
BLAKE2b-256 3855be9d5d46fe066a9a461a7668dcb5bb4865747f8be48ba78a827de813b1b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745405475-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0b166532ae4e69e467daf11df989401c80be977ee9a72c91aa512db666c3e7e3
MD5 16efa3c939cb562baf3e14f36f898685
BLAKE2b-256 ddf0d497b96a638d58ffc15532c75c6d957f7cdbfb969b3026184a062b36047d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745405475-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 5119165417b8fec99609f12c887c27d8aef9c43c7c7bdaee945aac3ef3d3a354
MD5 2d391c097ae56d95a318f2b28d490ccd
BLAKE2b-256 2804316d58d7010977fa7035a981e35230e5d384143960d776dce8fc0aabfbb7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745405475-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b2dcbb6b1108eb849940163f003d8a5b09aae82db626cabb8232251f01f14238
MD5 ecd9dc3424525494e42fbd424e912bbb
BLAKE2b-256 33c458ec1a0cc898ea035a35c08216597b85fb5e058083153ea844fa8b61ae69

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745405475-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 608f920d97d596de748e96388052f7c8a86ae0fc36b5d6c434253950bb59b498
MD5 46f3a3de5113deef5dac4dab0315bd1e
BLAKE2b-256 d7aff48eecceabcf98145859670946181553aa557d730a6f9607c13d6cc27c0c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745405475-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 21b035a1d0d12dac916a666630c8b96fb1b274e52822c1dd48f7329caa2fcfe6
MD5 1ffdbcf3503d0c0be161be8f3f8ce06f
BLAKE2b-256 eb77d13c6fedbb0b3ee0b681781b4422cdd0e4606ac177b0f919e4accc344c70

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745405475-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 8efa0635284915c94852281c7ef51f159afa7d415b5d9568d200b0f22a3935cc
MD5 7e380324d903c8fafa2258e4b203ef19
BLAKE2b-256 60be80fe6647b78f62fade538e4cd4ce5eecb09dfe2de769bec7356fc3450d53

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745405475-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 215b98369391ca562975457281151616dff3f4302e3383826371c25494dfe208
MD5 14839510f065eacf119cc5362dedcee7
BLAKE2b-256 dba79d75874ba262eff6fb27e35e2f44971e231328ef49e196cdd12339abd335

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745405475-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 629fe2599b9340e00d633cda03be7815bca60ad6a056522149ae49cc1cf06d5b
MD5 e3550b9dc72539f46948f65dfc9595c0
BLAKE2b-256 7186a3c25ed32b58d1bd078a520923d6f6f4f815e2595a0bfab9ab542d6c3ee7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745405475-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d07d727ac9b4b81af9106adfd62acd0c8e38e52ffecdb794fb7df3e715afb91a
MD5 38a687faa2d72876afb204524d507b5c
BLAKE2b-256 fac5ac10d4cead45c2e360394b1d3f7e6d0129412d3a60174a607fe97b99f359

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745405475-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 de436c5e329ac7796977740ac3ade477e320a5893fb7cb87c76ef0dd52b6fc6d
MD5 59b71c94fc7b31de07aa4cc0ebbae90c
BLAKE2b-256 0fe93784e52c48ae126aec598c07e1970470971d053ac498178939f18ca691cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745405475-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 6bac0743c310c700f9fdee6799c2711de6d0eaad8ab027c4fc74f2a989c19fa8
MD5 0aefca6af626cd2fc7eb25d07dcb17c0
BLAKE2b-256 36baf1bf39529b96ffc25a4dcd62034bc8c3b8444a865eb5ca3acb91e1966ea8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745405475-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 066172cf4ea4bc2a3df1a3d970cd4904614fbba63ddbb85bc76d832b1867b2fd
MD5 2e589d34101394d2b557bcd978d14bf6
BLAKE2b-256 5a8c388da6cfdaa83b20c12be7433c1c8f6e198b1352c5c462be0c55bf8f5ccb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745405475-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2bc89fd4c00fee82f7f80cc2b105501daf21b938b3d27a861a57f9231346ddeb
MD5 9f389df6396f4d2dbfa379e7f570bb87
BLAKE2b-256 7b1d72b6fac4bb4624f43e13b4a941935a345a01d1731cb35e0ab502bac96589

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745405475-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 589aa614befefabb9e1ef9a29852a70a774d901783da7cc88fad433fd4e5b19c
MD5 a1ef5497e0231ed309a2abb6d01134de
BLAKE2b-256 30a07d4f34d87d67b9a5bd9b39a8a64e4c3d7a9b8cbc94b60c045b9f3b03c0ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745405475-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 22509af9a7ffbe2ce38629a51519da92f703ff466acabd29c96605bff5a15a09
MD5 06373266ca1f93dab04c78efcb062394
BLAKE2b-256 0b44fa6378b75eb11d46892c7684d8b58a9a805962b91a1519dfc0309274abe3

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