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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

stim-1.16.dev1768463664-cp314-cp314-macosx_10_15_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

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

File metadata

  • Download URL: stim-1.16.dev1768463664.tar.gz
  • Upload date:
  • Size: 876.4 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.dev1768463664.tar.gz
Algorithm Hash digest
SHA256 62fbf4ea4cff26edb70ffab2656a02db7967ac38112a4f7eaa2e61b4241c439e
MD5 f27f28e53d7e1f14d48241746339870e
BLAKE2b-256 c2f3983dd79df8ec6b8cd74017cea1da490ceff884b16f05236df000a0bdcf6f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768463664-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 764a19635aa8d17a33ebe179f78af0d4a2e90be087daf0185292bf909ae2ad38
MD5 ff8387c7109a28ffe17007f68789bcf2
BLAKE2b-256 c187e13bb7411df00f4e543a7a6f8f68291d32ec4ff1284d10bc5c842af626f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768463664-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 924e978b33addc02c5a4bde2c640c59ab43a9ab3424231e578e23b418a27ad66
MD5 8002ea3000b895076bb5db4c5532a92b
BLAKE2b-256 0b4d17c7b3f109b15b1bcb8adcd14abed13cfa0161336cf5f3e19876808eee1f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768463664-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 54f4bb61acf04686815bc80fdcefc256d988f48ebba1a8b748278a612b83f9a0
MD5 61ab132ebced28e93d00cabcc98cc4bd
BLAKE2b-256 77290edf0cda52ab937ff28061fd87cd6553dcc306f6330a2bae03545bdcad64

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768463664-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 63ebe03bef6ca6e867ee62715853277b59be9f9316b9a8ba0efe59a22717e77a
MD5 26e8a8004b05e55a5cc80cc6127748a3
BLAKE2b-256 36d3d880b1e39cbf0c44f668250f4f8cb0dd1c622b98fe665b3c11032f65e5df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768463664-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 f8dc6f3cfca6012329c25693137a3edd1cc9cfdb0b4aa8abbbcc48e0f1749278
MD5 9f246f4f5ea6a6462dc59487a03cd661
BLAKE2b-256 63d5a0360562873a7009dfee3ee13bf9ba319953f175f903d31c11831819ca46

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768463664-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 03cfc948213a34171d65645f292de41eb93ee1770efc3f210b1093bde9e269ba
MD5 c044e9c0dbe709bba4bb3d320ee1cd65
BLAKE2b-256 77ffe905e6b1d3328370764fad027bc0db0031174cdf7bdf0ef6504c5a5c4df6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768463664-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a94158347fbfe7c208199b938466c8084e67fed6e56aa9f73b4dfa06692f6653
MD5 d528d9f71071a1276b0985e5cee05d94
BLAKE2b-256 9dd5871bffbc69ca4029ead9e393e1b6c120a9165bb8d9ab34d440a2eef30cd4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768463664-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 41419c1ed417110b1f58bf39596a761c0d19817e347b7de2fe4a4c38d4b25bf7
MD5 452956bec11c2e8b9363fdd10c087d0e
BLAKE2b-256 19a0a4fc01726a5070d961d2447065d8f2d06e9b277b97158fa13a3d131c0e8a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768463664-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 2e7b0a2cf920ab1812f298bb1ac4808b0e307487544b5404d0320144c6a1b1a3
MD5 3786583262a5aa12ccdae756b56941cd
BLAKE2b-256 75194754506a91b1dce1260ae7700e199c7c59cfb7e80a860d1018bade391b83

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768463664-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1b2bb5edd5ae5df310e60f55ada0579bc46b91ae58fd7a2869b697493a0d3fc4
MD5 9d3bd590edab9178591ca4416897951b
BLAKE2b-256 750c4852c72b5d10b772b90e679e18cccf9ebce944a2e5c986f7b56709c0e8fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768463664-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 633c8c3c5601e852e4d3871e7ad93117e27407ab1fb6b41b36fa3fa79697cac7
MD5 92b7ff86b68ce89fe5840658e8fe3471
BLAKE2b-256 708bcf8f9f88c868df57f20f1f1f3c8123594bf153f3f7c8c203d29dff7099fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768463664-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 0fd8abcd3b4c3a3c267f7bf8b1ea9d89bc82d74d6d175388781931313cce825a
MD5 1bce7d0779e01dc4d94ffabd64138da7
BLAKE2b-256 83369e0d51294a12b3a6ec7de5b30d54779c6a2f331b3f450e309df89e356a6b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768463664-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ee5dadd662f248e98e42c652e2a832cae18be8c335447fdb12d89efeb8727fb5
MD5 0723d9851d7230ea3489de0b2696b5e3
BLAKE2b-256 1481dd833a3eb58387f0f70de3369bca92a22eb986e8ede081f9ce305f5a50ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768463664-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9ddbaccea0f23a15c41cb5a9b9fcd9f1614ad82fd778393018026962a200b602
MD5 d9619b21ef769897288b55debd27cf96
BLAKE2b-256 ea3ccd44bbed4a8cc74478391185aa2729deae8a1871ce208f987a2159cbf19f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768463664-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a5e38d51ebf3a21215955b7f4ed2e28b7a60339c41dfb0257b069f4647ea8dfb
MD5 df943246f344dc8a41e3bbba42cb2b4b
BLAKE2b-256 049a7be6e1ce20aacc41b2e4e91c22271c6219bd257a6c1d82eabb7839550e7f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768463664-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 25fc74e893c666163f0d3bf4e2fd4c91935217c676de3a2ec78c4829935bc933
MD5 5765fcea601786e0f8afb4b50fed567d
BLAKE2b-256 a46785388f82d3b7ae836099440f4ca768fcb4def8567779d380df66378c3c67

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768463664-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 8b9c45980c8507ce96bf3b1c3b6355b19bf4ef526224be5c0c1591a22c8ceb6d
MD5 c1d266a5ca85b3a6ac4254b33d061233
BLAKE2b-256 35145da535adabdf75b1c4a1e0e6a6d92fe8020582918f715f3087791b437eee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768463664-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9286e733e227474974f19d7da700f6d425f29ff643460687c6a6e2c87f144afd
MD5 a9079ef2a6a1e3688ad909b9901d7726
BLAKE2b-256 7662f3d0282f8b649950bc0b6e98d461acaf282283a0797115715c6640e246c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768463664-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4836c4fbdab3268866ce754ab4f1f25b7ad85bb07f2112ad7a8995133ffbfe15
MD5 9a5aeb6f20af4e3602cbbb10ae40d3f0
BLAKE2b-256 2b6c01b04c3aa851235a21cc8de8c8fda6634f80f6bf93e9af089d49eee38df4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768463664-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 087235b87e90b29b17165593c01340143353a04f48d4063714f2deb3c897dcd6
MD5 0ed2a909d7a272a2a626c1a79266a2cb
BLAKE2b-256 02a2b6fd7bbf2bbd2af46f35d3e34485660ee3fccc3f3ef7b5dd7b314d8c6788

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768463664-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 d1e200a379abda418a0e167b192059b8dd21edf179191d49d8ea99f19501ad8c
MD5 85816c5ded794f35fd941fa6cd000f9b
BLAKE2b-256 9a2551537c95e9c0f6eae81158227cee89abaf8174e34bfe4831376ddd42891b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768463664-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ab81316b1ea7ed5914ae0f6538eb96b302cc40d5ab0f51fcce25e45fb205dde7
MD5 c0c43e21895e9d18df521d4297118eb6
BLAKE2b-256 949290fb0fe04a9ad8bc16d3ed35cc60db429a041f874836b6fe49ad22c5acb5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768463664-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3b03a90f0bda58494fedbd117c5a6bb0e04dadfdcf3d9e9839eb2aefc47d8ff7
MD5 fb4e44198ac9bab8bfc4d00744398af5
BLAKE2b-256 783c515eca6f69bf708ed76a16fb82cd1e96e972a28354be2aaa1ca3932679e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768463664-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ce1249073e60708e61cea76f6ddd26a10892d947dd6a7501049014f256a764c5
MD5 c678b9d7c1b76924c2ef8cadeca74a35
BLAKE2b-256 c9b9c312fe140caa7f90f620f7fdd58c4440a1768319118038151fe410166f4d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768463664-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 4cf0e1e36ba648af9739f8ef39acc4c3794775a20dbfba5379d051202191bd03
MD5 ae968e9ae058417c8a6ce15ec5532ef0
BLAKE2b-256 1d64115311f140364ceda886fd0bcddf815cb75eaf70ae1d7d060f469851e81c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768463664-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7939ff0f71d0abae95166f8a04e02562663a1f839349951c6ef659f6c48248b6
MD5 07f4977e7b803cc779ef858926a69c65
BLAKE2b-256 4192ad0df733eebc918e7c7b7e9e974579cea1ce36bf2a39b50d9ee2a7f9103c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768463664-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 de4b0ad39701ce455586005c5856638b7ebd74a0ac526a7d75c81ff68e566c28
MD5 2c030fab0ebf7c491b51fdbafca770c6
BLAKE2b-256 184435c2c3e18551068bfd4f7deb7cbfdd43e8c6fa87e765f083ad3eea07bc37

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768463664-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c2e69028aff20751acb3c644a1d9c7a131894fcfc385995930682b7754cf5972
MD5 a2171a59b0c24156fc44a597763d742c
BLAKE2b-256 78cb88d093f56d7953cacba15daa7940051f18d6c98f2546ac0c32ad71195844

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