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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.15+ x86-64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

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

File metadata

  • Download URL: stim-1.16.dev1774991977.tar.gz
  • Upload date:
  • Size: 882.1 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.dev1774991977.tar.gz
Algorithm Hash digest
SHA256 8c30d3d6f76d0d7f898bdcedfe4bc3b4611700b8348b39db15b46c1ee8ee0991
MD5 227b4f4973d0891de64d9e34aed9a2a1
BLAKE2b-256 4e303d471f089c5b348db798c15786e8036b329b998052cb2f2b2bab33d7130d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1774991977-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 ab32f222e5ae525f516096a5a0aac1549540c301ec8e8b6d3be0a7741c9cf407
MD5 547b7e74c6dfb05ccca45b50e8af3cf4
BLAKE2b-256 adb2c27a5a2919a5c5d74fed74de859c624e3febc0f24dfa5db7a57c3109630d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1774991977-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 37cd3b18c1b31b8db651fae6b5455fcb2c8c15f302ff5222df68f7b52aa61d33
MD5 91e19dc4c8212c19aead53cfa931a93d
BLAKE2b-256 ea4e40b59b1280710ee46b8bf00869d9f5c26381e0521d2c674e4e63b691ee05

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1774991977-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f751740972c97e6fc98c82c947e22f8318e091b943368cac1b9ef18dc2354244
MD5 b3a2a3a46fba4090d2f21ca83aab9710
BLAKE2b-256 f48bb46520c0b49c1d4c0a183b2b90b967e7ae588acc7316f6fcb264bf1da58b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1774991977-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 b9b9476cae188e1a8f3fac4dc49157db6087386123b4177ec6b7cdf859c150d6
MD5 8a850e7b8ce182778603617863fa37cf
BLAKE2b-256 27128c8810e2abe374f5004951193a62bd392eca6237bdc4071af35011d9277f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1774991977-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 7f2989e2c737b72c9b374dee07ccf325d108638f9f97eef3b4a978ed9c24f92d
MD5 591c31db672069da3ef135d369d8c89a
BLAKE2b-256 2f5d6e1d529b775546bf01091388eca55b6cc0e740eb3bc73509a181be1b9844

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1774991977-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d5eb88b2ecca2660a1167a8ecf48f3310decf5d26a40c6be886f9fc7a8c03c2b
MD5 609cca7453a215ee64b82d92fbd39741
BLAKE2b-256 f1b2bd84bb9cbaa53bf3b7df1fdccdb515f1a26583a465af7b28b1bc0f555130

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1774991977-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 eb5d226700b7b46123c0d35c7b0c9def72f82f3a165ee6a07d84a1b6a53cdd81
MD5 2578575ed27877573547fc4074ebda01
BLAKE2b-256 c0effbe7ef5c04125dda9e68fe0b843f13b380c777ae0b0cd1dab4816b5410bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1774991977-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 06a070799cbcd5cc402fe506149eb22f5f3a61ef2a813d503d41ba524b18ed32
MD5 1763532e1fa29f275dde756934e61ac5
BLAKE2b-256 2cf1dc53c4db905d7e25ad7c7156879e7fcbe389bfc08b1ac2bfae0f553b84e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1774991977-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 37bb3abc02342c8f8fc5c5a836d116576adc58a37146448d5aabd685e366fce5
MD5 1a23d668f0ab042b67967002340083f7
BLAKE2b-256 1ac367fdbbb4222d80aa69138cb2bd7f0eb30ae57cb6f582daa9fb9dcc0ac4e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1774991977-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8b96d5ef626c696d84b302daeb64b853a46a60c8d0fb705d48fa2f800ce6b503
MD5 aff072af5975a1646e10a3a4c30e7ebf
BLAKE2b-256 4ce9dab5b6c42eb1b4fc047cbad2bcd9f393d9e4a725c7c891483d063746f3c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1774991977-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 07ccc2baccfe3ef178335bd46a5dac3662db6752ac21ce94c0ce1325f0c26f9f
MD5 7d967ac12973013adb4a3c99de00510c
BLAKE2b-256 339dc0429db1e68e6a074eb774a4bfb2d6e5cba7c0733a8806a91cde625628bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1774991977-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 3a31a7b0c2acc81cf3c9ecdb5750198ef41501c07c97c9031b25186bd040037f
MD5 f15ae9eefb53a1dd1d06f6a20f215fa5
BLAKE2b-256 d3de9270777d3d95db904ab3f856216960f71955d40fb61a3a3e8c931988c12f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1774991977-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 9a9640a7093f26723ed24f0400ac13cda79fae4b715b24a98153dbb015d22cfe
MD5 145a350fc186c7e262f744f3ae88df18
BLAKE2b-256 c24cbaa49e23b82762fe2d3f68ad38a987d26cceb5ec855414a6ce2a1ad731e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1774991977-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fceb27001266d94e7f803270d1f7f62d34fc66f94f314f28e907a3b5b21995ca
MD5 9633fa1915156e399ad4f40ed01e7055
BLAKE2b-256 7426ce647846b2cb7833a01dc3fae6c9bc46abbfff820d4deb72162f42d89605

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1774991977-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 89840130853769ba59c031cda8122afebacc645546b18057bcdedbfb6693ebed
MD5 9f925de13b4c47ed39bbaf94ef257673
BLAKE2b-256 602648c0117f9bcfec8422be39cbea0304b5f0f84032d6113db4cfa79f374755

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1774991977-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d17d625f6e2c3f50ec4e046ebec3f4ea3b05e1f6ff1af4b19dafd194100edf69
MD5 285f005ee66fc61abca3110c41578b87
BLAKE2b-256 2c8a23e8b753bd0b8fec75dbfc1d358f1a2d6c9ce755954e92d37102c3b7edf1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1774991977-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 75ad19cb7176eb766776bea338e46df5cf4d07310739edc5df3093c3d83461aa
MD5 35bebcaa016524baed901cc89c827dce
BLAKE2b-256 bc0cc7e07e6748f632b0405aee179052d4041bbf670fee092af870a25b35ea7a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1774991977-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3c4ade5fabab901d863754612c1466f4929795d38e33e79410fdf35abe8fc68e
MD5 c5b73c67d162c71213a5a7a6a0d46dd8
BLAKE2b-256 3c8b8c3c00f0f1a802dad27623c7beffd7bfaff911fa403fa2ccf00b3c54bf61

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1774991977-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2abe456a497908b87d33f99f35b0b42ddcf1b7c611e958d1429d50a5e69f30b0
MD5 2b1b7df08532f7e2ddf569f7e732e510
BLAKE2b-256 c61a50437fd4cef56037aea589a5a442a832a17c49538f01ea6e059d6dfce297

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1774991977-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 39ea95cb85b8fa3bcc6c64cf608f9611b97c9a8dae5090a2938dd5bb8e0ceb00
MD5 c24ff4da077e75be010caaf3ab501449
BLAKE2b-256 7264d7e6be68f562a62d370d695ef4ad89de9c379a6fbe7abe2c72855db6625d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1774991977-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 8a3f69de7b46752d49a352c29e0f9e240ef94d43939d4f9914a603bce1c72118
MD5 7ab2cc3577efd106e38358a95b923abe
BLAKE2b-256 83d087c5427677ced78c162f88659c15cae934e1137b35c3c50c016d788755ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1774991977-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 18403df1e563126334f4883e94be91d974ac75a452a5e7ef368b2e37e9bfe8fa
MD5 23b58095b9d656162eb5dfbc190476ae
BLAKE2b-256 be09a4634e1e29664caf923fdf25d24ffe9aa950daf2e90d86c6ebe5f132138d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1774991977-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c9983f3cc1bb3710d50414a9e8f2187fa768232e01aa8defd45aac33d5b75e53
MD5 48afcfef1d1614e96ed134f90b00bbd1
BLAKE2b-256 b940f97c753c037f611fffb75f9e103598ac02bf3ca6a63aea4e231d549841e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1774991977-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 32c8051ebfbd5df52a62b8f49252cac6d8b5be3a862d02a7468368d8bbf5b8fd
MD5 93bcad9c1094afc7012c5fa338c9e4b8
BLAKE2b-256 42895d2f625b2a1e1d3fb90045aa7cc673c8abce1a07ec7b4bea9352800fe210

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1774991977-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 90ed52bf1dd1a7398de7516a1af01bc8ed2ede644b02124ec43605123cf623a4
MD5 83f9ffaac5b87f722d7505c1f21802e6
BLAKE2b-256 7206495bb9c1c1289581db8ae044a0c8cc5d84381636bda6a373a59ab1388c1b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1774991977-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4b659f421146412a888d57c869e9ce7b99e349be30839589a94b7019709ff061
MD5 cc605cd2db957411eb48ce657d30986a
BLAKE2b-256 8502414325e8e1ef979568d247314a7cd9b2064d1090ed4306ee117afd305273

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1774991977-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2a1437611ba48b04f973a852a6b4d5bd6636cbd60193f8832e42261e6096cd47
MD5 ea6ab4368204e1e5f886d5fc9106f855
BLAKE2b-256 01fbe1ba07c445e7c4defb9b8eaf91aab6d4a7a6cfe71996aeb4e590b1a74d01

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1774991977-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 865f4e9ac152b1b699965b2a5c7313b3ab2269b47590ab25b0cd801a69a37f49
MD5 6639021e41d1fb7360b73839536f1ee1
BLAKE2b-256 5362c2df00a86bf20f0bc8e024b8d937d462d128ac63c8c0fe621358f6fa5fa2

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