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

Uploaded CPython 3.14Windows x86-64

stim-1.16.dev1768529462-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.dev1768529462-cp314-cp314-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.15+ x86-64

stim-1.16.dev1768529462-cp313-cp313-win_amd64.whl (2.7 MB view details)

Uploaded CPython 3.13Windows x86-64

stim-1.16.dev1768529462-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.dev1768529462-cp313-cp313-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

stim-1.16.dev1768529462-cp312-cp312-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

stim-1.16.dev1768529462-cp311-cp311-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

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

File metadata

  • Download URL: stim-1.16.dev1768529462.tar.gz
  • Upload date:
  • Size: 877.9 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.dev1768529462.tar.gz
Algorithm Hash digest
SHA256 23eaa374ccc8ec40d8d48a8ca61b14aa11a587637b01f86d52bedc5b51598e15
MD5 8a966d3d5ada40573c4aa5b107ef2b79
BLAKE2b-256 81a6214bf6bd63e469891cbc6c2d409149b1ca76fbcdcebe07c711f92a3521eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768529462-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 55822e71a158eddeb04cda8e8ce8f3a00cdaf5b8b147be93a307c14f9b40b99d
MD5 eea6e6ed374e10408a066537294d124f
BLAKE2b-256 33fee4fee6cb8ca1205a43e3a6b5d680a619369f96c07a1445da6b71a1e3789e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768529462-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4fd8524dabdde46c4a9f6bda60d2280f7917508c52115ccc3731b42b7d2b4d72
MD5 9f7144601d5b9fc990f11a1982468104
BLAKE2b-256 b886edfc4493bcf64e89f159092091f2ae327a085a9f74dbe8c3a1a60b29e0b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768529462-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 74b126528800dfeb655343c428ce19b265002d3c67347cf747c93930494f4c11
MD5 3698f289e7d121eaf903b12aae077f71
BLAKE2b-256 6c7a601761c9613e82fbfd2d0c1acd50d447fd62cc8fe6533917536aaa77cccf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768529462-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 deaf3d11e3264ada9ded59d7af26cecf1cba3fff81e254bec69cb3c4f239a002
MD5 bd30c3f2c01d112b2d49c2eacb175c3a
BLAKE2b-256 e3ed7795f5a6ce7405d0b1b4ffd7673d6626f1919bbdc155e23a849b87db11d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768529462-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 0c7bf36fcb528acd6b97763cd2823f513011ccfcde9a0678b06c1237e9069f1c
MD5 91d1556b2cb3c86c6049d44a15e23511
BLAKE2b-256 8925ea49e895ee764c26efaa1abd08b1af5726af991882f29fc169cd30bd5e0c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768529462-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2f8dfc4388bcbe5d69b7c53acb9e316e1e8798da646551eb8a11f3baa944f005
MD5 22b6b91733d1a166d0dbfdc08fb4f33c
BLAKE2b-256 a97eb2cb2cf92b92370f08401a7e291eb4d5e954ff6f272fb89bcb7bc54af910

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768529462-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c7c13d3ac74986dea0de501ea61840326b5e4d5a30d0239456cdac625da5c5a5
MD5 e9947141bee2ab9b1f015677006e5164
BLAKE2b-256 3820cbbf48f68fbf2909df140911ff2accf1d1d217ac6d49162f61904063a6da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768529462-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 ec777c06d4558b82622f33285113a5372d1f882048d207f4e4a07eb380510683
MD5 f9b554f0b65d83163983a95bcfcc7129
BLAKE2b-256 7794e1aa940e53e693a15084394d809ed227f246c29e5906f296f73c1f70a650

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768529462-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 6333865155576e7ee2ffa6ed6ca0a6a904b0704d6eb2392e199ea7b02d11446f
MD5 f8f308cc3b80b37c68047088703379ff
BLAKE2b-256 53706b14bbfbb9841b0fdb08a7121126240e8f2d845a4fb221947f0f481fc98f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768529462-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 480d43374b4682108287c60c3a1b4e38e30ff427108b823d02f3e325acc449b4
MD5 e4c621c47f62383d83402eca8a2d5113
BLAKE2b-256 473a97ced43669300d7a7ca001f3246f071ccd8832db82e948104e0a96ea4120

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768529462-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c29813ab834f20b7b79f4060132985b19199b1bd016e74a8935b937cf6616873
MD5 ef4cb7f0055b9bdaebad4b74969e962a
BLAKE2b-256 3fa042347d2455f2a979edff3f220fcf7f5585d2e37a9134f34a8817cc792127

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768529462-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 812baf2d7c6dafd83da3c64697dcd13444f30f1295292683077df94f091c92c4
MD5 8eb59b89b17e7fabf8fae8e75c49ef90
BLAKE2b-256 1f6a38b94e89b4f346b01f57a9a2d6baab7dd20045836fca78dfb00d5cbc1be4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768529462-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 5b406aac2df0aff6f2d498f28fceb25136691f3defb4a82e512334ead9a5428e
MD5 4a71d398695f4c2b5383af6c17d5a3cf
BLAKE2b-256 4f175a6374eb5578ca42859c39bd8b942efccf9c92b39a555e04856ae635980d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768529462-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ca372c9c6877b4573903298a4e5b0239e6f8ee728813b106bd12b5e6a13a7c0c
MD5 0cb6231987a52f7b766ef856f0010cb8
BLAKE2b-256 526878e1296497ef07c575fe668c816766f8c9372b11c49922b15ff7b43ca6a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768529462-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 24f9283eec00187381ed85645743c08e7225c039845072149e310b4a9e85b041
MD5 9a52502e96dfce61866d8b536b88f5c6
BLAKE2b-256 93475975f84a45f50a022c26567829b1980010754e7dd6ad8a27c05928363989

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768529462-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 be11e0d197918b28f9634f2da24a72c263483a8784ea3ab752410e539ea14838
MD5 3fd7a63f1631fb8f418574c259de41ec
BLAKE2b-256 6466198f776559efd3acbd913892f0c3c86226817f91e3733a0ab2fa490f7dc0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768529462-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 0c068b2c3681f6b82d632adb4ba3bc84cad1f47f34a1e9996928ecd6ba863a57
MD5 ff65e5b980648093b350e3272e5547b4
BLAKE2b-256 972724572130080780e3835a4f4ce4a55b67d78860978471c9aedcbfe4142008

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768529462-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 596b66a409833f8b99c20a15877b7ccdfc658145b71523dcfca15fefd994f13d
MD5 1cd72a7c4462af8ce4e96115e57fcf30
BLAKE2b-256 a2c8315196b4446749b4a8c34f56dbe21b90f10dd52b9b08c3877f466cf944da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768529462-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cce9774e0e8d84603d09222c410c9b24bc4eea482ba68506eb22487b9471c36b
MD5 39cdded704ac44ddb032635ef59e341a
BLAKE2b-256 4b1942a6c2e67e1949e8a9bc1ac5794b7845ab254b691329a914d33b428b4fab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768529462-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 02cf7e83e02ffdec049ea82c4f12ebf8c004dd9cff55b09779222b35722f15fe
MD5 af4987b6492b554c2158d3b64210cd5f
BLAKE2b-256 74c23d308d21f7a543f3c59aecc843601e4a806c0586d81a3b48c5e0dbf55699

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768529462-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 edcd04edf41e8dbca563875aab427bd7d343c602af2af7296b6199384ea536f5
MD5 ad5314025fdce9e68b42795c5edb33d8
BLAKE2b-256 71a27167a8cca47e063edd104d901abf72e75df5fef92c6b952494459c6a6892

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768529462-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5a8edb9c93a80151f13c4b23910cf35dc40a1039ece5b744bbc0a9893524c5ee
MD5 aefa81b94d22418b8b9b1a854fa8b68f
BLAKE2b-256 f1c66a0cfbb446fdf13f86f536aa8fc431a3cfff95f79bb96166d53e00379299

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768529462-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 01193e5a2690c85ccf74ec72c5b14ee70d0be6752e30e37c90a4a21ded19931a
MD5 3338d27df4c03022e11338dccea133e4
BLAKE2b-256 1398f272b60ab40dca0d58d816fe00410eeb05a7fad25a2851d0487c9c345876

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768529462-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f9642fd2e54986793580d07226f19c47db8253172337391fbdf4ddff2d93e946
MD5 866ef3cddeff68310c3e1fdafcfde0fa
BLAKE2b-256 ff24f8c3868e099b7a4a4a6e34e8fbdc7dc99014254cc1b86a9dc472de10768d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768529462-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 74ac71669eb42a7ef7d823648459f1869f2724f3aacf2ee176459a822ca5b750
MD5 dc030a6d9572fa597fd63f6a1b6bf972
BLAKE2b-256 2729df53678ced8bb50d53329661d8d274e3b6322711caa2b23a091eeb515006

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768529462-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2698fac0bd74e792fc0a08b74d515236a345c50bcb22beb03f5e072e61686763
MD5 cb3b0f38e5cd773c812222bfba51efcc
BLAKE2b-256 e7f180a3bdb2309067f92759bb59b5d46d8be1ecb8cdaaf96d9a54c7a876c7f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768529462-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c74cede73505a3ab331dd7dd8a2ab4588ab3c8beed4c334f4c7f5ca6d413dd79
MD5 d6f402b973d7aa80cec601036b675e4b
BLAKE2b-256 704a4f31f448957a59261c5ee1f353f20ccaafa7740b8dfe0cca4d0dedb18e50

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768529462-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 384c126543010f6c592612b21532c1772201f47da2b5918da78681bd2efa0372
MD5 cc18ef99cbfd4605149c424b2fa51a72
BLAKE2b-256 1f60d26e2dd659c52f24208272ddd0bc302bf28d6d9e98930b4c81ec8327411d

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