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.dev1743897268.tar.gz (843.2 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.dev1743897268-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

stim-1.15.dev1743897268-cp313-cp313-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

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

Uploaded CPython 3.12Windows x86-64

stim-1.15.dev1743897268-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

stim-1.15.dev1743897268-cp312-cp312-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows x86-64

stim-1.15.dev1743897268-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

stim-1.15.dev1743897268-cp311-cp311-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows x86-64

stim-1.15.dev1743897268-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

stim-1.15.dev1743897268-cp310-cp310-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows x86-64

stim-1.15.dev1743897268-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

stim-1.15.dev1743897268-cp39-cp39-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

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

Uploaded CPython 3.8Windows x86-64

stim-1.15.dev1743897268-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

stim-1.15.dev1743897268-cp38-cp38-macosx_11_0_arm64.whl (3.5 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

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

Uploaded CPython 3.8macOS 10.9+ x86-64

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

Uploaded CPython 3.7mWindows x86-64

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

Uploaded CPython 3.7mWindows x86

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

Uploaded CPython 3.7mmacOS 10.9+ x86-64

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

Uploaded CPython 3.6mWindows x86-64

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

Uploaded CPython 3.6mWindows x86

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

File metadata

  • Download URL: stim-1.15.dev1743897268.tar.gz
  • Upload date:
  • Size: 843.2 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.dev1743897268.tar.gz
Algorithm Hash digest
SHA256 9244df2abe98ec17bffbe2c03668ccbf83896b539550d4b107e2dc06e2c1c8ce
MD5 57eec00bc0f453f7347155e7d054c082
BLAKE2b-256 24e074eac2d0d670324312902dea5b245f0a9dbb408efa558f68f9740793b454

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743897268-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 528191eaf599bc2ac9ed460cdb1fadeee81956ac88009efa35a150de442d3312
MD5 de3e7f78007b140573c184a393a6de72
BLAKE2b-256 530692fcd3698ea209ab41f7b022723ae0d066bd7fe281479548188afc374f17

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743897268-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 83f5023ed452e5a4bf91a6dc9afed13ed97479aa46042a2bec1e583fc29e81b3
MD5 a68618e20ab404902ca24d7ee7f2e299
BLAKE2b-256 ab75c55eb4c4ffec0f82ae68ec323de662495dc45136aced3df1e0152882c06b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743897268-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 c8a30a1976af9b39ca4e45ad4f2667e8cf3641b11ccb2ed08e825067411fd6b6
MD5 8dbecf4c023a8e6aa547e3a8e60f1ca8
BLAKE2b-256 af72c3cfc9210a48d681a052cffa8ba476e3dd05130f3a1e4b19691184d6e131

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743897268-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 4a7876c9d29e0fc339859a80b69633fde51a1ec16aef740248a80815b1a00fb3
MD5 30a2e27c021b4f014d866a8b68287302
BLAKE2b-256 cd9af27d3441de28e02edaa17d35cc03e05ebc9dcebca19c53be9870ce4029ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743897268-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 17c476169f669dfd967b4d312a48ad7f23998fa07fc96acb5a3b0f5a087d6649
MD5 b72cf459e2bc06cf12cd18009bb09017
BLAKE2b-256 15d74357d81551eb9a46e3e2a125635ddeb5e615cf35ea535851ebb17e91d836

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743897268-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1dcb25412f1e7e053969c079ae18e4b06bc6ae706024a14ed32f567f28f93be8
MD5 12d0326017720869037fc851fa6a0c70
BLAKE2b-256 7197aec9dacd048f52b26b524eb30466005bb86fc41c39d33653c2b461adee9f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743897268-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 436122019dd173147321d683dbcf21fc35581a8462b9b8369aad0afe26812065
MD5 77ba83afd183ed83a798875857e76362
BLAKE2b-256 0cc156cb2b1ca9315c3529ee9f1e58871f21d59c4e2a2684262ad4ce07c7a7d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743897268-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 f3009c4bcf2a6b3b72a3068d53932f20b1a2b7e3c41d8893bd6198abf614dc58
MD5 055028604f0db8e0f35fdefd799cb185
BLAKE2b-256 c49a6d4a61d1627e3ff060d128f230a880a66008d4dd9711434e053958a28021

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743897268-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 37456c41603439c2f5dcc97f0dc9c59cf102b95afd5bf9efd51931c8550e9f8d
MD5 ed9c9b77dbc3f3c5b41d9772efe2db47
BLAKE2b-256 5a624ac5cad8318de7ab225d683a180b2cf9b239682f052f6a76b0d745143cb5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743897268-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0e77d2cf1b88379d655e8fd09401272b17baca5bfbe447620bded89ea24c8545
MD5 eb526e4e09b4fc6ce07e0d01eda53c07
BLAKE2b-256 24a5d69450ec3f234108a7f62c55f6c41eb943b0725343a6c6550ebba9092918

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743897268-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b63d28fe2b43c2e768033f5ada1ad7e8f8b1a0d4cdf92c84ccfb7b80fcf8acf5
MD5 6c22bc2d27e1d5cbdb31d9803284cf60
BLAKE2b-256 0481998f2f1ca268087b1ea71329d9191ca7c15f9b2328ebf24b5671cc933a19

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743897268-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f6fdbb97a247ca0d1bf638460e88ae1a353a71834be27a9e3d42df0a4cffa1ad
MD5 32f7e3deac8f86aee64259c32885da47
BLAKE2b-256 62a743aa12b5d149a416a8fc2ab19cd827333eb3a54cad1a8248094419e2ff8a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743897268-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5e48b4604894f81c54a33e3ba365bbcee5b74cb1c84611d9197a5961f0b700c3
MD5 f997996363a5af081334ef947f69cbcf
BLAKE2b-256 01eb1d07b3e5e4c730657510aed49aad953f301d7785f67edb284536deb35205

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743897268-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0bf28ca92873114b8df9b63f3485449a222662ad59d3105be7d3c4e6faa396c6
MD5 f58c6741df2c35e38f026a9cd5272a3a
BLAKE2b-256 371ca46b5d00c8109267dd7d48ee033e51816372d03ac3aa6cba373c91b14616

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743897268-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f27ed017e262a165144e3e121b0003556d98d0844e879d14980f8c340b1b56b0
MD5 d5d36ba20a9c690bf4ef08a456d3b8bf
BLAKE2b-256 057fb97c11e66c17f9b9776c0f2ee6ad32aa4b6b80e4cf9997c3b9bdca30f760

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743897268-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 d9e2e660062e8092696fdef9c115b9a68c9c76e00603a376ad83ef8288710f26
MD5 3fd9330ab9b72076733e5413ce9e15b3
BLAKE2b-256 2f4481cdf952e4d67667684cf799b312f84be0f1b96b5bd309bf65f75475f5ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743897268-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 43d78bdf60e30470cd2fffd69ee94a7925896d394a47f9e9baca442fbc521513
MD5 9329d5fb1cc4185ebba2073009d8bed0
BLAKE2b-256 a24c6bf18e166e1f5b96b80685f35eba4d45fc2602b1c8d3766272867a419aa5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743897268-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ee4591ebfcd3dfa69236345b0d64fa357a8fe0548f16e2544400b17782e20dcb
MD5 436617984c104b1a8d7a215314f3ee47
BLAKE2b-256 1c2674499e6d9b8142dff2bdc2e8b24d79128edacf7e1713240c658c4c11b861

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743897268-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 dabbd6d9a6335e1a8e443a5fecd3da608019c08ace6770d789917d3c078ba1d6
MD5 924997f75358be1220a911a9f598f4fc
BLAKE2b-256 47bb67fe5d9019cdbbb41da41c05627279fba7daf1c74fec6fd6756215178bcf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743897268-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 138fb5c302af3ddf111ae612a02d8ae3194fc0c9c743c3932f3bc10c1a0a4669
MD5 4761e99a60ebe95a39644e666fce472c
BLAKE2b-256 45160bef8bf1a68053e0bdf3e590abe8bf7cbdb2a901d9e1a0430a179853613a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743897268-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cc72b39bb03fd364c8f8e2baf28b1de0e4a6970cdd230dc95e677741a4367b2b
MD5 405463f8117d6826849e8e7202cf0b97
BLAKE2b-256 e9d1887da2d3d6da14f388d3957670d58cf4e4a700be6241b4185729352eb4e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743897268-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7e8f671a68ebf989db030e1f8c5be96477847fb212d15e61206b447a68eaf068
MD5 6ff87e61259a90241176100e6897cc2d
BLAKE2b-256 5deba4a76b26f978f19fdcbe1a5a0881a997ea9441a2a248f80fc2a710d6176e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743897268-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 db12c1768edee024cba9e06473dd6f504b6618b1a76780215d24f8eb9ad09c78
MD5 c4567356c08ca228ef02f117e0b6d976
BLAKE2b-256 51fc03c13e34037c654704a499c841554e42ad09f363393518e8435a480d6ea9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743897268-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 0e7c1623b425a4c999115ebad45d2b29ca6c22e27eae96648fe64f67766dece4
MD5 613eb02b9e8465e3611c048ed1230775
BLAKE2b-256 b0a511f72d1c6a87ba270ba390ed9b17d3d25b997ac6c1601fe9eadd6f9c02ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743897268-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 d73e9c9cec97af8d8ab44976967ac879bec341f1b0609e5e383f430a5d91c3d5
MD5 4856b1a5c034983636fc4e0181c1083a
BLAKE2b-256 8668f0efbfac3304bbf055f2fa2c0f97b03d1ef9a435405f0ec526ea9a4315da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743897268-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d8f4c0643e3975e7f9ea73169d66e7ac9f3b64590faa22137d13963433c4473b
MD5 a4f8fd44955f1ff08653b3cb8858d3a2
BLAKE2b-256 08758cf10fae2e583f85b5b9362f71617f28dc65f92028f3ad251f31baf257a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743897268-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 16ee442ee6d579f8d923aa4e4bbd709b62d36d1961ca65f4fe052fc89cef80ff
MD5 27169eb2a74b8410fa059a682e195e2b
BLAKE2b-256 02678066f1cc04f248a692192e1feb846f91824425f66c765f360c18dd9bfb59

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743897268-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a267667caace853ec1a8ca11f073e655ba0f57ad4ffaec06b5f942b624de35a9
MD5 c0273110011b9fffc4fde0ca19ca4495
BLAKE2b-256 4d4e3a9bf95dedd86b0ec406624de47631482572a2c4558f8bca652ed345151a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743897268-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 b01e92a69377b937020afb2ae2bf64826ef94bb017837eb9ea013d5a26e6a2df
MD5 f27b0e12170888164e823e30f7f37241
BLAKE2b-256 9adfd262290d0e6b42bdf23dd2d81e615a84b55d78c73204e3c71b8a254fb471

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743897268-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 a80f2bbd3959da412dd0e9ad990f9f439063da5eecf5110babc0681d999d7c5f
MD5 babbff840de79258af7e9313e01dcb1b
BLAKE2b-256 6aafeb7caaf9b3683a2e5faf909f9ce9351f4cbe34533d7d90d009d895d32c84

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743897268-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ba352cf0591c645a6b3a80f98f4b503eacc79f6c1956e3b1805b28a8c07f2ff2
MD5 280706477eec13c5f84af415f63b398c
BLAKE2b-256 e072df0c9bee2230402313446693ebfbb35d8f548a9aab1579a1f1bd36cf7c1c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743897268-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a9dc56eaa721bfbfb3122bd6159693bf169af2521b7b2c50ccd54dbb57d5fd34
MD5 488ac3bda20f43c0145a06f6d16eeb89
BLAKE2b-256 83a1798424d703a0ad385bf8407a5e5aaf1c2d4fc527e74f5fd6a37a71a7367c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743897268-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5c779e8946875b31b1f2a089a71002ab00e0b5ead8456298f359bfce356a1873
MD5 7c06ca78fbf32ee36afe8b14875cabbd
BLAKE2b-256 c80a088c0328cce2da497d3da86f193a57798b5ad3462122d66a3e9868dbe1f9

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