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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.15+ x86-64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

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

File metadata

  • Download URL: stim-1.16.dev1776383396.tar.gz
  • Upload date:
  • Size: 882.3 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.dev1776383396.tar.gz
Algorithm Hash digest
SHA256 ce5d3028ffd7df856043cf16e2eb83340383af60a0f15534e6972e8173e10e93
MD5 4091c862372d679f83bd7505a98f9691
BLAKE2b-256 ac2d4afca19a2ee88779b92131b9615c8d2b2cd210f3dce206cec62c42309498

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776383396-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 3736853b9f6c55de1da2428e486706d22a37944fc60cc99c4b2ff5e1cb39b22e
MD5 72fb8af923cfec0871e4616b6bab9375
BLAKE2b-256 917a73dbac41e3af162d87acb3f7391b8959a0e7d5b51e9ab5ea2c0051527947

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776383396-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 189ffd16c2b3b430d3ae58654230c327244a6e4ca93225baee0a6996667a128c
MD5 a40eb4634d97035bf5b3fd45a7cc42ce
BLAKE2b-256 ac1ad4422f2eece07ab7fe9a37caa75dd8d3af285499b86437d00199f7fd3695

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776383396-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cd8b4db6d3215eaa09c65b420b7f0bfa55de55fb6ea54cd330fb1211c8dc0ecc
MD5 e6703643e915f3aa30526498e8d00e01
BLAKE2b-256 652786dfbcfb209a9498e5042553840b4c85ae79cbb99bbbf38e17de333d486f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776383396-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 d61f0b1a5256b8246ba24b68419b6b055043cc2d58e542338e13c84d4a0ce3d2
MD5 69700b94ee4fc11635597dcbb1a53c7c
BLAKE2b-256 c5ef4d488477f6c19e01b2ba0f7ca85f511a9ccd2b9f5515f869a1eb9d2d64ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776383396-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 f182b579a4d4d20a00cca2e268e7f927bc4459e7c622e162096613822aa84720
MD5 5edc2cf45deb67ce0d6c19e0ea3ad914
BLAKE2b-256 d9d24cede0735a9933932e7ab0aae469699cbce3b801cbeeb283fc5ab784d215

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776383396-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6dbd109256a02ef27e6cc7f864c6ecdb52c5a5c7ee923a48e9507fb5a659e84a
MD5 0172d0eb77b4aeb94856a220e53da8da
BLAKE2b-256 1bd7aa1bb4063ba69e091ec6f166e273734c9b133db48936b2f7f2e289edd173

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776383396-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8f57a526a50362f7770ee91fb87e71fc4c470f8337226f7a7cea0a6b3118e0af
MD5 5cf5812daa649a74b2c78f7bf0c75f80
BLAKE2b-256 45ff02bf331d09074d93638a89899cfa21070b56de97607481d4df8dc173f9a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776383396-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 5f8ffe3b3fa2f8bf138b0ae1d072dd8da3f652a96327d49fa7ddefe42854b10a
MD5 dc188e05c980697d50057dcdc5d97460
BLAKE2b-256 7dc6463b347098f8cb4735b5a2fe91ed17963be8dda78951f99505c6d9ec4b70

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776383396-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a1d46e486f18d8eba315e2eb81dcb5e4907c7bb1d03bd6397e8ef786ccdc776f
MD5 2c0d071dcceb5c8a7ee3d960c3d6629a
BLAKE2b-256 c08a32c260c5619fd86d5a56e5915d33a8cba0cb867ec19475dc608631d03cfa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776383396-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 dac396060364641b8cb7ce03c4d01a12e25289b5074fb549a676c786264318ee
MD5 146b290f092b7e1dcc6b8b7f4ba0b4a0
BLAKE2b-256 2386d059ece99cc54602f429a5c6e84eb1aa39f442d3aa7dedd7d8ca9d475217

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776383396-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6259a8badb92194055a7a9b63e0888997cb84836cd9ca077c09fe2e0ebb8b0da
MD5 4a09ecf458b4c3a7d34a28e5907eaa79
BLAKE2b-256 0bb05b7114a71b0bf32c2330219e07fdbdeb5b350af71e674a354d1d2519d09f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776383396-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 f5125a67a228a5ec225f5fa2631622ec4a14a584b7f473e3830662d365991876
MD5 ecca85324526942fb2e7b4f8ed6a43d8
BLAKE2b-256 72906f7169b421fe317cc0e8bd9d0ab01fc9528af3a66f183025c0513f0886ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776383396-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e5620153278273f7508abeb147df0a417f3b2b736f6927b3252004de4f38143b
MD5 6709af58279b8ace2081e7c6979dc6bf
BLAKE2b-256 d52cbc5d0bb0cd64764fd05ddbfab87b73a56c95617d6d500e251b810bc8d51a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776383396-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8caace17b0d1055089eacfbc5cf47f46f9e214efcadf423288c4ca35a5a5cfa4
MD5 169d48df2eedd356acf5eb5efb086ec5
BLAKE2b-256 f647c5eb5aa772348ef84b6a7927243f9137aa1839054c6137c3bf7299c5c9bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776383396-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d18cf6648efd449bdebcd0331b8328694b0e734d9da68082a3675b6c7ebe0e02
MD5 975860af55a7e9d0b9fca5699fcd569f
BLAKE2b-256 b167935bc1933ac6265954ec0d7ad75f681286ff5153abf91d725112225999f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776383396-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 67416450f3c258f873e2234fdb1fde4d1b9ce2dc8105136560264b9a06bc9069
MD5 a8fb5ec7394438b313ff95f27ac33f21
BLAKE2b-256 85534da1c92d89af0626a27e16c9056c5c242d1d66d5cb5e1336bb99e34d35ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776383396-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 ada97256ad2897c38b32adcd19b72157ca70b2d66c359cce3fe03a637bfa0b72
MD5 f08dbc22a2ed9e5e59782f68a96e8177
BLAKE2b-256 52f01d6a241d4b695adf5004e67fda3e6738acd24024f3b082cde9fa816d9d4e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776383396-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d8c0bdaedccff13d34caeae96d0c3c1ef08827ec74a3265fd54e57cd584759b9
MD5 655f5c43083708ab1540c78aeb5ac743
BLAKE2b-256 746bd75c4aa8851800c5cc26866bc88361d079ce12a9f1fe218225d443438a59

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776383396-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8ec9426bef54c6e876a861c5796f47273e5db441de62b6a4a93025cc59a13622
MD5 d2a97b19190c42f2b3b2c7cad1d6e4fd
BLAKE2b-256 8c7ef473c9a031d32cd9355b1d4138a599bc0603aac76cf258518cd1af3b9d91

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776383396-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0ed71a3d41ee195c75ca115e9f65b6d80d696a080f59fb6db2ae729bc9545972
MD5 c5dd363ef9523be26824b46f5e94f2ec
BLAKE2b-256 d680f617d040ab25725f94df244afe9650c641e89adcc83d97ea068cd767620c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776383396-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 74b1cabd759acc9b957b7e86306f2c62641a263d7b4d8133f48eb4c18fb5bd2e
MD5 18ad5bb1991a10f8ea458323c8e86bd8
BLAKE2b-256 05c2ea7b8cd45ce75323ddeb413a7cc6b27fa8740bbc514c6cfd1a47d20f9019

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776383396-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9c5b1da5f9cdcc427f7ce29499e22367b223c57706fb011ae7f29bc95b45d57f
MD5 448de27cd67ed968bf55f2b4a5ebd76f
BLAKE2b-256 de5c4685dcbc3eb69ff39cb85a2c00a437fa622321b4345354de2ca82021d9cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776383396-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6ca14b651fec9e4a1d9d851ea1fc025bd5f550314606383e6a3d55658c7e4e8b
MD5 71a82888beb795d47c4aeebd6e5c5c1c
BLAKE2b-256 fced2ec65cf311414900b4d08562922d78399807b7b189b251046ca374a22a00

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776383396-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5651ea8d78eed1d21cbac193948c7ea41cc598715e1fb3d1e5f285fad9b574e7
MD5 93858f2a40032aba93aa47b4d62eccdc
BLAKE2b-256 be0e4fa5279b08d2f22c50090622818b73b55f5ea10b3c17cacda2c542264e63

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776383396-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 bb3a43a66a93265e09613880a4afea68ddf076037115c5ba8620a789dc007e14
MD5 ebbd65e07ba4a741efdb9116e45c3c76
BLAKE2b-256 ff8596bf2e1af4739d31a1fdfff9cd8d77c768d1911236c0ddda95e54cd4bf16

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776383396-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7e49dea186dc0fc2bbe33200499b26c25997ed522224fc795af5f9f1b47d64fb
MD5 0c324f0dcf63a13da4ffc9ec83ba7413
BLAKE2b-256 a75ab9c26f10ab09770fc3a14c65df62b3252a89db4ccf8e82421e6cfde2e0eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776383396-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dcd23f2b4aeb44abeb8e34d804680dc1e2cd43fc5fc42b04666e7e5f423d29d0
MD5 967af9472c386a051fec2fee5fd1d8a7
BLAKE2b-256 823231eb58ee5cc95d30349f674eb5fc14c491129bc71ad8c8c55058f73884cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776383396-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 af1c360b71f6d78fc1e65bc5e36328810d1219b36bd81871e847d4d452099b7a
MD5 1c2ab8310d6573cb41d92bef736557df
BLAKE2b-256 65f1931de3990024dcf425a3752bafa1588b14db525c078898eb4b5245c2d7c0

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