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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.15+ x86-64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

stim-1.16.dev1770174832-cp312-cp312-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

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

File metadata

  • Download URL: stim-1.16.dev1770174832.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.dev1770174832.tar.gz
Algorithm Hash digest
SHA256 f0407a1382bd223d9e7b3cddfbe36e46e3d609a34936708132bf08b6d8152ac3
MD5 434d16e5c5b08c4c6d507bda876b5e75
BLAKE2b-256 2c9f7027990976de98e70ee732285463f1cdc76716c7d588220a77375f27b5dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1770174832-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 e079cb2da9ba403fd6fc509c68e7683b273626c7014738f09babe802d72c030a
MD5 a52d47e990fd96e6c5d80e700d7f9474
BLAKE2b-256 ea92c8d06d420b73f846ca4f59648515addb9731ad2eedf8c8c600910c067067

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1770174832-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f5cd4373472a4fdb7099dba410b9d7cc13020c6691266e12274f40a04d546ffc
MD5 214c50f7dee0e22defef9da707ab8b0a
BLAKE2b-256 41fd1e9894ab174f4254cff7c9f909868897864fa096dc6e90f23b9e07b73f69

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1770174832-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 00f460ce8cd96253d2f35b014d58d66a12e955600a8efecc0418faa0bbf7cfe5
MD5 52f85568bc42c50a3f81f82abd9e12ad
BLAKE2b-256 00229e572327f05802bb830aa0bf88f4610b8943464c7d31099ee0b4a8ac3054

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1770174832-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 34e9f6690946db11c28448354b0eaea7bebf8792bf207124f5e3c568785d6473
MD5 7dc4c1087b49fd16ba0e58c45371006c
BLAKE2b-256 f3ca1b90210d919bf23625f2b5b5dcdc42b4f5981fb801328c280435a5ece91f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1770174832-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 39c55782efa970ac1bf78a98461ac57668891e51c1a04dabdeacf94b31be12bf
MD5 3c05892a6cc31c37bb5cee81a6edd5cd
BLAKE2b-256 f3fed771fc8c65d90147676591fb29f390d86e26fd9bb1914a11cb577a2d12e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1770174832-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fbcdcd130217c14755b79151ee2d5fb0a19880d241efbb9a3a7da3be957c2637
MD5 41e3d626f71e1dd887d2440d5e791732
BLAKE2b-256 61e07201fcb7ac5c70c47990bfb7efe26b02a646e297e193722685e235af8cda

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1770174832-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 65411519ee96e0b9b356cc01b92d8b3074770456a391cef84a0803ac20fceae4
MD5 cfd270398ac06ee9eee0e326c0aef15a
BLAKE2b-256 c377f70653213222028574c9c82a712fe063c1be901220088c781035abbf1110

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1770174832-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 70a7105fabb4380c9b5c4b2c146dee74cec9599cea19dba8f4a30c957cee8eb5
MD5 9ab2d157c66df612c34b01c22bb60657
BLAKE2b-256 f37784ea05d9a2a365a6a9d2f36d491aa5cca82e3477a404ca14f68b3184a615

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1770174832-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 4878905caadc9222c12965f9e9a03127278442bfa2c31992b54aa93543d04ff1
MD5 443a3abc5d7108290db1179088a578d2
BLAKE2b-256 15978dfda0d3d04ef7d5d1659322c8b916bca5ece8cd987be86f245811363419

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1770174832-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 283ad9f5bf213ebc3fe91453018bd4a928c9c9afdcb9600bc5ed6a0927f7494d
MD5 7d73033307dac5bf6db923833c0b39af
BLAKE2b-256 af63b06f761cb12b0f47ada85828f0e19ebfab489dd4c0de15e9da8dc4899db7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1770174832-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 20acff879cbb492af438bfc4f090b23fb73c6effa89b98fd0d07335e36ffdd98
MD5 f1da8bdb374c8aa3f56cf186fcf96280
BLAKE2b-256 d2b42beee61ab9abbde0199ee3898a54a4ac97cafd5e7e424a8769b64923a3d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1770174832-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 f2d045b4cea9f754e8e49e9071bad0ba595fea4d51ea7450cf984f5b6d262261
MD5 528a3c6178ba895db5681b426082a6ae
BLAKE2b-256 28e66489e1b5e212e5d0651af97a979d0c4e7c8abb29df264c90588bc35d180e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1770174832-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 afd0fc7aa34f7e1a7739a96d9c96145a03ecfb5d85f2098876220c1aa07baf79
MD5 4d4116786abc964bd18da1ff877c7af2
BLAKE2b-256 dae95c6fb1ed5ee64b1857d86a1fc0919a1c1ace03ca26c8cebc43b76611fae1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1770174832-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 63a446c99a0802e95740046ac6d6ccdf1b90d389e9a2041d33e2ee881af3c3fe
MD5 dadb0ed94c63ac4b2c307791339b41b3
BLAKE2b-256 9c7bec149af74c9adf74e1aecd2030eadce8b4267d310af7f6e55102dc7c1580

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1770174832-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c583f75b9c349e3669abdf2e80d5e027044ad1b4063a504e5801772083ea698a
MD5 6e60b0074d1d8367397bf9231b85b765
BLAKE2b-256 e003820c3831e95cb8ceffe4666dddcd55cb099bf5c8d77c87294381d271a43c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1770174832-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 60182718d97c2e8dc567b1650d08dd422168195667cbd3f6f316f6baa476ee25
MD5 f433a7b55e17439b58fd558f177c4ec3
BLAKE2b-256 761db41c320d5e39623f2369a34248161eb05d146629dfd184f11bab0be7869c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1770174832-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 7e2d9cba8822c374f0ea01a4ad7448f2176ff0f5c099f25a1554e1cd9c180fcc
MD5 e918d221e1d36970a777a545a4c4313d
BLAKE2b-256 2383a737425466e7f0b83f069e021f61c0c012115f75acec2aea863f5a5c3da3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1770174832-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ce183719b38139bb6f033e332022aad82996282aeac3e05be3f99902d6568cf1
MD5 1ed53afcafa45315e9f97320f5ec5c50
BLAKE2b-256 492bb407f0a1d7162bd68172b51953c409fefc68b6b201dcef1e0fb2d8c2616a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1770174832-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9bc49ffb739310b383e64b557e3bca159a06199bae4852053194e6b9a0ebf44d
MD5 498464df6470da611d22d5a9c4c698ac
BLAKE2b-256 9553aee73cf4385a67b88951cc3fe91b0914cc572c0a5af7d7e04563c356d0c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1770174832-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d8b2b1fb28ba7bc870a09b9f81ff31e5c90613a20ac42e4e2fb749f7ff15a7fd
MD5 1c5ffb555b22ae4d790019a0c2ac28a0
BLAKE2b-256 8d7748f9fc6a91acd0ffb3ad36ef1839fd9a22d370d10bb719d8f3bb61a0eeb7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1770174832-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 c3230ad6bf109caa0f0a8f7608cf2b0277bdf752d93104b9ce6b91207d61907c
MD5 74ec29522b69b8144f7e3d90c9430792
BLAKE2b-256 923391518dcb9dd1efb5d2270a7604db3857aaf585d1586e90d71f6fdb925a08

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1770174832-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ede1e10806cac59b092bef7a63a2c82008f0cd734b47484712c11215c792d966
MD5 f5e727bc8b3941dcd79f442e01d6ab59
BLAKE2b-256 bcc29846333d850b9c5c866e8f763470010dc62d9c9c2c458c8b83dc7522e66a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1770174832-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 764a6ac33711527bf7ca281f6666a5c2090753c6f07ae696484412bf5e109840
MD5 d0a4d625c2844ba26ccb3a9368a2c6d2
BLAKE2b-256 0251d93cc53c7a371943379e37889d183ed03a1b60d65ffdc3259a7f378d37a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1770174832-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 77bdf3fc5697d7a43b785a115b5190c450958c5b7a583d3ac4c333599de80ff1
MD5 a9dd8432d0a2e4a9e3740905923e7997
BLAKE2b-256 d200b42c0c768e94f36b37f955f6f19599e435e104bfb29ddf480cfd4c66bf1b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1770174832-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 f1476f40e438a024e61362aed1c4fdd1780f131265e6e9d3cd865903749f2c2f
MD5 e10170de7074d3bb11b01ab28b5299a0
BLAKE2b-256 8ae4b3ff0a4c6dd5b16b637b4c4947f1467b0a1c5dc12d0887f59d91cef14785

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1770174832-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c10892858664589af38ef09343d6ad6e3ee3a1d14e599a6ee14c74341bbe2135
MD5 e7eea973055a9b8e71acb30319b48a66
BLAKE2b-256 be80ddec47030605a749589e223cb3ce61e29467d8414ba478db916e0bc71178

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1770174832-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 192bac1b204c6cea990fbab9ecde2c8d2b79d433d71867d4343d7080ed8f30f5
MD5 c6c12604325ab355173769a19185a275
BLAKE2b-256 5dc362fda1f7a1ff4ffed4b5440767190dd7f91ec169b31c1d5922339b889d0a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1770174832-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f9851316f18d7a43566ff83c88c2d3de6dca3fbe32884fe29fadc95b90a84c5f
MD5 e63d4364939518eb80c9b5492183aa74
BLAKE2b-256 e76716ea0f8701ab780911a0a356b2ead414785ef1ff0481134c58cfca892105

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