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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.15+ x86-64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

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

File metadata

  • Download URL: stim-1.16.dev1768553279.tar.gz
  • Upload date:
  • Size: 879.5 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.dev1768553279.tar.gz
Algorithm Hash digest
SHA256 8d371fbee04abf756d2eb705ba660bb1782e031abdf4b840117cdc08958c50d1
MD5 4d5064ac3fcdd72449ea32c00bf03bb3
BLAKE2b-256 170ba019bda4937d56613437d90d8155f6ba18be6dbfb271e12e60e3a9b10a8a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768553279-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 dc9a5884ad885541997f4776def82e9eaf0c07ef83939b0397c5f2b154b4f39e
MD5 86466ba510f431d3128e5c705bf9ff1f
BLAKE2b-256 87a740fffe034dcc79a340250d0a31327b531794a6f9caeaa28f1f63751dac4b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768553279-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2e25f9c6cc943c2247bb485c6087958e460f0b6dbd65f7cad385b3f8f2db0ba3
MD5 404de70d34978103e0315384451788b2
BLAKE2b-256 03210b54c6aeeafe2782b62b38d5c4ff76d6481a36089e314c2b6eb3c9fe7031

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768553279-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 77a2dbecfa4d9c75c7e4054105c6b3b35e09e0e7fd549041e2da8ec361981bbc
MD5 b756eb83a66003754760a558ec5a92ad
BLAKE2b-256 ac42aa528b7dc7e995de8c06f027ae61cab48e35826b4c4765257c754b651f86

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768553279-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 30a98180a2bd217cb7c7435a5a5a8b0142e5674ce36b52435b40ac07553f223b
MD5 d3a01856c5de43b0bc2746769cf0effb
BLAKE2b-256 ecd8818d15094aa5448307517fb75a54b4ce4f8e2c484fb6d2fce4d80fcc730f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768553279-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 ae9fe3274161b422a952cef5cc723693534e73baa9883281395fe1312e307770
MD5 df59456058c1d36f3a10b158e8b3ac5c
BLAKE2b-256 81b033b7aa42be42c9203273501ff80d7b0dfd420e85a94a469f02ff676436a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768553279-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6387e64c2776f787646bc2668fd615b7611576bfbecf502d1bc4f810d79865c3
MD5 90478848040055dd1bbf32ff987e961b
BLAKE2b-256 da5c5183f8ff627749dac1de6498b1bd61538856e8b2b59c2849bd41bcfb6552

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768553279-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6b99774de85e2c730b6af5cae09dc1fb57ff93189a539a7c69d0f2b2ac28f613
MD5 33e49bf09cbec0f54b50d3ecf1827c65
BLAKE2b-256 421725bdea3e23a96358761382d772040c3263eb81d196ab15b687e85700724a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768553279-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 765853d6e890c4040bfe52d9783b6e038f052c393f4b1c62a2b8a70991b41ae8
MD5 b69af359069421ded99cf98277eb2edb
BLAKE2b-256 b84c838efd4d28a8c524219709fd5f49e33017d6876d858948b5bbe12285dd83

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768553279-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 9193bbc730378990446db4bc80f4cd33ca6bd7163a545f5eb767924995cbf85e
MD5 4526a4de1d8279fbd8d03a80a7a5f5ae
BLAKE2b-256 583c5af4930484a02efa8a3bcbc8da54bc3cc96ef07390dea1c2ff2a0e29f1eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768553279-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e96a814e70bf86a5cd8a7fe770a736e46faff39e4ea01ef8970bd4cda53471c3
MD5 86b2db85c82ec623cd1ea91ffd88cfd0
BLAKE2b-256 6ef00361401cebc3fb24b8c86bf8a4bb263438cb10c533494ff144edeea9fd6d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768553279-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c625723443db343926ad832a59272abd5723f35032b191734a7972310f71144b
MD5 8359b0fbe1d02be9c733a3abc66ea383
BLAKE2b-256 212526c31051d1b4ce84938c79b0613b187d934febed038a0988ea52db23bf90

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768553279-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 ca5ca4d9c110044b6ddb841f3821c81abf7bb0a750def54b7e542c924a4d96a5
MD5 ed2ac3eec0c17c0263603ecaaf3ab6f6
BLAKE2b-256 fb1f3d55055b877c9be9106c072843a4332b12d32b45c82ca7541a963c7c34b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768553279-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 05013e54c7cbb37d3dcf5a93951e21027b7c7b98781d6ebc731a8a3d881abd1d
MD5 56b1c8ff39f0682d101f425fdaada348
BLAKE2b-256 252cb3dc0a6fcdac6de4a808f6fa1d2067a2553b654a627d144ab2c14432b98b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768553279-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 abcc3721631e076fdecef03b6ba62b97098a9269d80724f4a0bed384df70ab55
MD5 e3f66bd0ca663a2ead3f6cafb080b14f
BLAKE2b-256 8d7b62f7dd747d4e9aaade1138c6aa15a07bb5c116492935dc805b4665229c4a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768553279-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 735ca90d49d76a7a48ea70f23280bd2b2bd02249f561028bf94339dd4422f192
MD5 b1394065ed0989a69f5339beae5264e8
BLAKE2b-256 f1d7722aeab64a4cb3ebd3546a415032b048a0a44f24c634ce31752b5b31e2e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768553279-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 df84dd0d070e0fcbcaeb811274ebdb677dc9211e9e9887634beba08cbe603a81
MD5 f75f676114ec07ec1948c985b241b740
BLAKE2b-256 f5a8629481eeeba4397e15c840e6f3ecf5af83ef84a97ce09a100c0be766d763

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768553279-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 71d3e626751ff7b6d2dc857aa184ee313ce429e6b89728f98abf0d1832d4e05f
MD5 0855bd30d51af70f76c69b057d103566
BLAKE2b-256 d32dccc07886613d62929b737ed11f1ff232f7c3c66d98dbfda9ecca25448249

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768553279-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d97e3af9bb89ac340702195f7b45ea3d86f16f5c3e6f192af06cc0be5f9eece8
MD5 012e3fe2e6d27e541ee3c76adb8c157e
BLAKE2b-256 96f4362d3dfad5b5fb9f65c80257a1ad7217eb2dac4f93516695dc5604f71498

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768553279-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 60fab9d508115e592e112b0a2c4fdbe268e95d8aabf54a00c7891c0d41beb4a9
MD5 ff697e1073bd2674f188334d255d4cae
BLAKE2b-256 efcbd7b5db5487cd2bc0b25533ff4dbfd66335b626614fec5cbbf48dc78468eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768553279-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3816d890edbb9101fa24214cd6a7d3f13b9f6b58f761723eeb0a01f3d3d23385
MD5 6232008d37f5ba4aa7a0ac52dccee78a
BLAKE2b-256 30b4e9225bc2f7a9dbbfceb9c15cb3844b7ac1bc7c69ea29e33a0c8d3ae9b4c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768553279-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 98dbac1f14afff85c061d8149ed8a75939556f67719d7f149525061515ddffac
MD5 af510439e7e5d4f539523a43b88bf436
BLAKE2b-256 d058f896b9cde66deeabc7cdf7757317f6565f031ea98e2a9b0b1ecad65d8308

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768553279-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 92f773a6ac65cc9d83c9076ca773abd0e554730749ac957b8221d2fd9d183274
MD5 4eb2c29f568b7c38c854657639ff2f30
BLAKE2b-256 3098961e6fd9a1e2a3874625cc62ff17ce3f5df90f5eccfcc254fb67671e3616

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768553279-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 34bc19a35c03eea6680ccc18fa42692995ec907c91d30c2ef6c8623bcf44ee66
MD5 5a7d15b7c74b89a1dacbc55f2dae863b
BLAKE2b-256 ac4d1021120ec478eee4762a571ec032305e396f07ee2bbb499d2c943fbb3d65

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768553279-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3abc86169e3272bbfe678a3cb1accbe5ccb050b12b1144c774568554c9611758
MD5 62f57aeefd8b0ebb5c2b731fae8464d8
BLAKE2b-256 664b91f1b15a1b709afc6f6ef3fca8520fa0f3f74d024c7b29afd074a1bb25b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768553279-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 4d99aed1e22c3e4bf32f3c2af5c2cd0271778e608b79673778315b2714e764d0
MD5 a123dec4f7adc782d7c4cadddf4f873d
BLAKE2b-256 cd99035f775858ab381ad9828ca8504af1128982164934ca54b1e24e68a9a5a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768553279-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 271e451dff96675a4091d6549e54973433e1fdcb4ea62523ff3221d9fa0c7ab6
MD5 801f516a3a01db311bbc438f29271810
BLAKE2b-256 6a96e02559d81d2384c1b68b89b6324018269fe9dbd55a7fb0ae51fa4e46a9f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768553279-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9d7685146671d6360801f2afbd4f2022c52c31ed1424209d83a740637dfd005f
MD5 1cd0b82c9ba0b554ce04f255c1079591
BLAKE2b-256 cb4d626884820e1114b02a19deb26ac14f898820517613853770bf6eb038e3f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768553279-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c51d3dae4a2c1e763458ffe4e76db9ef6334393e46192efa8c2e0cf3186aad59
MD5 707b62ece4da2757d3d540471480344b
BLAKE2b-256 a5b9d32426a9b0b0d22ba00038d53c7bf3b78420eb2d542ce45ee807cd976fa3

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