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.15.dev1743893588.tar.gz (842.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.15.dev1743893588-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

stim-1.15.dev1743893588-cp313-cp313-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

stim-1.15.dev1743893588-cp313-cp313-macosx_10_13_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

stim-1.15.dev1743893588-cp312-cp312-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.12Windows x86-64

stim-1.15.dev1743893588-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

stim-1.15.dev1743893588-cp312-cp312-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

stim-1.15.dev1743893588-cp312-cp312-macosx_10_13_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

stim-1.15.dev1743893588-cp311-cp311-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.11Windows x86-64

stim-1.15.dev1743893588-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

stim-1.15.dev1743893588-cp311-cp311-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

stim-1.15.dev1743893588-cp311-cp311-macosx_10_9_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

stim-1.15.dev1743893588-cp310-cp310-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.10Windows x86-64

stim-1.15.dev1743893588-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

stim-1.15.dev1743893588-cp310-cp310-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

stim-1.15.dev1743893588-cp310-cp310-macosx_10_9_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

stim-1.15.dev1743893588-cp39-cp39-win_amd64.whl (2.7 MB view details)

Uploaded CPython 3.9Windows x86-64

stim-1.15.dev1743893588-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

stim-1.15.dev1743893588-cp39-cp39-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

stim-1.15.dev1743893588-cp39-cp39-macosx_10_9_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

stim-1.15.dev1743893588-cp38-cp38-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.8Windows x86-64

stim-1.15.dev1743893588-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

stim-1.15.dev1743893588-cp38-cp38-macosx_11_0_arm64.whl (3.5 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

stim-1.15.dev1743893588-cp38-cp38-macosx_10_9_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

stim-1.15.dev1743893588-cp37-cp37m-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.7mWindows x86-64

stim-1.15.dev1743893588-cp37-cp37m-win32.whl (2.4 MB view details)

Uploaded CPython 3.7mWindows x86

stim-1.15.dev1743893588-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

stim-1.15.dev1743893588-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (5.2 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ i686

stim-1.15.dev1743893588-cp37-cp37m-macosx_10_9_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

stim-1.15.dev1743893588-cp36-cp36m-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.6mWindows x86-64

stim-1.15.dev1743893588-cp36-cp36m-win32.whl (2.4 MB view details)

Uploaded CPython 3.6mWindows x86

stim-1.15.dev1743893588-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ x86-64

stim-1.15.dev1743893588-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl (5.2 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ i686

stim-1.15.dev1743893588-cp36-cp36m-macosx_10_9_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

File details

Details for the file stim-1.15.dev1743893588.tar.gz.

File metadata

  • Download URL: stim-1.15.dev1743893588.tar.gz
  • Upload date:
  • Size: 842.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.15.dev1743893588.tar.gz
Algorithm Hash digest
SHA256 4e7883e835030b9167b70a5abc99f11b9935044491dae3200849826e5c7a70d6
MD5 93ca5400312e0b8ede961053efc764c9
BLAKE2b-256 c969dc752fd0dc56725e0df8b5a38cb9d163a602a28ed6ff36a8ad5410f6eacf

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1743893588-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1743893588-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e7fbbea36da2808b3cfeb7d6da24d5ee7877b5e64114a56b2bc7cf4856682863
MD5 54225294cd4cc829ae5e7cc0490add72
BLAKE2b-256 12f9ef86bf1d39f1716aad65c7ab6da7f48d687c93b592895669de3e8d9b0e9b

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1743893588-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1743893588-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 290dc4b40e1112da8b8cf62339ea29251ade62b3210b042519dcf3e133e9f889
MD5 f4124dda9155682b9f4c5429d75c0aa9
BLAKE2b-256 b824b1ee690fe1869115694c9057aa073c446f6ac9f4f8fd4be5f0ba6997c52d

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1743893588-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1743893588-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 8931577353ac88946b4cb9c2509598ae60dacc55f12716d75f7cb2eda165b2e8
MD5 1d68ba96705709e645941c1d57e89b62
BLAKE2b-256 401f47e9c2598f329db36532e6091ba8329056cc70be85f3c541cf4f3335376f

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1743893588-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1743893588-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e3fca0f9fec6088e3c0fdd7e8e62f73777cefe3a2a8fe06327ae14e35c28c4c0
MD5 3472b86a384d5cb1c967eb7376b2c4de
BLAKE2b-256 29f0ec6331ebaa8646633210e741fadced33fcfb8494e2b292d155f5a3d42b75

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1743893588-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1743893588-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fb7fcb38989e33209a8e17d5a4127ee7296c794b71ac7413ddd0c5e24df3b2df
MD5 284881b369ecfa87faad3e200a8f4237
BLAKE2b-256 671d7531fd7400ff5f588f7c1e633226c9cba13e7aa2f333c768ca9165eb09fb

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1743893588-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1743893588-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4afd9b409827ec9c311ea046509991004cd18d5e07428ca87c7a947855f129b5
MD5 8d06a20a7c55179b7f05eebec16dbe24
BLAKE2b-256 19daf36c4b57e5f2f77981c8972ce4a42db4df1a8fff6f83cba53685ae8a0d16

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1743893588-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1743893588-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 8dd9010e3ee55521baf885df826832e9af96d5aeeb9794186b0aba90982dd24d
MD5 49a5a0363ce8dffc37984f102c64a6d0
BLAKE2b-256 7a788919b28e3964d899695730eb5be8b0ca30f7a6de7d888d40d95dfffeca85

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1743893588-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1743893588-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 201bc48ebcc497136a1fdfa47d34fbfef9de58aa704f68eeb00b7106dbbdbfc8
MD5 22f0bc7b72dcfbdffecf5de07e9401b3
BLAKE2b-256 480520425457bf962854b4ba17462b1ea73a541a62c1cf4629bcc56e17605222

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1743893588-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1743893588-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1ddb0ad094178d1aa871b6217423174547b1911e003f6de2ab6ae7a2f461c1d3
MD5 8771ffbb07ba7895fa4277f96a2f87ab
BLAKE2b-256 7018c2b04cd022d44c1d65cb28df254bcd3e753d091691f2931a7846aeb08e4c

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1743893588-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1743893588-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6076153f1413f6a54070121dbbeab74f40f16cc0cd9d29708ca5365777df5a3c
MD5 d0983cd66b92f394599b5d5f8fc57036
BLAKE2b-256 2e3e298c26be5debb6a7abb24faef29993138df25fd9f550c0479bd24cf29291

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1743893588-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1743893588-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2e07e61e02d2bb6c221159ed8554598c3cfac5b5edc192c433ed4b47a0631892
MD5 ccc651e46fc4a64cd147f8eec39b4336
BLAKE2b-256 b44e2950bfb99bb9a9a7944fed18f4d12418a883465d81bfe69b3deaffbb1870

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1743893588-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1743893588-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 05335f0575b0fd218de1810ebd863a8fb98ae636fdf3f54275ca0a11f80d3c4e
MD5 d53df0f164fc840f1a2b21304348c67e
BLAKE2b-256 0342b953f3e70640328dd7168b599bcdc1c3d9249b24cb8692741aee59dce4d9

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1743893588-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1743893588-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f4522b27b80e4006f2bded958c2bf08a5f0bb8ff88529404a6d6262eab782790
MD5 4ff6c8d97600628bb6e0b7d9d8cf35c8
BLAKE2b-256 a2dae6e27f923236418db517d5e69744fda40736bc90cbe7bc9ef8d5252286e4

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1743893588-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1743893588-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8c8b0ef01c988a7dad526c07331734aa72da07265153e0e9363dce0b9cd6530b
MD5 36317b6c30ffd296fe1a8f4ee5436107
BLAKE2b-256 606d6724b7c498b375eca3b4ae0a5f65ae566e0f6c565d26bb7836d3701e4602

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1743893588-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1743893588-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ac7551d15f8d53c0cbe2288c0a6cc7829d3e3b47d87d9c098d90be109ddc7ed4
MD5 78f22885e566b9d1dee547b5ba41201b
BLAKE2b-256 d36ff0334a09e25b2b1a8f98a9ebd78667c17e9b0b09d9d9c3089998ba7c39cc

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1743893588-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1743893588-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 e2cf3575eff8efd149bd5b8f95cca5e24d23adf0166ac5ea861f6bf3cc2384fc
MD5 b1370494905f31d6baaf7b7b4ba0e959
BLAKE2b-256 8b11b114048cc91eb4b8090d4b61f5f727245638f375833cc481683b0e40798d

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1743893588-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1743893588-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f1da40c1c789826d746404e4dec39b1601a1bc020075c26c2b40a78283fe2e89
MD5 7d965a9330244bcd57ad0f574bc53c8d
BLAKE2b-256 aebca83e188c43c8a335fbdd103c371711b232e31235d74e51d83be640a8ae80

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1743893588-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1743893588-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9f11b560dba6d7586d3154455752ed4249b17825190c1bd791db0d56021e2d5e
MD5 501b4299d9711300df657d91c0be6ce4
BLAKE2b-256 c164a9bfe3b5bcbc6cd93d0851af766d7c604b885251f8b027d67e3c6f778864

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1743893588-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1743893588-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2b9710e8c3a7dfb51b0310962802f3faafca757c88a04eb203ca83f01ae66a9a
MD5 7a67ae1f6e6684ef7cd52837dcedf3e4
BLAKE2b-256 5caed73a76b63be6941cdcc79e5b8433f2493278cd850e80f07f77e31b156a68

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1743893588-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1743893588-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 a43c0daa1f3af332bc337ada1c0b63e21137a4c20d1c5e9956c697768898e333
MD5 3b92cbb323ffbd84e280e8b2f56d6ac6
BLAKE2b-256 69f1da5e02824ec806abd3ed11fa87d3630a23e15eea73ad1d3d3fe5382e0bb2

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1743893588-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1743893588-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6b2b4a32fdaad506b88d57cf9e4c69d578626c9a7bfaef61f532d8f9c836a5d2
MD5 42e5f93a06994f817ddc758d92ed88eb
BLAKE2b-256 e29b11d2df4fa85ce061e78acc7f3490414a0df63c2177ae19adc5e69d1acb04

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1743893588-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1743893588-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3d626792418a009ee77a274638acd68388602975d88f5526a0e0b883a42f7939
MD5 045a01d65cac4aeeb5131ec410e3744c
BLAKE2b-256 0712960c43f29c9ffeccc19b0971e865b765c4e200a82941a9557df017d590da

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1743893588-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1743893588-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ca4b522b91052dc5f294ac6748e1304b7c56b9b20826f48263288fdea7baf62c
MD5 20ecc69db80b7ea668e942714bce5011
BLAKE2b-256 8b8878239c895ce1611e9b231cb455d4c2fd9867f54c434774bc7042d7f83c41

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1743893588-cp37-cp37m-win_amd64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1743893588-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 6284251c430941ca9cccf2a4885b4dfc1d2b54a98d909e8d3bf706a9d2857b1f
MD5 1ca5c858d017d327cf6134241ae4b50c
BLAKE2b-256 363d2712f328ca5ffa180f19655fa1a8a6b9fbff0bddab34224ced1be0da8728

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1743893588-cp37-cp37m-win32.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1743893588-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 ef5aacdd5c45a4fe7fc8336db118e4720e022db298d03a3203382d9ed4a9ef2f
MD5 390213e7f047f93b45b6aa95ae96ac51
BLAKE2b-256 1d377251d3aed288d85efacaf2af081b2f246a51a3dcf4959b422190c2dbb2cd

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1743893588-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1743893588-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a997543ba487cea13b61c055f4ea9aa87d1d3faa6c73d75e64bc60aa046095c0
MD5 9999dd7a6df097499d2b96eb858827e8
BLAKE2b-256 5399d4a06b3b5968c4b725608c60e048eb98fae47e40851649d4e78341a40f66

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1743893588-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1743893588-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e16c8383fd906ae8767ef4774a7f1b45268a4537ed21b42a9b555f54bba6ce35
MD5 1dd17fce756635898c4a002c6da3d876
BLAKE2b-256 22ab067e00953af215fa6dd20c9def292fc472d58951f2f0065e83a6ecf5ef4f

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1743893588-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1743893588-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4b08d203f5ab99daa3e78997aba6443418cdd819e429509ffaf908d49e83b5dc
MD5 c9e722b21b8e97ac51eacd260105412d
BLAKE2b-256 1b69a85fbd6b85ae3840705cec656c1dd0949cfd4678c5a916b1dd6b93e83222

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1743893588-cp36-cp36m-win_amd64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1743893588-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 f7e186bc8cb7c56e835ba7d1edfb2084713d94a5732a5f37f0c485575f1d8e3d
MD5 db7c7cdb14575384b6d9c7ba76721b7e
BLAKE2b-256 06558c4b2541ecb5307ba7cf54d5ddab1e44a9163d6e2a1e9352c722fe9ae49b

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1743893588-cp36-cp36m-win32.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1743893588-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 c6f30b14994f37d023503e95b7ef156fc7dd71bfbf594e8a086436081f1640ee
MD5 2c0db4f5e02fcd2a0024a1670118d2a7
BLAKE2b-256 37ccf8651b5e503bc14028fef18b4d236b6840c431fecb1d991a0a3131a6ad4d

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1743893588-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1743893588-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 80b6deae1e1a30092ada4d5101dc9111801d533552daec2dfef3b3b0e6a2a949
MD5 95a69f989b54cc5f9c5e4bbff50a918a
BLAKE2b-256 137bf3b42fcc4732c3a3966f6d1468e7ba57d1b49a9462bb85e46b3a8c75e1b7

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1743893588-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1743893588-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c48059b93b144b89f4e1ab98d863229dbc9794f8f486f8731d9b99a0c006be19
MD5 7f9c968636541b43291682f717248863
BLAKE2b-256 8ec0e8ab5f7c9d670bb1a00e66cc6f195ed1ba01b36e88cc6d09ddd3e6a93ae2

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1743893588-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1743893588-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 040b63228837209f3ddb5bb1af46420905bf1b9eaa0f3a87e74649222517dda6
MD5 55b1d512fdb928967ec60d086f0192a1
BLAKE2b-256 d9969bdb4b90d61d7556b562fdfeeaa3514c4e861e96dd3c7e8011177e992d94

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