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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.15+ x86-64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

stim-1.16.dev1779417207-cp312-cp312-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

stim-1.16.dev1779417207-cp311-cp311-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

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

File metadata

  • Download URL: stim-1.16.dev1779417207.tar.gz
  • Upload date:
  • Size: 882.6 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.dev1779417207.tar.gz
Algorithm Hash digest
SHA256 d2e226843725ef92dd4a8e7737836a70ae6a955d52c355750aacafb035496bcc
MD5 1de0679ba690202d36390b5edbd9ef62
BLAKE2b-256 a8272b6ca1b19a5f06bc32784a6bfd70b0d5c65a3837097eee92523959f12ab3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1779417207-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 c8f2e42e17964858cc0dabc412feaa08986ca0af037b428f35eb5e6acbe439d5
MD5 b21380b4694b5b8e87270167325ed4f2
BLAKE2b-256 ec67bd23b9ea8b50466baf1c90337c64d41e33b650c491e0e384e9e862f06e38

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1779417207-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7fc71ffd3195a874993b376db8d7526102f20b5c5e8171c2c9eb2c7220329e6a
MD5 b075d49f83dd1b96fd0d29db67b13397
BLAKE2b-256 3b01f36cf0c74966a04268816c809047ec0a3ba64c9351e54af3da92aaf3d693

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1779417207-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0c9db5083de3eb3e503bd4b8f6e9c3f98607cdf6f7cd7aa0d7cf352337d88c18
MD5 5c491c12a1855e91e69285d749c9182c
BLAKE2b-256 a2160bb989d8d6be05611a8f1af8491ac5ebefd47c55f4069477766980b8399f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1779417207-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 9142d94e15f6968b9ac4734cf4393e16df5ad572b972f5a03dd956443ff30fa0
MD5 925c5efb962834a2757d06e955c0d1c8
BLAKE2b-256 5a1a8bd1123a86c8b1583596ebc012a56d4488cb86edb9d165b3432654914dcd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1779417207-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 5d9fe96c39836fc131396df4927aa2bf72320d44672c37a168c232cc716557b0
MD5 1fb431198cba313562755f71eda27e03
BLAKE2b-256 91b946541a314f2d0cdec0faf75a6f2423bc8ec01a7aa0c73c4a5f09461e2840

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1779417207-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 55c6cfa445ffe78fba7b3c683fecbe0bfd5b6980485e49909cb7b416bdafc5f5
MD5 024df12bf15c2d0bc9dcc8b562e68bd0
BLAKE2b-256 5e27aa55a24885772b04d89e5b55355f9b94cb5d834adb02f1db7d038d8bb7d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1779417207-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 507d1aeba3c3d8091d5e2fee33a32168ce4fc1a88d56e31c372c817226dd1fd0
MD5 54a8175840833a1a5ed557b7005c04fa
BLAKE2b-256 d8b7407a8eede3228a8a78e0d884552e9bc00be44303f3a6772e20af1df10535

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1779417207-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 d2fc2f9b82705b1f4936918e43bad5ebdb2e2dae9b76d586886955b5f4593dd2
MD5 2ffd3ba01e24e6824adfaddc735bcc52
BLAKE2b-256 8a9d06ff14fc4e05ab43102f3e48a47f890baaed2de2a4d39fbe0378eb2d10cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1779417207-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 7cd53dea9f66b8096b7c98ec2be2bba5883d4b6fb533490caed917c4e742bb5b
MD5 82aac0a10991ceb01f1cb8f90f6924ac
BLAKE2b-256 5f8eac335d1f8e60af9268a85ec6c3da9679d26a2d0a0f898dccc02925874e12

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1779417207-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 57005b855fc33a757768ed356d602ee3eec3a4ad9b48f21d68c1448239136e45
MD5 a7fff12df80cb44a71ace0c87723c748
BLAKE2b-256 b258a5f000a3f5cd1e02d308e693744453d888ebff7c3fcd894fdd941997c50f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1779417207-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8c2e90ce8393e068ed63affb50502dbf35fe87b74282f6425fff91bbf682f95a
MD5 8987f80d31ac411cbb411641f3486952
BLAKE2b-256 265f8a75bfdef77736ebabf956f0f5a5b4697379165ca50273e360117610fe2f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1779417207-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 fff0d1c75f5e09b2f2b13af487062e0814103a5a8b3c7b616e91ebe51d228fbe
MD5 6a18bf5030d8e2c23a92f8c9156cea84
BLAKE2b-256 1d3afb26b2ae6ee98fc42bedc31bd374c2785928bed557482adfd2813c26650e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1779417207-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 7d9a27c9d9546cb85db0a1c7de3866b420385a6255d139169943e8a32591b4d8
MD5 5e2913dbb8b8be7857e6fe803af24b85
BLAKE2b-256 1925d09ecc0a3344e3ed6b16010e4dbbed5c30ae26741ca1ac9b22c6e9eb5dca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1779417207-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ac29c80187faee7456bc0c65d9dd25f82c3e7aea82c9b1952fdcc1b314313091
MD5 fd9a23cd9cf1e812adaa3f32ced4fe33
BLAKE2b-256 5c9a30197401606e7a6c6b96e26b7f3b81ddfb64473b0991ef9ac5a9670b0c03

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1779417207-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3fc5b7a8b7379379ed945ab7bda84ea64f612e9bd6189003efafd01d0677acea
MD5 49799da1b30f0b3e18f0e427da8768f8
BLAKE2b-256 297ec566dae9ac8f3cccd79cdc08371848d80aa0b8efe2b73b2acd8185618c19

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1779417207-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 413b9aee7f335a9937cea8c04a19305b40f93bc18a4a3eef8e960c3993d8f03a
MD5 4bcaa299aff16bc326ce11c1f8b25c71
BLAKE2b-256 62409c0c2996c2b878823302906c6a1e637642ab1e4bf5099d815eb2e53bcb07

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1779417207-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 2ea1d482ae242b244955e7a9fd23cfc4f9c49c38ad7c085828a252ee3e91bcaf
MD5 a55f006132c666ab105376cc7f279006
BLAKE2b-256 a94400e617b6b36284b1918bfbc1780e21911ac19351c6ce35dfdd81b6d120fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1779417207-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 527009e3185110bed9347a922488d50fcf657d6e18fd8778ecaaabb39ee543c4
MD5 3fef61cd8b75ad581241c175f1058669
BLAKE2b-256 38b4b2b5781bed3e8e2da96c3bb3070617068eeed106ebf8e9f8cddfd70afa14

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1779417207-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 52e3176e2947c5cb16d9e0f9e71f7f245342b39964d8b73b34b382c3bf7f46db
MD5 c9c867a318c49268dc9c9a76edfc9eb7
BLAKE2b-256 d68805a4d56db19d3852affc94f974f32da575155199908d140d5c3ac6fa870f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1779417207-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7bc71e686c1f6fc3c3c0e57cd96389898c8358d91f09c9c3df38ecb2d561c594
MD5 751e65bc2ffd53f004da5ef3b0f403bf
BLAKE2b-256 221a892f86231c81c71364396a24c99508aa828fe03381c32f5d08d0c7416f32

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1779417207-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 180befdc05f3a689111e75b8ec59c2a40002e5c7dd719c4fbd91d44b6a958fb6
MD5 6a3e384ee4c15bf0dd241c2c266683ab
BLAKE2b-256 6e666398950ad39f94a13c9d42b4835c3c42df14380d09c14c466fbbd8b441aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1779417207-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d16637fee0aef0610cdaba85fb8321262ffcdf93f7d3c480a4dd63edcada3ef9
MD5 67770f85116ede78524b8b6913bcedba
BLAKE2b-256 61da20cb43cfc76fe356b072dc5170154889d1a7b7bcaacbf8cfd569f339314d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1779417207-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5dc426be2c56084543422f8fffe10059c3048f079f0a16272b849693ab998afc
MD5 d0d50d47042ebd7bacf2d369a1f4e2c3
BLAKE2b-256 989ca3cba918f1c30cadcfd88c0a7478a362fe64feff38f57fb41a9e6b6fadf7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1779417207-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1da02afa7d1852b2ff40d541c83e3c5e5e1e6cea5392d4516c2222a198a6104d
MD5 6a5bec4d5d26df5b12c69ae5fa3b6600
BLAKE2b-256 4c125244b78969f00aaf7b250f45524b73e13b016390d425598483effad61b5e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1779417207-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 4b00b8d6897f7f9bffa7d067b2ca5285e52030e7df80ee6f3aadbeda39e66a47
MD5 5b3b95f4832cb1392c747f9a71b9535b
BLAKE2b-256 d78559de84849df5186f930f5f64d3cf00d40f4ff4261a2c7ed2b08e57925ca6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1779417207-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 66c9eee2fb960b677ec9d38f5fd13ebacad966ea5076c936d29e4cdcdc3ab791
MD5 6a5d49a52d02f051acf3032dd7a93e3f
BLAKE2b-256 015ea4c6686840fa06ce6cf79ec0da0fa85ffad5204d9cd997ba4488a4365372

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1779417207-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 549e49a675e58be16e89e577b9d94aaeb8fef7fbbe7c2f69695b143a00abc1c8
MD5 4bb4f18c30fb8b9b0c8c1c236d4092b0
BLAKE2b-256 54dedc35f516a1553a1e80ceb2749faae5da024da2d54b4c6679b57874070f29

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1779417207-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1bf195be234dcbf968b1a9eb803a0e8a0f32279f8ee579d51cfeb5a7572ba82d
MD5 9cf986ff367526c4343f5f032730ce6e
BLAKE2b-256 3be8a4ef4a0d750dcdbdfd1d54b40e2fd571d9d44fa12b0e1e1f4c6afb870eac

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