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.14.dev1727161109.tar.gz (814.2 kB view details)

Uploaded Source

Built Distributions

stim-1.14.dev1727161109-cp312-cp312-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.12 Windows x86-64

stim-1.14.dev1727161109-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.7 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

stim-1.14.dev1727161109-cp312-cp312-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

stim-1.14.dev1727161109-cp312-cp312-macosx_10_9_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

stim-1.14.dev1727161109-cp311-cp311-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.11 Windows x86-64

stim-1.14.dev1727161109-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.7 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

stim-1.14.dev1727161109-cp311-cp311-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

stim-1.14.dev1727161109-cp311-cp311-macosx_10_9_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

stim-1.14.dev1727161109-cp310-cp310-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.10 Windows x86-64

stim-1.14.dev1727161109-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.7 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

stim-1.14.dev1727161109-cp310-cp310-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

stim-1.14.dev1727161109-cp310-cp310-macosx_10_9_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

stim-1.14.dev1727161109-cp39-cp39-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.9 Windows x86-64

stim-1.14.dev1727161109-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.7 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

stim-1.14.dev1727161109-cp39-cp39-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

stim-1.14.dev1727161109-cp39-cp39-macosx_10_9_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

stim-1.14.dev1727161109-cp38-cp38-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.8 Windows x86-64

stim-1.14.dev1727161109-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.7 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

stim-1.14.dev1727161109-cp38-cp38-macosx_11_0_arm64.whl (3.3 MB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

stim-1.14.dev1727161109-cp38-cp38-macosx_10_9_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

stim-1.14.dev1727161109-cp37-cp37m-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.7m Windows x86-64

stim-1.14.dev1727161109-cp37-cp37m-win32.whl (2.2 MB view details)

Uploaded CPython 3.7m Windows x86

stim-1.14.dev1727161109-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.7 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64

stim-1.14.dev1727161109-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (5.0 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686

stim-1.14.dev1727161109-cp37-cp37m-macosx_10_9_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

stim-1.14.dev1727161109-cp36-cp36m-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.6m Windows x86-64

stim-1.14.dev1727161109-cp36-cp36m-win32.whl (2.2 MB view details)

Uploaded CPython 3.6m Windows x86

stim-1.14.dev1727161109-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.7 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ x86-64

stim-1.14.dev1727161109-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl (5.0 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ i686

stim-1.14.dev1727161109-cp36-cp36m-macosx_10_9_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

Details for the file stim-1.14.dev1727161109.tar.gz.

File metadata

  • Download URL: stim-1.14.dev1727161109.tar.gz
  • Upload date:
  • Size: 814.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.6

File hashes

Hashes for stim-1.14.dev1727161109.tar.gz
Algorithm Hash digest
SHA256 aabf65c39af2932ffc9429dca73c03a08f00a959f9be1568c226afcdab3b3652
MD5 6f3e649ba3d84203afba834e191e1579
BLAKE2b-256 84ab81f3921291731e52f7f5aba5fd06e8b623a67c08dcc3bb604079d94ff605

See more details on using hashes here.

Provenance

File details

Details for the file stim-1.14.dev1727161109-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for stim-1.14.dev1727161109-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e39df3d2fd6d57d084d9f863f27c453c8f76de409e024d74fdf3a6b2b68ca0ba
MD5 ec655b2ceb861854d445fc0cdef07368
BLAKE2b-256 e33fd2741a70cc549a8b653702eadc0d2407f81659705fd8a8b224525c485965

See more details on using hashes here.

Provenance

File details

Details for the file stim-1.14.dev1727161109-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.14.dev1727161109-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9c9d2e7e627f21f752c9d014c11dc1c064f773ae79a862d44e9bc1099cdbd5b6
MD5 5726ab751e282053b6defc6fe46623f9
BLAKE2b-256 6a3fc46ae919890df37d7f33be79d9a1bb6a358745ca5fe0a76c432fe73e1216

See more details on using hashes here.

Provenance

File details

Details for the file stim-1.14.dev1727161109-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for stim-1.14.dev1727161109-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9415d0360f485449014c80b79ffeccfa6545986f67b0a81880e2730f902ae3c8
MD5 8e8e222dc22b9bcc80017c8382ab77ac
BLAKE2b-256 c9a3aac40642871163c2c20ba2e7563e8e0fd4de7b08ed1d1124f770ef2821ce

See more details on using hashes here.

Provenance

File details

Details for the file stim-1.14.dev1727161109-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.14.dev1727161109-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 74dc00f8ba6b7b0f3e7e828e70fafc5900e2feb4cfe1eb92513df2416489c181
MD5 1d6efa424b7228fa39c4508fece94fd3
BLAKE2b-256 c82b2a54bd7e479f698e81317a4eee1b99d52ee923932504e01b35cb5dbf2f59

See more details on using hashes here.

Provenance

File details

Details for the file stim-1.14.dev1727161109-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for stim-1.14.dev1727161109-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 2794b2f3911ed227fa115698dec36b77932488e731bff1df8dae3c8b9b060913
MD5 82f6bb10184da5ae1cbd17c29e20c1f9
BLAKE2b-256 67f11a3e1803c5f7d92c92b29014ecaec115cc86ea5926d38c95d27249831b24

See more details on using hashes here.

Provenance

File details

Details for the file stim-1.14.dev1727161109-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.14.dev1727161109-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0ab4fb461c2245957b739e398f79d3634c8e006e30e66306e52b2f9bb40ac8c5
MD5 b140742d5f3eb086fb35a56e433de6b2
BLAKE2b-256 9ee7ed81125c6c4f268657fd9ebf8cfe0d94a7ead09dd48042e4f894bb224d1f

See more details on using hashes here.

Provenance

File details

Details for the file stim-1.14.dev1727161109-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for stim-1.14.dev1727161109-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6b5c80e810559e78b59cc3da1709128a4412fcd9d7feca5f2e2c6881da29687f
MD5 ac43ee147d74295a65ea1fec94dbbb2c
BLAKE2b-256 6f8c760e3979bb56e3c9ad30790ad194063730893a016a3463bb8199e1e2e07d

See more details on using hashes here.

Provenance

File details

Details for the file stim-1.14.dev1727161109-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.14.dev1727161109-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f41a685c3d504007481df8614098b9545fb7038328955eb04d9f7e5585d57e3e
MD5 1a6dac075e38ad76271f7bdd3da3604e
BLAKE2b-256 f79e3ce4b20ce869c26654d3ac11c36e724e35d66f17397a3beca2dacc6af472

See more details on using hashes here.

Provenance

File details

Details for the file stim-1.14.dev1727161109-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for stim-1.14.dev1727161109-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 8f7ef726874c87f72c48ab0e1e0fea9fa6fb8e65d68c310761ed98f64dc840c2
MD5 503fa2bc7e8553173a3fcf5f50f707cc
BLAKE2b-256 a5cfbd41c5713df91873629f461ea65e55856f20c3feeb20ef2db213d3f7d0dd

See more details on using hashes here.

Provenance

File details

Details for the file stim-1.14.dev1727161109-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.14.dev1727161109-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 19a3fc522ed21e78328b56a1b529c1791b1a1ef1dae6787ee51c7561fc5ca1ec
MD5 119a3600351447125d6555be9de5e1c7
BLAKE2b-256 2805d82a4eba2f00c05e476ef1891b29c3443e96c37e712e5efbcdadd70133c0

See more details on using hashes here.

Provenance

File details

Details for the file stim-1.14.dev1727161109-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for stim-1.14.dev1727161109-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 32e2c0180a8e064caae4e5fe1cf9e31a63d1a3f9e1d18c970260a7df70c63bbc
MD5 85588ecce613df0764289f42c8403efb
BLAKE2b-256 2765057361164b6f5fd252cd4ccecde8773419f416a50024ed9c00cd4b2c5f19

See more details on using hashes here.

Provenance

File details

Details for the file stim-1.14.dev1727161109-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.14.dev1727161109-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 15ece54ce204a6c736e8b353653ac3964a29b7b533eaa0a3eb6a2c1a13f5ea92
MD5 fc0012b68ef89301ba8b75c03a19b1ac
BLAKE2b-256 ab9562ca04f9905619b69f9989b09c05de789cb015ed664d5e4be7b7a173d323

See more details on using hashes here.

Provenance

File details

Details for the file stim-1.14.dev1727161109-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for stim-1.14.dev1727161109-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 19b9d9ab1daf26b090ffe10def721f26a78a160853b6b972002a84ac7c4180d1
MD5 96bcaec585e85ee44d940ce8a48af862
BLAKE2b-256 b9f9a169e158102f5a424dc138ba5ff0f2fdfff23dcd16263980dd025e7a526c

See more details on using hashes here.

Provenance

File details

Details for the file stim-1.14.dev1727161109-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.14.dev1727161109-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4a269efa57b64c72df33a9998c7d6b18185e3f716e7035f232c407fcc07b272d
MD5 7a3d60fd590b3a9f062694c75f73c8a4
BLAKE2b-256 6e0de792aa4d350f820f31240a8f4b51076fbf87b0363247f9175175d0b2dabb

See more details on using hashes here.

Provenance

File details

Details for the file stim-1.14.dev1727161109-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for stim-1.14.dev1727161109-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a56c70966492704fce2e15c94084db8b679ff9826ae021dd8050b7fff08197e9
MD5 74a18f15f9b35c40218c7ebc28925363
BLAKE2b-256 b0f37ec658dfbccdb140bd38228d59c67e0bc76d61cacf1e21737de36130eb69

See more details on using hashes here.

Provenance

File details

Details for the file stim-1.14.dev1727161109-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.14.dev1727161109-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 efbc3859e476a202c9e5ec99c98c3de002991dd3c604e090175f0d56e43a05f0
MD5 5f51ffbdbea96374f2134f0dbd1b14a3
BLAKE2b-256 e0cf8d203d77106767263ec89efe91c2d10ed48393b5a687543e84420fc18359

See more details on using hashes here.

Provenance

File details

Details for the file stim-1.14.dev1727161109-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for stim-1.14.dev1727161109-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 073dc320d389dbfd2a42fdb92e6954fc461d5097c75e675bcb060b1bd0b83773
MD5 ac825acc04c3f8619c068e875bec1eb1
BLAKE2b-256 4a1479fb7208b47d1eb37acffc88cf45db286e391072122634e2d1ee03175f7c

See more details on using hashes here.

Provenance

File details

Details for the file stim-1.14.dev1727161109-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.14.dev1727161109-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b786693302134fcd0a98df99cef37adaabab8f1715184b1bb601ca41ba1c61d9
MD5 77775a8558ef2ebef25376cd20ca1229
BLAKE2b-256 e8db35ce0c4952f2b21f5ecdc034316bb87bc21ece4f7944c2e376c63a3c1123

See more details on using hashes here.

Provenance

File details

Details for the file stim-1.14.dev1727161109-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for stim-1.14.dev1727161109-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 490e47c5afe447adf4140daf5174417bf5680bc18cc2eae68402679b04b56643
MD5 2714ee9eba054d2fda5ff46ad6a11f27
BLAKE2b-256 f9e1a273683e42e92adc0adb227e000ac319a150e1753a0d01076a2d1b1ef97b

See more details on using hashes here.

Provenance

File details

Details for the file stim-1.14.dev1727161109-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.14.dev1727161109-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bfe6c3090e4d4343f59c10d1c9cdbf596956ecad3dc8b6686ef14590414ee9c6
MD5 9c759a56e6ce2ee0d6cf3404ffe5cae2
BLAKE2b-256 773be8ea4ae91a9dfa7e6940fdf8774eb0f26370caf06a98fe7dff2b51755cad

See more details on using hashes here.

Provenance

File details

Details for the file stim-1.14.dev1727161109-cp37-cp37m-win_amd64.whl.

File metadata

File hashes

Hashes for stim-1.14.dev1727161109-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 2a47359125219d01aefd4f8986818bf6665024d1811dfcd9db08bc40c68b943f
MD5 6c3f7bd447d4de7e5fa48c45b49e2f94
BLAKE2b-256 70c5f385f17bd4ddc11847659cf92c117ab1d2afccdc744c7f16e08ed94bba8d

See more details on using hashes here.

Provenance

File details

Details for the file stim-1.14.dev1727161109-cp37-cp37m-win32.whl.

File metadata

File hashes

Hashes for stim-1.14.dev1727161109-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 2014cc4431a1e0f4f98a498d051c8cdb17bb620176c2251f1ec9787f574b1164
MD5 955e4c29ed5d69ff495614bb7e1ff8da
BLAKE2b-256 d65588b05744af596d04974f01c9b26caf536988f26144d6987433c078f42768

See more details on using hashes here.

Provenance

File details

Details for the file stim-1.14.dev1727161109-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.14.dev1727161109-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 99aeea626c4fe94c07c32da8dcb21ff894acbe7704f147c1b2a5d49bd391b11d
MD5 a0d076e3230af69042be754ad4a34cd1
BLAKE2b-256 b54a7c2b4f857b0172aea7c70312610bd985b060c5846a8d5a7e9ca80e4f5896

See more details on using hashes here.

Provenance

File details

Details for the file stim-1.14.dev1727161109-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for stim-1.14.dev1727161109-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e693e058fc2016a2e395b6da00025138ef204cd725730e5f1d45cdc0732f5e9a
MD5 ae0cb2e410d3471cb189da071c778a20
BLAKE2b-256 d809b90afafbf83c45144dde3b306f3cf7c2ecce4ada842ea9ca1c33aba8b98d

See more details on using hashes here.

Provenance

File details

Details for the file stim-1.14.dev1727161109-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.14.dev1727161109-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 49b5984aec45390cc595a73f6a388acb60714037f9acbd0f6c469e247556fab3
MD5 7319032e6b9352fd4b1822f29baa689e
BLAKE2b-256 dcac8018b2cb5a5f1ef673d9aaff9c0b54d6a1019db9f062c7fbdce8a23d0fcb

See more details on using hashes here.

Provenance

File details

Details for the file stim-1.14.dev1727161109-cp36-cp36m-win_amd64.whl.

File metadata

File hashes

Hashes for stim-1.14.dev1727161109-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 a11faa90352e4980b1aec1950e42e64a467d53fbe0c37c13a7c36217cfcf1b35
MD5 8cf729410f2d9eb0d738d39dd6b3877b
BLAKE2b-256 5c0e0fdd2afcab631b29971bc74a428826e7edca2964119ac55c582d37d6a6ea

See more details on using hashes here.

Provenance

File details

Details for the file stim-1.14.dev1727161109-cp36-cp36m-win32.whl.

File metadata

File hashes

Hashes for stim-1.14.dev1727161109-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 53400e71cc28313fc4ea732dc1c91cd61361f2d3e23de08ac5173d1a762ae192
MD5 0eb19016069286df1ca7befe2327f54a
BLAKE2b-256 802be3984c42fad936fa395f99b13c5b80dae31423be0c44bb9a9e222bf35657

See more details on using hashes here.

Provenance

File details

Details for the file stim-1.14.dev1727161109-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.14.dev1727161109-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 83ff454727c133b48f0ec4b98b2b0c567b4b0a32a5d6f7c3e3b3495d4e582d51
MD5 5fd771199d7dd2b0d2490185cff92ac3
BLAKE2b-256 974812fb48f443cbffa6ba5236c48672bdbc58323c74e7952e2fa05bdb20050e

See more details on using hashes here.

Provenance

File details

Details for the file stim-1.14.dev1727161109-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for stim-1.14.dev1727161109-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8bdc20e41a17d4f2e94ac096ab0f551a405bbe5bdf5740ab12b6bc06a00a27b9
MD5 29b06b92da7dc482632952e3d8b2e1bb
BLAKE2b-256 0a1fe39a601dccb8cda75b6d9e36c8eb2537d212ea124b206a91acedfd4f4e29

See more details on using hashes here.

Provenance

File details

Details for the file stim-1.14.dev1727161109-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.14.dev1727161109-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b07f95d3897a9eea8451761448896343efd21e70767db435bce83ac2f19148eb
MD5 0e53426da45e40b1eb2b3736687eb8c6
BLAKE2b-256 b03fd1946adcee775dfb57cc567cd9ed01c85246ee777e4b73122e4bc8d709c6

See more details on using hashes here.

Provenance

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page