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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.15+ x86-64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

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

File metadata

  • Download URL: stim-1.16.dev1778114346.tar.gz
  • Upload date:
  • Size: 882.2 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.dev1778114346.tar.gz
Algorithm Hash digest
SHA256 a1a83369070ecd14494fe7dcbf690581365385b5ae588bdfe68cbf3afbed17a1
MD5 0d6e045e6945df0a0853ea083ab55a79
BLAKE2b-256 316605f2c2b5280cac6da4e782c475ff7362b07f499a837527740f25d2460249

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1778114346-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 e701d89d71c440ef1b23fbc67df72c482bbbba83133046196a735e55600629bb
MD5 28357bede7388c6ac7e3417a5b20bc7d
BLAKE2b-256 52fd7b126f6249f27f4ad8fda96aaef839f73be431cb2883259693d74afb3355

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1778114346-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 271bae8501ddd1b24f0f7ee8e4ce3d86e9a84819ebdab6d26d9d62f688ced178
MD5 3844d5d97b8bdc6a126601c0e19911f9
BLAKE2b-256 c1d7080cfe00c758726d43d05080583bdceb6da6e8949b62d43d6578f70f79e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1778114346-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 21ffe27ed30edd954ce4718bdc7a8e0c24df00565914042343df3b0ad217c1a2
MD5 5a6a686f86ade71dc1fafd50e901b964
BLAKE2b-256 3a5360464aeb579989e042d86a7cd1f3604f47122e6a46b5d5de0a0dda68ca6f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1778114346-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 13ed8890f521f7558a15e081df4f2d27b91914d5d6e91d2b88e2fbc80d8667cb
MD5 1430cb67243a681ecae22d58aaf12b3d
BLAKE2b-256 dfdf8b95ca04a54ea088f675eb191e672c53d56479ef89c1bb22f925356245e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1778114346-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 6bd8ada9bab273c90ed92a6e913e0609843b1c4b3825595db993fc5d47bd0de1
MD5 b8e59857575bff336f5b788fe3a913ae
BLAKE2b-256 daaf9bfb603a09d9e14f75c438b94e7d42f9adcdcd36896f978c75f251f4720b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1778114346-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f1410141642edd02c6dfc296ed5f411f64e6b2d7356f675f6bcd2f06999d4cb5
MD5 299c3bc66c649cd5841344c8b2d04597
BLAKE2b-256 7b140c3cb993c9acddc04d7667151202d9729e4758c2ddafc4fe1f55b88ba3eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1778114346-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ca8e0320ec7402dea6e6b19899a574b1856df296ee09ab40d12aa952ef60931a
MD5 c21edaeefc1a48c94bf32f98d4dad785
BLAKE2b-256 2411952ed2e2ab6f6945603c33154d275ff1176ad238f8c36f639ecdc461d545

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1778114346-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 981a5382348c5ee9355b2c51f079fe498a0e16202482232f79b74981a66c6a43
MD5 dd9b910773426c0f972ed26bac062983
BLAKE2b-256 6527e306715df635773c64889cd917753b4d57422d2bb6c854d5d54b0e18ac9c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1778114346-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e2a397c35eaf9de480d0c74ed57cf79ec0f22e13dc8c847a1e20d61ca757eca5
MD5 19e24340ca09db785f956a386d33adc3
BLAKE2b-256 3aa7581982eb0ec650a45f1ff0363a37eec9d862ecb7549bc16b27eab23fac94

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1778114346-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 40b7aa85209598cf18b86cc60ca798c312a4e3bf050ec4a77e6076dd51c3ff19
MD5 680cd25bb38901f32801e82e9ac9dd28
BLAKE2b-256 f39021665ee81d9b50ca332a275123af07f80f36235acd79cd56bceb88697415

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1778114346-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ed23848cdb4d19be916e74a7e8e65d501e7bb03637bb80358aff202540315e7b
MD5 3a7050b3ae7c7a6dc8a0d7d3c233ee3c
BLAKE2b-256 1e479b6e9ee75e952e4fa1a55d61ef7093e5ae86608787aa94d6d7713db218c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1778114346-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 7a0cd0ce74a45c1e06d731479db71c3401f776974f4d424dc44d510e6de00b63
MD5 29e9cf951de56b8b96d14cbd5745a188
BLAKE2b-256 080cf1c6ab3d566e6f7837b32c902764c9b69e48c53ef75356b9e715ee11ab6b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1778114346-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 68f96db71d0359f5c83a122558154e3aca075a76fe85c2088b3a85a32dbb4ec7
MD5 d7c0a13332c7a7b8d666bbbbc421a8a0
BLAKE2b-256 71d80049d33e5e6acb47d965d2d1e7cd1a094fb479cf3c207b0ad65064ed06ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1778114346-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3dad41998ec9be2e713bdd6c90a2fad22b5df675a35861c7e7ebd0cf9893cb26
MD5 71a6aadab03714247d6c52e856475119
BLAKE2b-256 54495b287a40c13bee2afbca694ea8dcc058e9dd7c8ec78786665db6921bfbb7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1778114346-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4d81f18b438206ad14b6b8c8e5af2f21451bcbfedc8e854a0eab1d6ab3e8b0e2
MD5 4ff28f01d18ad22fb092f305a4ef1189
BLAKE2b-256 53da6a2df03c9977a6cf72618a7aee67f9752b3088bc197ced1d2bb3e67711e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1778114346-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b512dee770d5945f6746e334018ed281c6f7f5421807d71203651c1fa17f75eb
MD5 4f4f0d75be659567d4fe103f9261e9d5
BLAKE2b-256 8a7fe67d1ce363971047dd4a5736e0928fba5806a77110ba40c44409fce8ab62

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1778114346-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 874b3d9ad81c0d11ea916c1a18e6e83c04119fcdbca96066f5a4da259ec07072
MD5 60879087e120446ac1504a5dfdbeeca3
BLAKE2b-256 58b3b34cd0f9c215bf9859b9507e6bdff6cb95ab2cc5f5063b8153638faa33b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1778114346-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 34c86a77aa696c4b6ea32ed92114dab297f39d7e562b3dadd60085b9315dfc49
MD5 54a0630a6cffcb5c50ce779bf2abd15a
BLAKE2b-256 6e6fa9facd8d1c069cc0c9bd9d6d1cf5c60d854505a7a410b72bdf65a8ca8245

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1778114346-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a56ed39f00499f3fbe1a677ccc6c917735bd6328df323afd7ef5c0f31f1fface
MD5 89dcb71a7d82fce941ced5b2dc7f6c34
BLAKE2b-256 a8c48f8fe0b8757e78666d4d2a7f51ced09cdb0cadeb9da62f1d4d6c1c65f073

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1778114346-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 13c88cbcf2541feeb71082b6668a88333cc372a76c6fb488a755d0af8a09047a
MD5 5b2cf70ba02952a455eb98ded649a484
BLAKE2b-256 e41fed262ff2d74cd0a4bf3add6009169e8a7e1ad005c428be98630638dfcae6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1778114346-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 eee0c2ffbb57e3220996a739da8e2a189a91ecf7b6c6d46b93b57ee6a06b52b3
MD5 dd03b708960735d04ecf9853b066f4c6
BLAKE2b-256 ec0572b2bea03c52fbbc2b06e477cdcaa7fe93eeac75e4197d1dbd24c01d09c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1778114346-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e7dba429b2f6b289221b301f4f9962c7a523f56f75641bc2cd882bb32c9bbec8
MD5 4a453b4d8418a66ad05f136712ca148a
BLAKE2b-256 52758bc9ddf4124e3af58e8b674575070120ac61b1fdae818cc042d6f79c4348

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1778114346-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5c119ba1f6115ef24c7072f10468c62fc5e4ff142277804d013687e3332acbc7
MD5 9862ed2ac40ef60afc344ccfa3f55db8
BLAKE2b-256 261d83faa537d959456eed1999eb222c73c38feaf151d04dc7e9678d2538eda1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1778114346-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a48d3600d5dba328342ef00403b879677f4ba8cc1c899b6a2a7d8a4b55b379da
MD5 8222470d1c19c27fa863eb1169e16115
BLAKE2b-256 8fd4286a9c0c0ea110d6f79452ee34009e20ca5195c3407f4ef3fd55d4b19be9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1778114346-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 b7081289faf0f003949968c85a337702ef8c43dc4fcb086feaa4b9631b813cb0
MD5 a7aac4fbb60a6e5e0ebfab03913f4bce
BLAKE2b-256 9a08f67e417e2ee57cdde013090328f82cf99566a086765a751881af9dbb4571

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1778114346-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5abd970bebb65977ed57609654963082448e5514f961f4370dc41933d46e0f83
MD5 a0915a1e6afe6d52d61ab48cbe49142d
BLAKE2b-256 fd775eb3a290903965da95fa9ecba5e8e285566a99f199d2ea30adff2e5ad0a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1778114346-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 339d0c3f345f1007f2bc333a0fe37693565182c988ca80e99784714ec26533a7
MD5 d216a07218c2ce41ba106537928073da
BLAKE2b-256 9f2c59144a1fb475e489d63c414807853f2417c53279d42783f113dc881f8288

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1778114346-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a75b21c36f17d4d51e02be7cf0c5a639aae290c5958186ac8e02f04d07398962
MD5 ccdf0a01be99ec40b5f7593774b9be00
BLAKE2b-256 7b4e471016706f1adf06ff3c1b030bdf8da5a1b16e9cc221c459c3d93568ce94

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