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.dev1778714498.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.dev1778714498-cp314-cp314-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.15+ x86-64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

stim-1.16.dev1778714498-cp39-cp39-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

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

File metadata

  • Download URL: stim-1.16.dev1778714498.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.dev1778714498.tar.gz
Algorithm Hash digest
SHA256 8793c61f3067d17905e112a447185976865bbbb1bc74d623ea2b8fa75e0cefd1
MD5 39cf23333aeed755f4396fab6f35e887
BLAKE2b-256 4de97a27a0aede877390a47fe56aa65d33730a3f30eaefee265ba51a505f373c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1778714498-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 f7d2592817ad82ba2967dae0235f87845d540f0fac3e2ac9cd05b4cd9045a89f
MD5 875a685ad6fb69f2f56a811a2ac3049b
BLAKE2b-256 e3474ae22fe1e2da5752f02ea1a61eaf5296e944697bf0f84dfc74f05307164f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1778714498-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6b0b8daa561fe12895598f247a5c5689635f7d4bb1b078465572177f99998fe0
MD5 cd8c8b1508d69b82eb55326d14aa90b1
BLAKE2b-256 be939482a0d8a7bf4dee0f1a69c8fa91a1fa23661855b829e09641b8e94d85bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1778714498-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e501b641fca4331bb64e4544539e2c9574bac0b6534eea0f5a0fa80d66c0caf2
MD5 f28185bfb94b1c4b7ebb69adadc9083e
BLAKE2b-256 e6bb7c915b3dcc0faf81315a4840ef93776d125043f7bf80ca2001bb19d29472

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1778714498-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 2c5f62f6fda0ab6decd37d00e843e23b0bd0c813ed33e4216e5ba602cbea75ac
MD5 fc6dfba26142c5a3aaf005413d2135af
BLAKE2b-256 d57f36b33d53bf4b54f926c445e1cb7da62675c8abd34156df5fb02b3e7316ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1778714498-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 4e49882ab113a1d4cc6a9926d3ab8340cd2ed86bfe5d2939048bcc23612aaef0
MD5 23b6afe4af3eaebd62db1ddc768fb129
BLAKE2b-256 d82b012abd7b29ee332c4c83cfeb1865860e5248d5a2fe2d9e3b48c26ea20fc3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1778714498-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5c1f4e88c322f77e92b0e50aaeaf6c047cfbd3f8f38a8caf081dc3844c8f5f80
MD5 be23faa1b174b4e03c88018de123ebae
BLAKE2b-256 b47445b738a4e1821a23f94b86d0967a2deb0389bbd1142121d729bfdc8fc226

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1778714498-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4217e179b32bda82daf77661f774f4b33532ccdc6a7cb9365b6ea20287b894f7
MD5 2dac232c336678a41c72fcfae481e065
BLAKE2b-256 891b5e4eb088406686a9e40ce39c7aa30b52270ecae4df4ea92cd7caeb1541cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1778714498-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 e1a64962cb0d703a1630b55b086ac1e7320d729ead228b31812af4f4c1907608
MD5 c5ada5c324d852ce10be1acc06238435
BLAKE2b-256 893b42cc7e6c4a47631daf5d0d5d05977ca4483cb4b691fef06b6de405627335

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1778714498-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 63ad90e6f0cb1f47ae8ffed400a559e1a08235e203ffa94f99e37c16124ba566
MD5 a3b44aa5f84b85fdc294c1ac243111ed
BLAKE2b-256 17534e644a20ce1ce7e618bd25a1d55d7303804dd904ba836f42d284f1181d25

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1778714498-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 70f01ebb246532991c35989428e9f73a49c8124d80191888be6ca46bb76fb98a
MD5 d2cb207e243b42ee96baf031deea11b0
BLAKE2b-256 39c1ec520d451297de23178c7981c1772a6037c678dcfbc65bec01db7fc48da9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1778714498-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f55077b6b743f99a71aba170955c9167f0886eaeb0283d44a885cbda9cbb74e2
MD5 f14d978600ed9e7259d95c83f328f1db
BLAKE2b-256 aa152a89b9ce4204615b4aabd09454006888c8e7cc3a2726bb0eb93425d89386

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1778714498-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 a11298fd8f77fa7047f6e0d16f2b0496d7516ecc606fdcc7f03914349ae52467
MD5 2ee4b72cc5682326b63b5a874b8a3dc5
BLAKE2b-256 06f0b99332b5e7e312c9e70fa36d5a86886a92113fcab4551fb59cc529997660

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1778714498-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e04ff931462c76a05dc5df67464d1adbffb6e6064257394b4a02683061d822bc
MD5 72cc6e96a2add1e2276ae954c672beef
BLAKE2b-256 f60e5115d36db00ff1f671660062e4455184de47a5bc45d1f6e36d6970280b8d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1778714498-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d9b074cd08a7f4746a900c0f1eaa61baa19b303b920ed05102507e622e718dfa
MD5 998536c57a8fc492bb03097edd51ef76
BLAKE2b-256 2311b0f17abfe813ddb2b478ced010da5e46928364f3d730a06843e16e2e74a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1778714498-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ee2ad056b8304fc5a599806ca05f227ff709e3960007bade4e41273a25d2b726
MD5 9017afc606f9cfd3db99530beba840c5
BLAKE2b-256 c824ceed56cc74ec0d2ec93c41cae928f48aa19d87a25f48a4d9ff6782dfac08

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1778714498-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5d786955a7ab07cd3ab84b109d850bc7e2edead450e3cb0a4ffe3cc81f9251e0
MD5 dbac590003cc082a0cea5c94674c126e
BLAKE2b-256 b6a2a8c0f91981a69fbadf84b3ecbc0e030d92e4fa92e0869a6455c890b9e9fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1778714498-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 77e83d9c56dab791b01a7dcd8c9d3eae708fbf846ea822eb9e5bfc48a3085d4c
MD5 85f73661bc4c6e4030910a800b19c20e
BLAKE2b-256 3797fa0fc24b825da698e4969c7099cc9b3004a2c2d5984c0a3d2d2f1d185842

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1778714498-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 951a0c430075bd5ac9bb8137d8cf7832f29a029c381bdcd342aeeb029cf23d1b
MD5 4e499bf321c0e4e99d05284d75f07ad4
BLAKE2b-256 7b736131f69f4b05bd3efc99e6030149eb5dbdf9cd80c41746b3b668108b6ffa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1778714498-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6fff1b55282deb02fe53e1f757868d0e95d7b756b6f2a5134426995663d9087b
MD5 3fa7cef6e1c6002a3d9d801956eb9481
BLAKE2b-256 de35a0587c1c88e3801550912dd504b1005f5f04ecb68a7808e63b616e61dd7c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1778714498-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3286e7d7f6fc4633f322a2887d9e7f3e60a4c5c3932172fa287f752c4e5c2b50
MD5 133cbf44ae36b0e75ccf8d6a974b2c4b
BLAKE2b-256 220c3bb66f5917b66cd0e89236044ff2778233e406bd29fe6ea9efe30f7fca05

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1778714498-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 005ec3b6b62e232fec4ad41e155b31dff2296e3941d2f2a8ef080cea9f887b79
MD5 11aadb6ddf6f31a8abf6efa2a800b130
BLAKE2b-256 e25c06e8ff91f0bb65a0826e83cf1e252dfabe0c426c5ca14ced891e1c32648a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1778714498-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e080557aa216bd646d854779da8aab604eedeb310d9fae192770b5519b4f714d
MD5 7e0e0d3d87c5aa806233d7b35f53d30c
BLAKE2b-256 60e60e0e38fa53d29193f04318c30b80fa900e389abec9b326f35ff01dd7ac0c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1778714498-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2e451c21773779a0a061035698e9c316827605cfa0313b334391c77b64705c8e
MD5 409a728ff223f3854046c4ad1abafb2c
BLAKE2b-256 0b6803162e8c1e3e46031c052bb8304987c7c23cef33a3e0e39b1597192668a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1778714498-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8cfa872aa2837de0c27090cc4f18820dfcb0b07428c3aa07992612fc610b007f
MD5 03b10bc4038e625d5adc86b26fbdcc8b
BLAKE2b-256 f48ab6c0e04146f6abb856e1370f83aa3d6789553d12cc4eff08413e0316710b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1778714498-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 4e5ee37cfc6044a7dbcee832910c8b392367efc6fc64ce4bdd5d39668ad5010d
MD5 0b2fe4c7eedbfff96bed8bc38848eabc
BLAKE2b-256 6a681eb6b06721bf61d278c2b884d382199821be51a6481cbc7a9ce8c305e705

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1778714498-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a907dc82304012dd8d166abc0079f8f84b777b4046f1a5da3e29c1ba77ab7d71
MD5 2133e6f96e4f650b72b562226297b534
BLAKE2b-256 43943a1835350ea994595ed1d2d1976083cf7bd540f8b2ecee281a584536c1dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1778714498-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2b65081dcf0ca15c193ae891b222570aa0d53a522f264393f21d9b51de08005c
MD5 e691a66333e7516df7dffd158e17b332
BLAKE2b-256 34fec1559e8557c2b8ae5477bdc8c91b321478ac1202f8239565530ffc24ca98

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1778714498-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 de7f8dfb49544b84050dc5d485511cee3e676176824b7c0363837c84ef3c8317
MD5 ff481ecb704cbf66400680cadc376f0a
BLAKE2b-256 a7f885211ab9bf4a4f0dfd3ce196fbbe09503358675b34786e6a107a4b2f34a4

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