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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.15+ x86-64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

stim-1.16.dev1770171649-cp312-cp312-win_amd64.whl (2.8 MB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

stim-1.16.dev1770171649-cp311-cp311-win_amd64.whl (2.8 MB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

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

File metadata

  • Download URL: stim-1.16.dev1770171649.tar.gz
  • Upload date:
  • Size: 881.8 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.dev1770171649.tar.gz
Algorithm Hash digest
SHA256 13ede12a7330cf38cfeaab6bae2eac6fd7b7fdcd2abb9352f555e8b3d5127587
MD5 e5b320b6bdfaf1e021c5de2dfbbc435e
BLAKE2b-256 c3f0ab2808f37cf2a5d635f1039c40279ed94884361010ef16bbfb1a11d536e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1770171649-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 32d5b69324372e5688a7e7d7a1cc4d133f4a1a571f65d9e2a25ac0b505ef744d
MD5 37db2c3d8c38475499144ff87087eeba
BLAKE2b-256 2a55f329bd30ff76c379197fcc9e6418e357bd8821155f1384fc49c86e385f08

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1770171649-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 788f14aeb230ef53e9e0acc9c4068475c32ec515a20fb3c84861d92d12046ea3
MD5 af777b60523e6599c4430d1f45f69728
BLAKE2b-256 213f4cd08a0e2137879f15fc1f94c52b0955f3d954ad44314b0d7b04546bd74f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1770171649-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 899b3dd7b90081d50aea28994666577920840c1226005e5f216718a45bf79988
MD5 88b304de3a9001d27a81198d2ade4dc5
BLAKE2b-256 a96543a1cfaed01e182aaf6bf8756c335b37478ed4e234e2556a4d5176e910e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1770171649-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 4cbb3315766e9181102f787426ca8ec7e56c2ec9bd511b29eef8289b6277d596
MD5 5e6c66e914180f3b379f350fb0a65ae7
BLAKE2b-256 8719a6b05eaf202ca9b9da86fb71a590330844dbe54b2c3cb8bec98b8b882440

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1770171649-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 d5e305dbecb5cc45b10d5836712f3b9514d47b2a666c0fa516f189e778813a08
MD5 9b7f03ae460d7bec9254646f6952cb61
BLAKE2b-256 9b38c6a478141b76dd7e602900ea15ea39771f909fabb6f10da7a5e44c94166d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1770171649-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e8228470a1c5c2ec9e29a89309ecb44836afc76e5f27c6fa0809ffb40c40da31
MD5 4a8bdc97eab23dd9f7a482cc1ffa7a6f
BLAKE2b-256 6406b585093f6c813a11aa990669e60fc9e9a943b84f9e5d28a52d1439d7e3b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1770171649-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d700b7c929ac991c4a256f501a4860fd21b77f10ddb1725f193ae3deba8c85ef
MD5 528cf76d07ad635f07f833a417a07b05
BLAKE2b-256 6ba5c4c6e0e20c41eafc4e2e82aaff2203d9faf122c3934276c4cfd9aa31ce98

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1770171649-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 663481747e320ce83ce60074a3558bc276c4f3c9726a093bf9cb5b159a85a75f
MD5 4746d96b992d141f83fc557e81c2b53d
BLAKE2b-256 a674e9bd09bc394ef0fa2fad2c1ae738c78bf48fcf29f048d6880beb9689707d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1770171649-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 532ec4d5ca05702532153c10b492fd1cd0a2f4ead077756c8cda910a64ce56f3
MD5 7c002af5fde2170952b68878e5311e5d
BLAKE2b-256 98560ec4b8132d70c67da22040aa31381fc3f7974e407f2b2b44c5ddda7ae65e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1770171649-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 96902e08baf62a9e501e4ab215faadbbad8cb08929946ff26a06ee1074535c60
MD5 26695183019796c041d97b5711f1a44e
BLAKE2b-256 6dae9addb7195d98531aec08490de0302b70b26d6184653d7e681bafbf2a4139

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1770171649-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b38f20679754fa6b9128508a2ecbd4051b8ee4ae046a020ede3fb6a5dafb0dac
MD5 81d1e181395f3c70547c565ffd9f00fa
BLAKE2b-256 a4a77f5787d23d61ed7229b2317b98e77580da532078ca320a6819f4e0e87e3d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1770171649-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 ca56fff5ca8feac4ae42518fcba6dcde3c38381ab0cd4115ea911b8028afa18c
MD5 4635ac7656463ca8cac1802b8cb50d72
BLAKE2b-256 89a14f3a85ea4ee584038849dc9210683b91426573f6c125e1bdad036c5740df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1770171649-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 058273415a99dc363c4a132fdc57cb2e230d81e6f6c3835cde6c951c972e2806
MD5 5dd05ff26c3f0e427da115a5e91b0902
BLAKE2b-256 07388d2e06e00663aa4f8cad252f1e9954de5f8c02bdcd395e51d278d2c82441

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1770171649-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2207f01611663a934c6caff78d56391cb63921c2daa3f1d2a06c4556a77d19f4
MD5 a05cf954dabe49b1ad7038652274bb71
BLAKE2b-256 7faa74ee9152915f51929163330f33b606b1e57d125967ee4a4dc7a4ff2da44a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1770171649-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f0642007f4445a59574a720ab30c76586a3307e7c6ef428a6d1670f93df52276
MD5 cb48fe0e537d20e5577f7684cdd0220c
BLAKE2b-256 2b9e798d38453e1f4738773a006d89187a5dd5e1fac6867fa98e36a367995138

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1770171649-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 97a3e8b0a082a8fc1da06dc4ce4bf4b17cc4398f6dc72ad3cd94a6243529f141
MD5 9bdc8e86ddf94665be0ce433e0276184
BLAKE2b-256 8c15a988b8f6ebd006181064ae8ba138801d36096e2848d6bb4cc64d67b69975

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1770171649-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 3c7fe7b8031b6339ad0113371576c7fbd0b3578e3eb53bccd760f8946d60a58c
MD5 c22877d0bf308fde46ca0cbb1e7b7b3a
BLAKE2b-256 9aa23bbe165ddfe3013e798785686cb6fb867e0d0c2968b70948efad958507a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1770171649-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2825b92f5a11d94d6c0b77715f061e64101464151085250d27e13fe006a8f6bf
MD5 d945e39f72481e5d1d475a033e3aa8ef
BLAKE2b-256 81590901cf449d2cf6d90857496c2480a4fde67b0b7d0f31be5d4ba59999e03d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1770171649-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 348a9c122b6ec7ed640f40baa9051f495e8b856684ffa3650b0c48ed84c0a17d
MD5 72cea172de7d99481932bd2eee44502f
BLAKE2b-256 174574afb3e930b5ecf9db76aeedecfe41e83fd05b6dc7202363b08513892d91

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1770171649-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e6516fe677220aa0bf48fdb3bab05f4b555410c9cfbe1305d1e37a0c94099592
MD5 387153e7b4aec08529b4dec39f043891
BLAKE2b-256 29b5eb98d7efd0df5101845105bdf8db94c5897fda47785b4e2057f11fa13ccd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1770171649-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 c358ab23a5a3f9317a5993de8a04d1d9676b46d991bbc2cf414acfc629f0f436
MD5 89d827e84d51ab080d7cbb65d25dd1be
BLAKE2b-256 29d0c7e5cedd4b4800a8fd49acad31434cb27216e532dcc4dd03175c68fb2311

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1770171649-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0fa6374bef8fcf4709f38d574a19db602d27493684b83f532f8471c939534ac5
MD5 b6348433e2848e5f14f351e8bdd0519e
BLAKE2b-256 444c047607a1118044be16a816ba45a789457bb5edb1388125638483d96f34fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1770171649-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 762e58403f8d68b0e7de0f77ab1138ba9958c67f7e2f973fd09f2dc0b3f14e9f
MD5 fa07bc3946de1068aa46b69244bfe4dd
BLAKE2b-256 2cb64ff54d96765955c1c493cf163b28c7d20eb9e4d6253796ec8c8d857a5d22

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1770171649-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6b5ea5e1c3222d7d20d8290b7116919734dec714cf6c4cddaa5883c498aefc6c
MD5 3891a12753351d01389caebc171b966a
BLAKE2b-256 b5450778450c7737d528d2e82dcf8121e8e873ade7d3c3d7e053069243986687

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1770171649-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 8d381d705669f61567eccef0c21e8cc4859c2afdd68fbabff30597b6121a0f45
MD5 95aba2640b5cdcb94d93fc46f246b781
BLAKE2b-256 39f0143095c6414fa0006c24c3da1fd5fa8934c1d8708ebd7bc1699adbe33374

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1770171649-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b3c167532adddde0accb165bbbc10abb00a43fdfa1206f5b72625565cc43a241
MD5 a9d26c29676a14b8f23850a1cae89f76
BLAKE2b-256 291354681fa8a2dca0334ffe3fb0bef0a001f865e1de558e34049142251b6725

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1770171649-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4176070f671dca870a4e30663c8f52a991383d77f67fcf369590716d5c6ecc90
MD5 960519c4f36dd93f788d4bc616c41e96
BLAKE2b-256 092ef841808ee9cf3673a2d285ebde1d6d7837b16df6d27e4b8ea57fbed2c04b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1770171649-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 83659abf6364b2dc019830cff7eeaa43cbceef3607921690fb445b092c590bcf
MD5 e1fc1cbf0449e11d539879ddd5ca2e0c
BLAKE2b-256 9d0b52115f50c1d760400a91402e5577659eb27bd8857bc636df0074d3174b46

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