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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.15+ x86-64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

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

File metadata

  • Download URL: stim-1.16.dev1768882982.tar.gz
  • Upload date:
  • Size: 881.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.dev1768882982.tar.gz
Algorithm Hash digest
SHA256 ab68e1c7dbddc92eac5e3ee7fbbfa59151f642dc65286c09cf73c49bf8cdc369
MD5 fa0a92e1eaf21295e91888bc574486ce
BLAKE2b-256 e8340398f072791dd0978025377dea82f4353a555e7540441de643c38da28cde

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768882982-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 6233884cbf5ddfd8856c9833c98c902176932b14df7d7b0a23be8b58e3a8fbe7
MD5 1d375d67f0fdd5e8fd7ad7ab22fb0642
BLAKE2b-256 8e931da596ec8bf1a7b30199e91deac9130bad80fcca9d75153b984c3ed23c93

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768882982-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 189e0b0f56827d5e8768a080509bb17fc3eecc077957441f870e30c030995990
MD5 9df1567e9291ff2a108695b67fc27064
BLAKE2b-256 48bc68480a8dd48b0c662ad599e8615bda5c3acbe2781be3f8806319de9a3a91

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768882982-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f28563e9d9a1c199a4d84bb03fa0ba109571ef74fa823093d5dc290d6b6fde71
MD5 0ad3364a6815b14a999be7c754cfe074
BLAKE2b-256 e968ba9bffda9ff594247cc92edb47211d7f130f12319913a89cc3cc17b74ede

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768882982-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 b8ab476cc6c577b24934d4c14cc4db17d193c2ae1ebf8171ed518a2f12bceab1
MD5 db0235866288c474812c3503d5decbc6
BLAKE2b-256 0f380ff85865811d3373d45905f51843308fddad09f90be72d8c8f5365a4f7b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768882982-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 31156a25b81427f43e208f02fb9b36569636a4687ae3d75d2c71ecee63698efb
MD5 03d499a5593d91fc37739a5536eda088
BLAKE2b-256 db9fd79940b566dede3732c6b5d082776c69c11b07fe9fd1cd2e0eb7d0c01785

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768882982-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0227ca8bc22d1578a68c15de87e2d898dc2c6293726bfbf67398ba208b25c479
MD5 802f772ca95a30d3d11b561d96c0d0ff
BLAKE2b-256 f26ae1ec6f6fe229bc4253dbed610fc10c05faaac1ee6c42976fcc078e4241ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768882982-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 958e48e4db006b9e5b70c7ea76d6d55efe543f98f89cf52ce0b1e91daedda357
MD5 4299bde62ff46565d69da0898d86bab5
BLAKE2b-256 b6cae5e88bdd63fa1ea196ba51c5ace109bdfe9c59f94b5c53c7a8d24d3ab274

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768882982-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 f7b78ffd2ce65f3e8c159ee6e4dadc2686cc891b227d9bf1bab9766a51241b63
MD5 bc5d2ab7e085a2ec759c63c9568f5b6a
BLAKE2b-256 49adda5baa49c2e2fc74891c9e92b9e351a3e61edce12ba309e143564668c8e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768882982-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a24b90f20f29fafa254065094e84664c8b439ec5c127ed5a9f6663767ea2e847
MD5 9aebcf1f66e8ad0140c585d4c92e9ea0
BLAKE2b-256 cc9955bd4bfba5a38710d787ea298412bb3fec442b4c7183b2ba111a4ca42f00

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768882982-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c30565598a6c333328f00e73ce658adf5fcd491b6bf504079eb3b36b52bc72cc
MD5 7707738ef83c618b13bfb904f6dfab8f
BLAKE2b-256 f7fb576fa6eb34f28ae62625a96adb3ab48fefab0350486e72e7efce01474d3e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768882982-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6651aac58c4edb121f16c286da8b65f1b86ed17618ab97e9e44687a60b33f631
MD5 d1feb255677781d9a45ae44894785025
BLAKE2b-256 4c62d4e93fd431c2d80c045e651452f23c23190cce8207445d92d448a0e90a40

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768882982-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 843e05cb4ac0d7eb12c0ac48ddf6ed4d318ba5d8a97cfdad4cb03237fea6aba1
MD5 f6005a3fcf01b740d2b4faa31a81e685
BLAKE2b-256 b4063e5d64e7b5e9bfdc7ec5782a212d7aac1d5e21e2481befb398caa1a633b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768882982-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 90adc4cf0ad7f7752f2513655bb6e5cbdedcc1d5c554152f23d96369eaef3d53
MD5 bfd2d40436dda88a293d442efbdc04f5
BLAKE2b-256 c35eb16ba6ae9da654d7dbb4941d1bf102c22cd8f2b2d56cc3638c8970da0fdd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768882982-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7f4c2297f2baa6c567ce13af9a665d4bdd36a48ce44237fb5b6e8596308c1da8
MD5 58d1c33d974ccf71bb654c5e7cbab49a
BLAKE2b-256 3737439e1b9e1c79a6e68cfb902f70c64e8f5c0c44032094a49a44f0aee8fc97

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768882982-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7139cafbb488c8c571a50fe691fe209ef2f252f7f9d1543018d621b9b56bdb1f
MD5 3f9313ec11e25db7933fd14453ec3996
BLAKE2b-256 363989adc2be97fc176a1665da38d3b5f099bc1c4f45dbbe3f8e362a0b15cb4f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768882982-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 236d22a7a36aa01116da051f2888cdf955791c2bf4d5baafd32336e88e91bacf
MD5 0641c6e4e62f41e1d550324955e07d6d
BLAKE2b-256 9a45fd937ac72b29d7ce49510e5606c69ce42822fa0ebfffc03bcb610f22eaa8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768882982-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 cf4b8c96988e60132804cc7a38f4d9efb2628c3dceb6bbfda7825c68a01bc498
MD5 22440a6b67405f6e28ec335a759e9dfc
BLAKE2b-256 d4d04f833be32defd2439479e13c8d9c0dadcf0b7e181358d4cd68bd8ecfea97

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768882982-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4cb63b8e491d4a6f04c0ac3c2bcedbb936570bb3f2f840715e93e11bef16ddb1
MD5 e9b6a8018643a114fca450544223669f
BLAKE2b-256 ab48d42eefa02b837895d875e0bf319298e7e7bca311ae39f04b7fd23ebada62

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768882982-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5cc32536489610b2ba95a3c989e915c402259a29594bd8b10502f4930c248e5c
MD5 a7c9e14c5c41ed267d1ae0fd6074a3db
BLAKE2b-256 b734dc9d4a3f305c5c6eebc472af9df0b0fedb7f396751527f49d76dea5f720a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768882982-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 168c49dfcc18388ee631856fd936e6e055acac86abd645e89503a0c57bea0684
MD5 4444d1a277cba5515791c8a1217bc301
BLAKE2b-256 bf571b903b038fa799161b2faaa0902c021473093efe3af3263d338ed182089a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768882982-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 58fe2ee84ec39e6fafcebca0355913321dd878207df3ed38285f86e63cf22cb5
MD5 0b7a66589e0aafe0631dd8e9901dad45
BLAKE2b-256 96556caa3a3efbb619f4ffcfc9f50e1e113a573b837416760e7f418ee7825317

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768882982-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f42c50835000b0f935e1ab9ce8c43f3d4f56af14d864abb696c0d05ded538f58
MD5 d12ac138f4ef68ed62e55418557a9ef6
BLAKE2b-256 5e4a5559e665b3f851cae3cab89af5592b1cf56241241a66bc21c94e55719e73

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768882982-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cc835947a317474272174335d0c279cca76e6a0855316905ceee91959fe1a442
MD5 fdbbc7d4880e45795042824079f58c8c
BLAKE2b-256 150232aacce100361e5c9db01bab641a9d318ed27ca515ebab031cccc5b0046a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768882982-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e3760ded91fe1991d72d7dba489afc2e3bfe4337afc208101876a42b355e82d2
MD5 43a59a08486522ec973091a11db9e122
BLAKE2b-256 d23b7538b5ea04f49eee35b44c165985685a0dbcd0d3e17301bc0c447c90fb07

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768882982-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 3185c7cf913f49774718470f291f60346405c134c9a48c51acd06c0ba2892b70
MD5 4eeca7f6b531f7614234bc2140e2cb4b
BLAKE2b-256 88c9a9e6e84ae46bfae378a7699dbfd6cbb5a0750826e8eb0e08753f3b365aa2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768882982-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8afcc7e168fb75288df411bf5096cd6baf2644c514392fa9e88667258413b6bf
MD5 2b16d9e9b801061f32f0d678d1d774af
BLAKE2b-256 13fff90ee82a9f133c37b79c818dbb260b06319538a5f4ee89363b1df1a50741

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768882982-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2774783097eed0d44675fdbccd3e04b29e18bbc803fffb6dd1bbf4826102c0b2
MD5 ac74bae1e569ca2e86bc834c08089861
BLAKE2b-256 dd7a7ac7b07f6972176c3ae7cf76cad9c2b60c406036e52966b1b8cbe10ab1f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768882982-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 476cd99f1cb62c7d0053f3d13b66331045a7ce86d29cfa9913615105c99413de
MD5 ee45f8dbd0d62d2264dfa435660b1cdf
BLAKE2b-256 7fb67de8c07b1aeeb45a38776d2d537d76e3d6eee32327c873d07c8befc712ca

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