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

Uploaded CPython 3.14Windows x86-64

stim-1.16.dev1776111692-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (5.3 MB view details)

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

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

Uploaded CPython 3.14macOS 11.0+ ARM64

stim-1.16.dev1776111692-cp314-cp314-macosx_10_15_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

stim-1.16.dev1776111692-cp313-cp313-win_amd64.whl (2.8 MB view details)

Uploaded CPython 3.13Windows x86-64

stim-1.16.dev1776111692-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (5.3 MB view details)

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

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

Uploaded CPython 3.13macOS 11.0+ ARM64

stim-1.16.dev1776111692-cp313-cp313-macosx_10_13_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

stim-1.16.dev1776111692-cp312-cp312-win_amd64.whl (2.8 MB view details)

Uploaded CPython 3.12Windows x86-64

stim-1.16.dev1776111692-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (5.3 MB view details)

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

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

Uploaded CPython 3.12macOS 11.0+ ARM64

stim-1.16.dev1776111692-cp312-cp312-macosx_10_13_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

stim-1.16.dev1776111692-cp311-cp311-win_amd64.whl (2.8 MB view details)

Uploaded CPython 3.11Windows x86-64

stim-1.16.dev1776111692-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (5.2 MB view details)

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

stim-1.16.dev1776111692-cp311-cp311-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

stim-1.16.dev1776111692-cp310-cp310-win_amd64.whl (2.8 MB view details)

Uploaded CPython 3.10Windows x86-64

stim-1.16.dev1776111692-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (5.2 MB view details)

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

stim-1.16.dev1776111692-cp310-cp310-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows x86-64

stim-1.16.dev1776111692-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (5.2 MB view details)

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

stim-1.16.dev1776111692-cp39-cp39-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

stim-1.16.dev1776111692-cp38-cp38-win_amd64.whl (2.8 MB view details)

Uploaded CPython 3.8Windows x86-64

stim-1.16.dev1776111692-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (5.2 MB view details)

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

stim-1.16.dev1776111692-cp38-cp38-macosx_11_0_arm64.whl (3.6 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

stim-1.16.dev1776111692-cp38-cp38-macosx_10_9_x86_64.whl (3.9 MB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: stim-1.16.dev1776111692.tar.gz
  • Upload date:
  • Size: 882.1 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.dev1776111692.tar.gz
Algorithm Hash digest
SHA256 16aa69c8868f38bfbd1d37ea0928940d4a54a9373782f73919933d3758f9fddf
MD5 750e6a772f2a9ba1f89c3d05d3e77a02
BLAKE2b-256 99b02a74f66b6315f761dfda0e9757c8d62f9fd0eb5df52d675170bd6b66e720

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776111692-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 0437d942d05b736a36a0ba893bb1516d8d95db4d4942ad86f88c591c1bb7222f
MD5 cae0ad3c2825968a5544c897d495dbf0
BLAKE2b-256 4375b2d8eac3c668da187334f3a30ea9b8a402fdaa68d151356840c603cad2e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776111692-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e16f947aaf3d4a4d7ebe61b9d19b57234c53a3f3ba52ac49fdeb9d502eff76ac
MD5 a7710561f83ea36adaf285ecabafb8e0
BLAKE2b-256 c34d3dd12c3006d8dd38cec3d55fc2f9889b1ee5b0d7b6612288a42349e9da6f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776111692-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8fc5b15afcee6a17dedd9e425af13ac6c2c782daa2e74347ba17d405780d1963
MD5 c04b9bb55775103806851c134317394e
BLAKE2b-256 0638c53b8793e9b80b5747d90ac3ebd47c3325e6b9e1b3ca0a2e0d885ffb287a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776111692-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 ec34fcbc4af2a015ba1ac61f7338c1394ee2ba6e57808643111de65f8ed23da0
MD5 6cd869f41f32a1773581c81d9471dccb
BLAKE2b-256 127f5a7bfef2c0c3d34048a0daa09b0d4c292348833fc7fdbcde181f4ef8240f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776111692-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 37a45de2e232a4370c6936a2891f5001f2abc493f4fb2ed204bd10b4e6fb2c40
MD5 8498f551022d9f4e34f3e8181ca9fb22
BLAKE2b-256 4360379a202d3e8d7f820cc9affdbc98cf5de352dc035f079d0c6639f5f8709f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776111692-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 00451bf79fe28b7f59cb8c2c7bde0238db5d614d5c8f9a513e0077172213e023
MD5 1cb083c9758ecd33eea388313e15e225
BLAKE2b-256 0e749a85df7751064cf92bd1129d6b1faca6ff1c7e88f9cc83cf2be00eae489e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776111692-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d5e48c60a1ec6a3bb727caff7a3ea70240fe97e5f3d19ec4d2325f7f5aa67658
MD5 e1e63c218bbd3297617e537db12bdd81
BLAKE2b-256 ef7da1b7fb0a6c968e8c453128ecf31d783654ec0ac5b10bfd40dcd2965c59d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776111692-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 3874aaac7ce7498c012588a7808a632e35cee1115669c84fe8da4901b7afd323
MD5 55a1b9f62a4e3f4e1459d35df65f8a73
BLAKE2b-256 dc724409cd7e2e757102c4f9d478307467f50e755f5fb7e9a033b4d3dfc45fd8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776111692-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 90a87a5e28434f30eddaa221bd7b407e6b36cddc69ca8f2711640b78fcb63c8e
MD5 98dbf6f52e14356fef0ab305d5bdcb90
BLAKE2b-256 fcf93edad1b4b181ac83f68d12851412d226610227856815c8d7ff20bc960c69

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776111692-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b3f0eccb8b37657a92f3e05b66e6db6550b2bbd8038736fd9638ccabe14deb17
MD5 8631ea7a462d2a0d981fceff5c6b4aca
BLAKE2b-256 560d6a3124915fe7e0abc00ea752f92e9ff53a5a5b2b9fe573fef30b60da11c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776111692-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0df3f385c207fb26ec94c5b0a6a15ea961048a79e82920e4aa420cd21821b709
MD5 0c7dc4a68287e74734847adbdbb15eda
BLAKE2b-256 788ca76ea1d7d5f3d7830d59377fa208610430e858d09d2f31bf888d88e6607c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776111692-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 be243d74197dd20bb5315efea7c2832294ef13bcc060f3e1dfc6c33e0921ad84
MD5 692955aea7bf9ff928731797b31c3a97
BLAKE2b-256 e183861c5fb20a1b75fc17fac5e883629394422f113beeb6e260cd5daae88969

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776111692-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d3bfa9377c7eca702cbad61bff4033cde3a14cefb4f457c6c6efc4d635f4fd62
MD5 7af9b8bf068450d9b1dbdc24fb9b7fa1
BLAKE2b-256 6493ccf12ceafd2671b3b0aa53b935af74b7dcb4371f6771994b90673507ef2e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776111692-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6f1721334e9c108e3c3b1a82aa680dd0474dc942ff2ceb793ebe28101a829b6e
MD5 de51ae628ba9027ed05ff43bc1fae6ab
BLAKE2b-256 1d1790dc9debf35a06361bb0eeb76e7113650855f6e1368a40f87a1a7347fd88

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776111692-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 24299b26aa89a50161b9e7212aeab31abb54b83ad9847fd9b50033e050afb12f
MD5 882f28de9cbbf34e2e1b4b0da37872ec
BLAKE2b-256 7bb534b644cdd33843bde2b3cdb9ecee114a6845b342b8e46f726c46e6f2e850

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776111692-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 542d460dbff985936505b1c6820846b8a3dd367e9b05ccfa6708ab643b9505f7
MD5 e49f3d3beb3299f9aa50c9a86c7e5a00
BLAKE2b-256 3572bb602ee5a40084e27efc11cdea326078aecb8925d5efd530d01f460cbe95

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776111692-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 ae786c1e28b6a4cf6f04bd9d3cc73b508569dfafe3783edf79b09e85c073656a
MD5 8752d592cc8c78a7690c95dbb8280feb
BLAKE2b-256 5cb067f32aba5dcc49aa3f552c43e6dcab293304f2da52fab57c05dfc638b54f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776111692-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 334b05ced7a33aa20a57ee2c20d2047fc46df188c9ac93ab6258a97c0a7ebf3b
MD5 117a3ca53d6d98a5a34794a8b53763fd
BLAKE2b-256 636eb4075572d1d30a021e9de016cb7c2f4bc8fcc3ab5b000e25a08aa3544700

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776111692-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 95011096d34aecd3b9237551bad004aec9bf24a4114ab6f9562f47ad5f08a358
MD5 e95dcb7e2fc54c07913bf53c394ca066
BLAKE2b-256 aa614031436548ca904aa76e4b00b1ebea8910f93ab78d7cba67cfc685391dda

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776111692-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9f3b5f5e8ba759570b9975e89bdd1666f55b78faa7f62965d5602d0f18d4c1c7
MD5 87af1c1aa6ee5e29a1431fbdd5fa52d2
BLAKE2b-256 cd1af2f99524a0604caa7439729b611113f46cf2e4a79383de444e22d01250e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776111692-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 b038d60ddfba40b695fc1becce2299f22f0e27e72346580475c7adaf932dc5ea
MD5 2a86bcc1b1d37b8a025e9d6011fc9ff5
BLAKE2b-256 b35ac62b33b2849a5fe84907321d26e3294f1121dc51360b49b0fdc809d4373e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776111692-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e78d8c61e9255330e0fd7a85239b7899b410b6f09606987969fa7222aab03b49
MD5 181bc52f774822ca3296372947e46782
BLAKE2b-256 5b9d366f0caecfe4e54843f4402ab8e8e827a9a8fa1955eb757059463a14df2b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776111692-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fa55fd63aa4bf51b152c96437a4c6e3eb5da13ec9fb8d2351c06f255777a86fd
MD5 00ee591aff6952ebe8d55c1d7bf914df
BLAKE2b-256 47a9d843c296b7b058cfd5f63f886035b8d7d9d86d6559294ce062e32f03f381

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776111692-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fb2cfba2d5092b849953276674e8b21d64e8450bb4f2039f8dad87267ff00903
MD5 3bf8d96b460e4c1fe2ce28e52959bc6b
BLAKE2b-256 772869455529354b418581461f7fabb8c56371e43cb3cdda9c84e4661511ae25

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776111692-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 76351eb2ae54eaa1775ced61a6fe8514dee88d9e143bf881267ebe70628851f3
MD5 3b027222aa2e2f5ebe21b4b264fe4117
BLAKE2b-256 4b5213a751662c68c4ba279523b06c403cfb2ef2921cf6ea004b90e82651dcc0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776111692-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 006ea6c521f613a27d4f145d26a9be1c2165494b82c723a3088a0743715c54d8
MD5 93d1cbdabde44673ea87a694b2a6b685
BLAKE2b-256 6f0fad83fd01d0288d6c0c8bbdc435422d01982b821ad1533fef643ac11c1811

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776111692-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a91e266f62fafe6bee345426dc0f359df238bf790d95295f9b16c3be92dc9e99
MD5 1e29bc186eb8d9586b6c4ca87ac6109a
BLAKE2b-256 41574fc869584047653c65977298b264eb52545e49acf8c1be00935cfc9c4fcb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776111692-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fe78309571e795744eae655648082fb8b8ee0c2276081b787956fa4524f859a0
MD5 ae89511a1a98a6fc1ae575eb7f9ff4fe
BLAKE2b-256 96530cc865bba8ccd739f4de5ff376eb5c684cb2e584d45c1d35505c8d63b615

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