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.dev1758580558.tar.gz (862.8 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.dev1758580558-cp313-cp313-win_amd64.whl (2.7 MB view details)

Uploaded CPython 3.13Windows x86-64

stim-1.16.dev1758580558-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

stim-1.16.dev1758580558-cp313-cp313-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

stim-1.16.dev1758580558-cp313-cp313-macosx_10_13_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

stim-1.16.dev1758580558-cp312-cp312-win_amd64.whl (2.7 MB view details)

Uploaded CPython 3.12Windows x86-64

stim-1.16.dev1758580558-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

stim-1.16.dev1758580558-cp312-cp312-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

stim-1.16.dev1758580558-cp312-cp312-macosx_10_13_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

stim-1.16.dev1758580558-cp311-cp311-win_amd64.whl (2.7 MB view details)

Uploaded CPython 3.11Windows x86-64

stim-1.16.dev1758580558-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

stim-1.16.dev1758580558-cp311-cp311-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

stim-1.16.dev1758580558-cp310-cp310-win_amd64.whl (2.7 MB view details)

Uploaded CPython 3.10Windows x86-64

stim-1.16.dev1758580558-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

stim-1.16.dev1758580558-cp310-cp310-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows x86-64

stim-1.16.dev1758580558-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

stim-1.16.dev1758580558-cp39-cp39-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

stim-1.16.dev1758580558-cp38-cp38-win_amd64.whl (2.7 MB view details)

Uploaded CPython 3.8Windows x86-64

stim-1.16.dev1758580558-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

stim-1.16.dev1758580558-cp38-cp38-macosx_11_0_arm64.whl (3.5 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

stim-1.16.dev1758580558-cp38-cp38-macosx_10_9_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

stim-1.16.dev1758580558-cp37-cp37m-win_amd64.whl (2.7 MB view details)

Uploaded CPython 3.7mWindows x86-64

stim-1.16.dev1758580558-cp37-cp37m-win32.whl (2.4 MB view details)

Uploaded CPython 3.7mWindows x86

stim-1.16.dev1758580558-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.1 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

stim-1.16.dev1758580558-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (5.3 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ i686

stim-1.16.dev1758580558-cp37-cp37m-macosx_10_9_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

stim-1.16.dev1758580558-cp36-cp36m-win_amd64.whl (2.7 MB view details)

Uploaded CPython 3.6mWindows x86-64

stim-1.16.dev1758580558-cp36-cp36m-win32.whl (2.4 MB view details)

Uploaded CPython 3.6mWindows x86

stim-1.16.dev1758580558-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.1 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ x86-64

stim-1.16.dev1758580558-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl (5.3 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ i686

stim-1.16.dev1758580558-cp36-cp36m-macosx_10_9_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

File details

Details for the file stim-1.16.dev1758580558.tar.gz.

File metadata

  • Download URL: stim-1.16.dev1758580558.tar.gz
  • Upload date:
  • Size: 862.8 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.dev1758580558.tar.gz
Algorithm Hash digest
SHA256 2297f6e8a9fc2442a67c809b39742f14be586ecc6ffdfb1cee0073e587a9e552
MD5 f334aca60853a2efc34ec84e04d876b4
BLAKE2b-256 fcd8ec113ec14957bde79c1c1d586fe33807cbf3120c17d3bbb2606663035d92

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1758580558-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 7003c4ad067771ccef4ba584370b382db3eb3356ca6fbb1ef650d16b31d580c3
MD5 64f5344564735aee65779aa2b2539d87
BLAKE2b-256 44cf0d2e913f900ef1c52161f7f5fbe878393a793c2aba71d47ec0ed213f8c48

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1758580558-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1758580558-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0b3252f8607b3d253bcfdb12dafedb4624862e56fc959e9de1e760cf7b9103e3
MD5 bbfb8c65d38f683ff924afc10331dcca
BLAKE2b-256 5d923a797f81b7c43725084993c4bb17179a9f0c7cc10be2cab1e83f693ab079

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1758580558-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 98d9603348caec57b08288760baa2bd2f536d63e1cf5052a84344a328940bffe
MD5 cd2808e23f57f13d033330ce5757b89a
BLAKE2b-256 32753a4abc608f810743f05881030a53d461f89e4884ddb5069de0114cd7a1c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1758580558-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 346102e01fcb04b4bd99bd07d5be3314c5b625042420e81478b5e202785147e5
MD5 f44d2ed0b5a21d3d50d7fe4b114c7340
BLAKE2b-256 cec25612719fae20fe482ea1097692e84ca35cb20dad15ff22286dda080a0796

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1758580558-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a81d1ac613e17cbeabf0ae481acc527884ee61f82cd9ebc435d4550ce0befee8
MD5 87f22f085939284f16435dbb73c6831a
BLAKE2b-256 27586618d3bb225d592cc11cdeb4acbd9e41360796ee34aac43d06d1c5e63f72

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1758580558-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1758580558-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0edd742af2abc33ac4775b1f6e3177e55c5dfa7932b70a64f3c0b93302a72152
MD5 4c790685029404d3c50a6d19db6266b1
BLAKE2b-256 303282fe2a1b76297e143b69db4abc2bdf2a28b95322b60e10f9bc958de6f095

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1758580558-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 515f81132c4a21c88aea055b9ea36ef0f1e536002775024c1a68de7b8d420037
MD5 1fe07b2cb0adbbd0aed9a82ff6af298e
BLAKE2b-256 b6791478072728f08cbfe5a9b22794bd3a0fe648b889dd516a21eea1e1878842

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1758580558-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 95853c3272d6308879cd91e767f427850b9988a1ad8d0dc947de701d96b91340
MD5 fd68778584c69bcb24da8a686dbd9b95
BLAKE2b-256 0c6656f03d7945023d3bc0838b5a1be462dcd3fabc830f04d41a5f187e880431

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1758580558-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 64d227e70a014fe8b25bfcce830e30b5e223855af54a6472dedd784c13a3e962
MD5 582f77ad05937e70536c785a9173de78
BLAKE2b-256 0dee90e3977a945c5c7edb20a4711fda02363098f54afdb9b2928800feb7e075

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1758580558-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1758580558-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c3d27d4078ffc7a8d34a2ca33381a7e1d56fec724102d85236d3df428582d235
MD5 09f0147f3f78abb741034f19953376e8
BLAKE2b-256 7aa24ff59894f428ec961abfcb4dbb5c3988667ae0f6bd6870fe8951bb27ea11

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1758580558-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7da29729fefb15dbb041444cd76e9a8ff816f7912a68aa8905857290203bbc02
MD5 5919a42e7eb61aba24ddd2bc48af48c9
BLAKE2b-256 1ef779d1ce2a9ea27542c6b096338b95c431e601d8dead802f1a270a106384a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1758580558-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 59ab3487e932af913e499db0b43ad6c7ecc72df2ea613bd46e18a9d7a814a156
MD5 b5b5a9bc68ccfb9303853da5fc658110
BLAKE2b-256 910d37180a52579e6ed52e18159bb589183a8b3770047054569db1a30c6cb848

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1758580558-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 585d6bb8a093e8866df849b4dfde63e410120680482574e08f92453d7dd311fe
MD5 c24606ccd2f838f1e183714150c4b77d
BLAKE2b-256 255d2be1b0708cae23153b57f7c9d01b41b9290c90f8b361c07e741b734fc2da

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1758580558-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1758580558-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7993cb464a6f79de76f027918ec14768de6589425a07af5f44f50789e592c6e0
MD5 e7bafe87c12bae432a54a43629f845dc
BLAKE2b-256 abd917bb66e49e48de1169b56a4c6e0f80494e4f8413e8fafb31fda916d5f0b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1758580558-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fcd009dbf31cc1f6657622fe51a70e4428ca1def39001f97689a7d1687711a4a
MD5 1760d1f51503e17c1d9a6fd73aca1d57
BLAKE2b-256 ef1ef5b1e24b23d202859c3cb2b2de9889232a37553fe03725bdc209ac00bb82

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1758580558-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 905b3bc91226140211a896af9d2bf5a07fb8abbe0fb7e08cae2778432b9f7727
MD5 5b5a95252a3377627740fcee75a41544
BLAKE2b-256 6853d7c1ba4e45a5dcc10c7e76413192d98397b0e3f8c4d0bbce72103cf1bb5a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1758580558-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 4c897e1dd890481ae274fd0c23620e7328d1d28767e022559089b3d90f44c802
MD5 e393538d588008d1121ddecdd9a7ccf5
BLAKE2b-256 8331b660a39d63a2f6ebc14081486159eea6d280b7f84bebf5ea49230d621434

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1758580558-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1758580558-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 85e839ba83e291f612bcc338bfba247d1122ee4ce17169fd8b340e56a3185434
MD5 429e2e23d599b0ce8091375386cfd029
BLAKE2b-256 82a199cfe40b42e76f1b218d58f245f757d24cd599a7d5c14d7fcdaf08f71d6c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1758580558-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7349d85ad5e234beacecdcef81758dabbdd697f9ec681dc79500fba6c8c29877
MD5 dab6de57482e4330c11e145e61bf4251
BLAKE2b-256 9383dd8de00c70157a5612cdc299fde5b3714555ad56d63439358d2d826cd4eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1758580558-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 033d62f6a5e85e4430a539653b8a8d059a6e911f9c6a2d4fd59ff32808764703
MD5 167caa8b3d64fdd2118a688c4e0f1f74
BLAKE2b-256 d60bc86bebf54238a1bd50523b281e3740e21857f16c7fadb36edc11080b75bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1758580558-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 541163c5abfcd51f7c5bfbc9d89bb1e17503f2d2c58d3c1267628ad7f0218f2a
MD5 dac7832ccd2e4dc57c98b8e2405ed14a
BLAKE2b-256 e3377a289e60b06c1e46c14712eb5dc364069d434ea729e15797e789a6bfa13a

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1758580558-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1758580558-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7be65c373cb4cebdf4d353ee39d4d6cc4138ff1354efb2fd3ecd624519afd1ae
MD5 9743d9f521335ef76a2c49b46bb8d944
BLAKE2b-256 c0acdade285e33d165d6cbd16a2f3f25acc555698abf08140fcdf0210b0959e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1758580558-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4b50d1b48e978dff401528cec46100da42677b4934cbaabc33f6d960774881b8
MD5 2dba5203e7f81593ea170203c728711a
BLAKE2b-256 ebae47a36b44888730eb5682de324416b9be607e2cef8c9c0c96f81557040c68

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1758580558-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 aab6f9d45fe730cd3d4cabca67aca887c635b3ff73c98411a5f50a2c3711001a
MD5 4a07fa769b63efb802f9415807d49af6
BLAKE2b-256 e729e93fb5ec31bdd6d51a72f56edc9706b2f3c0581b523d920c9d0acc41ee55

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1758580558-cp37-cp37m-win_amd64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1758580558-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 a484f787eacaaf27444434b05fc2ce9231dd7094bf187e93b8ecba019d66c888
MD5 50d7d32736108380ff2d285dbe2cfa7f
BLAKE2b-256 87edecaf75f6b7100c867c0fa4d9d2c04979d89f70e47899a66cf1e531870984

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1758580558-cp37-cp37m-win32.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1758580558-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 e2bba8fba8e961de305dd9664bc3cdd985f12804d19a84a59cca04437737be48
MD5 9860f7141222ccc2b05e52b07b925cc6
BLAKE2b-256 dba0443cfcde75f8bc4ddef27436247280b2b2dd4db4813a20d180ae0be02793

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1758580558-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1758580558-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 784ea4b1c7ad7a051e03b41d9eb5b6a01558037bd8332450ff1bbaa7ab1ad12e
MD5 ee259af85c34d9d4234fae58e63266b8
BLAKE2b-256 f8a923fb1e710401be2efd730db116e2dff77cc397ee421833bec94875aa7b31

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1758580558-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1758580558-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 77f94e673a9457ebb17b5b33324f23de4c7bf8714a8bcfd2809ae0d00bb15fb7
MD5 e19572690e80c419c5a259c7fdaa330c
BLAKE2b-256 0d93ef1921569d1f3b30919850a62c6f7bee05ff3badaa364ba35cb68e04fafd

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1758580558-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1758580558-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b101f992e857e3476472ce8a1946d51811144350bc6f6bcdc5aa8086f5f3d41c
MD5 2b8d22b18d5b03005d2f0e664e8b3820
BLAKE2b-256 0eb9abdf4ef63db1995a804da925326e1d012e6304656a95b7b2d7e245ac0c0b

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1758580558-cp36-cp36m-win_amd64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1758580558-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 0be20c5a6a22561d2eb99659bb5f620a50e37fc1b9a99826f944a09d960ff04c
MD5 c00405b2c69e547ec0e09b724aed0a8c
BLAKE2b-256 85a828535a6ac8662cf3eec8140c7c904f54e989e9e2adeb09a56f8d07f4bf05

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1758580558-cp36-cp36m-win32.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1758580558-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 26721eb7f34bd4e75de89a3edc06c4da8afa1f81557363e23642dcb7f43c89d7
MD5 d18eb926413c277d4d26465031dbcc3a
BLAKE2b-256 a4fdb095ad76ff84e2136c98263b24add926da07a7f493e6117035aaf581f596

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1758580558-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1758580558-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d6e14be604401ba1f6cecad81338ec31166ca6601f27a8cc7a4dcbb5d26ee411
MD5 00c1c2d985b5a161afafd8f1251e2bbe
BLAKE2b-256 c1c8e8f0e19b484bbddfba931ebb3d85f018721533b1d70b20a37ff9680fa910

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1758580558-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1758580558-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 58f0a2f64a809e045252f912cf13ec12758abf7d2fb5bdafc31ec936bbcfb924
MD5 0245468b87b371510e2d4b5273c55f83
BLAKE2b-256 041aa12b55abc0a7032cfbeb9392aca521ac0c1607671878111b6a4510c49f19

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1758580558-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1758580558-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e27e6b08b675b3f8727d17ee98f71ab255385b849119cfe5a6ca540306768d4e
MD5 b8da0e1bcbf23fb705e230d1dc3a1efe
BLAKE2b-256 9813a3c01cadabad4cb8ee9ec7a84f52ecf777a79f975f4a7d8ce22ff74ed9ff

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