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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.15+ x86-64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

stim-1.16.dev1778543025-cp310-cp310-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

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

File metadata

  • Download URL: stim-1.16.dev1778543025.tar.gz
  • Upload date:
  • Size: 882.7 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.dev1778543025.tar.gz
Algorithm Hash digest
SHA256 49eddac84348cb86e9aa0716bdafcf1e39675e60c0d0c24c3c54fdcfb585c60c
MD5 786f7ca91a7d95bd0858b9002edfa2e7
BLAKE2b-256 0920f4f4ffa03f7a0d419a66d9f1f33a4707d4046edd097f88d77ed63cfd7c8e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1778543025-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 10f72cfd88c1d85679dba019da2d56be80c6d1a65454b35696f105346c2636a1
MD5 cbd805f7b71a2577e29b38c8ebdbe3c5
BLAKE2b-256 1ccad68f04c20c9a43d7943266c272bfd81290f60fc67145cd4fdb79ce695fa6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1778543025-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c75dae6c4253197424eb04d5937936d2de22bdd7fbfe72c04633f9fbdda624a6
MD5 d9cfbd7d111a406dda0ad3bf74df47b4
BLAKE2b-256 79dab4397d5886260aff4c2e1c0f4e6a2d9deff7f682a0cc53ff7d521bd06087

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1778543025-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0880d9fd38678512a4ee38f4e6a24df64052c3ace430bdb69350bb470716ba5c
MD5 31d990adb857838d3def2897ef4a9d80
BLAKE2b-256 2f9a0408638074a2fa313347ae57cddd6dfafc807f509675126b3127d56c9a87

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1778543025-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 cfef873ae87a759afb5dd9a27db49c574bd47809424a55704ae95dd47872d97d
MD5 fb8d30a24529d916c5e9df32e321bdae
BLAKE2b-256 cdccd626087fba71c33416f356698edc03cba59347e7a4ab2c5b87fe6cf1460d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1778543025-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 9090aa5f3545560ad16e4fd172475959699507f8314a0ca51136edf89d4c812f
MD5 e8bfbd8aaacef1b50ea29fdde7f2a64c
BLAKE2b-256 c46c7c7889cbba6dbfec9f4d2ff2e0ca60f5198ce1eab4316255cf30fc02a10d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1778543025-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2832f64b95e0eaf652ca4575e98792aca4d1e37757fa44db990b5c070b550f8d
MD5 469a18754466aa5ed1ec9f1e65881cd8
BLAKE2b-256 92cf191e1a2b910b43744ea4e3dadb56df599826f29af5f55d3958209c4c6295

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1778543025-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ce6ce18269343e8f61efdaf62cc51a61e3d8a6de71e7aca7ca74ec0ba6c45ba9
MD5 c108882e509300137aa148e61eab747f
BLAKE2b-256 973cdd19404331da07ea7f3019b541e0edce38cfc767de40869763d18834e078

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1778543025-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 3493a043206321d3a177f5ae095a24ec84f38571371cde5f4badc71cd2107755
MD5 a027bb7163c8f5b45599535983122709
BLAKE2b-256 a766afcaed24476772d6c054378301821201edbb4ecd464fd9c40f278424d5a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1778543025-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d2818abbc077e1712b9d2b4941f8d7d35447186010b4a363647e9f93e1f9ce10
MD5 99bcb48586c0239ffe7d36f77f40ceab
BLAKE2b-256 29c61d5691a933d68b0dd6088488bebb08d38a0af137726a496286ff8db7777a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1778543025-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6e20c643499ad025ca0f03e49378568da299ac9839088756da0e805973563bb2
MD5 8fe932f9ff45d4dad796f9f90b1b1335
BLAKE2b-256 376815c2ad954319090d913e1edd9e4aac2e6081a019edbf06aa5780f23dc550

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1778543025-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cdc7f09e628fe3aed617fa655be1617422ae80b1f034b25cc0f02263a34e61fc
MD5 25be7fa3b51cb5ec2dc71814f8c28978
BLAKE2b-256 1d23e67c889460c67572b94a79398e1cc76ce1192fe2938d75b9ba02bb73c563

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1778543025-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 d0e65cdee536313c4194a4fc9915adc3647fa303cc30d26a78503b1e156e2dfb
MD5 4fa9afc6a6c61e56259c64ecee551351
BLAKE2b-256 c4624a70168c7490c0006b792b5b6c74d1fcdcd2875c3dad3d62ecc45f1cb97c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1778543025-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d83219b2cdb60f123f126167a5f1d5005ae01ae5a2afa9ac1cb25db0a08f6cbc
MD5 8fca26dfcb5016d6489722b5771852dc
BLAKE2b-256 3fecaf11091554073443977e23a4d8e0a706ae5d007f75dde9e5aa8ccd05caee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1778543025-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5530fbfabda16d18d24a9341c16b021bc5962f5a9fcd37fd5137023a50f4425e
MD5 6ffb521f16e8436b077574f4896d3994
BLAKE2b-256 2db1ef46294b5e9d2fd0724104c0466a86537be61c2993127fb0498cdc4e7767

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1778543025-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 358c3e93ea5a8413a5e58c3762c88e436f2c20c42112c9b3a0ee21e945c95fa5
MD5 395426d884f6c5900896969b3f2edfe0
BLAKE2b-256 3d8cf457c29db56cdb2dc49bcfb4098384be54cfa54d1cf2721fb5a89bacef87

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1778543025-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b2e24ade5b785fa3df822c2344044f9daeb110039b1ad719d45cd556628424da
MD5 d263978fd252be85fbaaa34cbc027fce
BLAKE2b-256 e0e109e29a1ed78a781841d7c815ce7290ff6fcd96e4835ccd3b3e86e8745480

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1778543025-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 4b0a3d0b99ebcfb03fb663550a2e4cbf9136bd492ac3a71a109efa929bfd79ea
MD5 bf46667ac9de1ec1838c300f8157c31a
BLAKE2b-256 dde0cc2d450cc1248ff710852fa0c4645a3f74ef9093aec84d4eb3b31e85c8bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1778543025-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 63b7f1b6b1ae70861384bd494d6cb8845b53db949e8c25b080e6f0239d9bca74
MD5 af603e8fc88de714dc7d4706bf6aaf26
BLAKE2b-256 812bd8cf7b33aa0190aefc793268af215026a4c73a5b920bda4b4556b35ad452

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1778543025-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 29ce4697ba336e355ffe401fe947373651ea19e0119685415ef5bba3db5b1d9b
MD5 d6a2884669377c20de04fd6991a00f39
BLAKE2b-256 f3285ee25733be5ecdd227f72417d4b0e98b727fb922e479eb33023b80f7ce4f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1778543025-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1980d9d5a2b7947a980e9951cd2f6524830dc7aca15f307cc748e19ec9235086
MD5 ac555776c1c3ec068bac2c0b5ad09cbe
BLAKE2b-256 fecc8ca380bc181e40353b519bba30b8e62eecd72362f904e465a71936d4efef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1778543025-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 c054b8194e7ee92fb6ea8b924fd3b0fb654a291bf09c105c9a553cb74964da63
MD5 8fc442d7b66bcf9d2faa7f5cf11ba6e0
BLAKE2b-256 f1126ffeb2b7896722d752cc8a2845208b8f9c49a3cabd8b660b2eb83ba52f8a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1778543025-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c56f993616ef17a8d1cfc577d413c35d7f902b5607da87ad23cee55f2b73b3bd
MD5 c7f5ab08dd410e0a451928fe868180d6
BLAKE2b-256 fb0fde084c94cfa942f07d88e2eb1ec1592b4a00c6f9eb07810316639a7ba64d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1778543025-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5cdacb53f60209b87704c568b0458dff687db82ce63cfa360bcc9a8657199bc8
MD5 05ee03d1ff54e93bc3f43a71e72831d1
BLAKE2b-256 16e7e2707460366d260e621602209a2be89ba9987e09a5399d779ae139914a1b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1778543025-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1501827fa82fb4cf1b1d04c650eccf33ca72587a41f5d26661e8f4b07cd2ee5e
MD5 55efdf07a757d99a5dffd692e6e0755c
BLAKE2b-256 b576d14f165391430a45fbc96268b31bdc4979664b9bd9bb2decba45366cea83

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1778543025-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 bb6a35b666ddbcdaffe2f3f8acf6a808af219306767ff7e5c5a22c265ac56a68
MD5 e33899a9b9cc2a01d92bd77b2ce254be
BLAKE2b-256 f6068754d180509cbad80174a6c842ad1ec7f003a81fbbbbcc6a671d9778232a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1778543025-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 59a0c28e85f0c0fdcdfecc9d65cb336722e16d89e73e5c2a7f8e699baeacbdc8
MD5 3a35f01cba34f61e7d849269c760bd23
BLAKE2b-256 0278500676d7e46a80c9eaed450a9236cb719f0a934d81c3167b936a691a7bc6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1778543025-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 166fb618f6abd086838ceecd92a725f35d4e21644b5859ac34ef137bac68a226
MD5 f37b42d4920056593274aaae1ca82c14
BLAKE2b-256 d3d388a75ff646b15934f8c27f7eff17a292cc68d493351ab62788341c7892e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1778543025-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 536a87ffe4afcfbad2ed5e7d87a62ebb15c1a5650850d777f687475ea6a23735
MD5 71cee50c30c3aa3805c70b76204f5e20
BLAKE2b-256 abe563295c8b491d0dbc30fc5b95ab3a5d5525295afe299abc5239dcd0f707d1

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