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

Uploaded CPython 3.14Windows x86-64

stim-1.16.dev1768459926-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

stim-1.16.dev1768459926-cp314-cp314-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.15+ x86-64

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

Uploaded CPython 3.13Windows x86-64

stim-1.16.dev1768459926-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

stim-1.16.dev1768459926-cp313-cp313-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

stim-1.16.dev1768459926-cp313-cp313-macosx_10_13_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

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

Uploaded CPython 3.12Windows x86-64

stim-1.16.dev1768459926-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

stim-1.16.dev1768459926-cp312-cp312-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

stim-1.16.dev1768459926-cp312-cp312-macosx_10_13_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

stim-1.16.dev1768459926-cp311-cp311-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.11Windows x86-64

stim-1.16.dev1768459926-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (5.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

stim-1.16.dev1768459926-cp311-cp311-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows x86-64

stim-1.16.dev1768459926-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (5.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

stim-1.16.dev1768459926-cp310-cp310-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows x86-64

stim-1.16.dev1768459926-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (5.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

stim-1.16.dev1768459926-cp39-cp39-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

stim-1.16.dev1768459926-cp38-cp38-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.8Windows x86-64

stim-1.16.dev1768459926-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (5.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

stim-1.16.dev1768459926-cp38-cp38-macosx_11_0_arm64.whl (3.5 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

stim-1.16.dev1768459926-cp38-cp38-macosx_10_9_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

File details

Details for the file stim-1.16.dev1768459926.tar.gz.

File metadata

  • Download URL: stim-1.16.dev1768459926.tar.gz
  • Upload date:
  • Size: 865.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.dev1768459926.tar.gz
Algorithm Hash digest
SHA256 d240ecb2b160d14e1dc076b4ca55d0be8b3a3004aa6ec77e66cc5cb99fee7189
MD5 e581475c21fa26091ac91517ff83739a
BLAKE2b-256 92d384ff2a10cd8e6abc7c3ad4a4eea388b7070a9e8a6843e525045070b0b529

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768459926-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 618bd199c6415f942fccb8d626a29e0afdedfb5ded41e944e79c5112f75194aa
MD5 0d074fbf0854328dfc63bbb91bd80ab7
BLAKE2b-256 2cab6ed8e79f806bd7228111412c946bfa41f160c36f3e02a9d9a7de5280a474

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768459926-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 48a063246c32b6f8bcdc5eb8e70839f64a0d09457de47e978c2111fbea45315c
MD5 3b4618b5017f4729f557bc0452155695
BLAKE2b-256 ee4a1548b3e089dcbb30a456b198818221e4885fdbb110f5df99f70bb78ad373

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768459926-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d07bb60e4483cbffa9bdd6c8c021ea94fa7389b9bbb9b34f3a75bb5feb4a7359
MD5 a2626beb4442deb4ce3de79f25201490
BLAKE2b-256 f7272f9113e6213b5dd134686787b9bdbc3d212219b307684d0eca13603a0de8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768459926-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 9cad9da5973d442810aa808185dd5e5a5bd87b44ba0692391ea47a86b5c6b218
MD5 50d2098416e698ccb72bf2e06468b7b3
BLAKE2b-256 27f1953aac9ab02a611c85997fa74481439fc82590a98f41c5a3bce6e4fe4c68

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768459926-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 17f0d23b3ce44945359692f400255577884e2c681835ebb69f281ddde1bd48f0
MD5 f6d6795f760d177ca936c3a76ac84c61
BLAKE2b-256 4e6be2ff35efe5f4d093217858f5920587ab7edccd08dee0fe4b0dcd74558f7f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768459926-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ea24b7048dc907823351304b8daea8bfc89cbfb76833dc5a1d951270d44224ec
MD5 08ef3af8e39db5a3b1def697237c69a0
BLAKE2b-256 763ac95604def24be6d53dc7ad67d756c69a1c9130487e215eb9bf22f8fa0bde

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768459926-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d9317bbc75ecd8079a614fbc82dd7189f72d8afc2dbcf9b73bb8419687dda296
MD5 5f731a6c3715766eb699add1f891c20d
BLAKE2b-256 6ad4da9721c2c341b4123937703084ba5c5994a3d2e7116c0e4c4b3d26bd3643

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768459926-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 b16effee311260783b8f378dd0a50d902ce9a66b9e8c8a5217cb77e74d3a6f4b
MD5 4897dbe87035696863bcc50b371e5848
BLAKE2b-256 dea9da002f7b811a281b083e4be64cedf331b3be3db6b39fedfee0ff1dda2280

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768459926-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 5f2ecd44a3fe6777d88685da9afa00779232dd21f651bc4e2f492a03de8e0162
MD5 b430389716d02b26de4b0a77c43b7011
BLAKE2b-256 10b8cbb491a3142f1bf8ec2c0b06953f3ba94a8b84e89357e91429054fd60b42

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768459926-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 401a7b55c58a73703b6725a15bab0d9ab1431a6811c51933274161a58e9ecd4e
MD5 53b6ca9ce15a139f12e80a1d0b3a541d
BLAKE2b-256 2036e7c78b93857bacb5f64ff8b2aa51cba9ca7dcee124095b019d29cab98388

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768459926-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 78485b705395b1ec2df2a3c4d48e007153ca9793d91d91fddb1336be86eb6248
MD5 f38b80d443f2cad2fa6ad7c5f195f998
BLAKE2b-256 1cb49784738930fd9e9269c92716eb515b4bca4a1632c4585869ccd6417137d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768459926-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 4ca94d019a51b239f6ea4356027480eac310cfa4c011b6ef0c9092ff13d42e54
MD5 4953766a4935b4a8e370252ff4eb3401
BLAKE2b-256 f0382ca73fb9f1316f90916bd76d949422e668bdc02efe8260391a19ff7365a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768459926-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 8e300bdf67e4f885b576290c25d0d86bbbd52dc26d634e641968cc6a6908f7a7
MD5 e7dfa3d18f91f684afbb756492fa5cab
BLAKE2b-256 105edcb9fb93a5dec546082b7fe96671615f749d659b271e39b995af3647fdbf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768459926-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 aed302efab376baa434316be4e41ec531896180fcfdcdfa56ce932338fae51dd
MD5 2c1a069a8226c7f24fcc76f968542694
BLAKE2b-256 b851cbb93ee3fa2771ebeabd50913dec5927bc5c42b08d94b6e104a5462bf718

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768459926-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f13bc6816ade138583e88ba84101c63e0d7cdf4c4c007b715c8fa2ca6405d7ae
MD5 bb3ad6e8024ee26f20a6d32688a61570
BLAKE2b-256 7e70a110033566d29320ce9191c5c4e8a5ddb7f679418ca1d19f18cceee825e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768459926-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 67bb8239e2f650b35f020451015681e37e1c096ab3d38d9cf9d5aca73bcb7854
MD5 872ea8ca6eab55acb966fed53e35265c
BLAKE2b-256 2be6bedfc7835649cd882be1360e0f8bcb565eb8b76bb521959990f1e6a77427

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768459926-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 c2111ad071903711fab4374ef8045abc0b4f1f3957a49d5a7c93aea120d8bef4
MD5 048cd078a57dd3ca233f8a4bd5e7ef44
BLAKE2b-256 e0206a6da94d8cdd5ac062947d4d7d3ac4f4d7639aaa84a28b653e1d4977deaa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768459926-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 374f9a9e71c46020fc128c25b5cde1a87fba223d599d01bb7e708095d4f06309
MD5 881ab3a8c6f602f4c98766a9ca542226
BLAKE2b-256 dbb9c98742075b4577dcb702f396f4afd9b2f9e6c8905f0eeb22b839429e41bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768459926-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 61c5e0fbe22fc8444146b74ad2a9eef0b4f77155419d472eef08869cedb104b9
MD5 3b4b6eec6abeb706b9ae90a1e65942e8
BLAKE2b-256 9909f131dff4a186e8f18e6ddd19f0747a49c7362e0a2235891e9bf17dbabb81

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768459926-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a9a5db685e8765687d1539723060f6ae746de15357adb4312fa5146d60c9e73f
MD5 057f0021fe107bd51110f18ad2bc3cbd
BLAKE2b-256 042f148d56f7b56f787441dbce00fa7d8e0cce9637242d18d256f36adabe331a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768459926-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 012222685a3b8a7ff1c30d8f536b6e6cb7a9ef69b6c7771c706b758bcae44e83
MD5 2e7d0ceefc648c851528d2c4733a0526
BLAKE2b-256 35e4e09ac0922f0f09ea82aae69877a8f20f2859f6bce2761e5d52a8386fb0fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768459926-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e727bae0806c13cf6f53a0e2eec8b4b5c98ef90875fc95bdff3884cc630c184f
MD5 010e653f5d0cca364160fea3994fd260
BLAKE2b-256 b2e05ff8a0d4f17bdff17bceaae817ef4537f2436c2aa36231dbc49a7e518615

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768459926-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 41dc8d58f0016b6643b086f8689cd473fca00f592bfa6bdb21c3fc48f5a7f06b
MD5 0579315d97e067205b811605a4af53d7
BLAKE2b-256 13a376cf1b9e27cee1c18297b476355eee14645284e616496232efd6c881c3ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768459926-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 33c84a9bcda47a226e57d59004affb70e479f25717a2a5aabd53239929e8ec2e
MD5 b388c89d9210fd330786f1e5dbb3f2c5
BLAKE2b-256 da493402bd17e8f4f5f9b93003681ace8fbc0fcf5ddac55ad22af7cf6c270b8b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768459926-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 6032cfe02a2fa021b772dc2cb073e3681b3fd60c35ae66dfadce3eb12f726bfb
MD5 16f5bf344d6bcb377c90ed650bbb694b
BLAKE2b-256 e46b05cbcc73cc8098d3af86bc2fddfabe33328e9cf155ab1312ef53234404fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768459926-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5293bf612a7238bb2e4702ee3a6962a98337ede6bf8584d38c82a484c636689e
MD5 6a36820216b326c5d31774d4be4acc51
BLAKE2b-256 445429112127fa175edd79dba107069bf3eef9d9b2e4f082ff07c4085210f931

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768459926-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c36643d884f8a52b7c5a2e51bddd01e68911b7a0ec90b7d127cec8aeae314611
MD5 0d4408b1a0e59ed1ca73943709d877e1
BLAKE2b-256 43e9862efa48008e6cb54ee7e426546159624d5742727b8c46618b8446d824fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768459926-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e3966820d2f654e4cb2e9669d2aa0c9c8093b40c703342c7e300dcb8d611d933
MD5 3d2c70562e1c7eb0909ac559eafeff3c
BLAKE2b-256 9a7a6ce83d1b1beb0d253432138dc30ca4ad0826154c438ecdcc19889e2c7d0f

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