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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

stim-1.16.dev1761611832-cp312-cp312-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

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

Uploaded CPython 3.8macOS 10.9+ x86-64

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

Uploaded CPython 3.7mWindows x86-64

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

Uploaded CPython 3.7mWindows x86

stim-1.16.dev1761611832-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.dev1761611832-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.dev1761611832-cp37-cp37m-macosx_10_9_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

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

Uploaded CPython 3.6mWindows x86-64

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

Uploaded CPython 3.6mWindows x86

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

File metadata

  • Download URL: stim-1.16.dev1761611832.tar.gz
  • Upload date:
  • Size: 865.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.dev1761611832.tar.gz
Algorithm Hash digest
SHA256 608194a6ed6377a7fb7a5ab1c057cea078d9f2fc4c3375450d823ecd6c843186
MD5 086fcee6ec534a527bcedfa7cf75ac0b
BLAKE2b-256 d9c6fb63ba2434aff2c4e408bbf2f9672135f0b43ab061a9daf929c496c15271

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1761611832-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 97f99400e48b1b19de68036f36fc0a14bf956fdac0fe9dce9b8dee560f92fadb
MD5 f892eb0295946bd5c1e67e958ca752b3
BLAKE2b-256 29a44a2414a79cc34504236ea9d8387277751bf7d62cd43c0c59779b08102bc0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1761611832-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 996564e72c4f3e9035828d71bc307d325acc618212ac3a8177eaf7f8081bc3d6
MD5 17e9e6b9c8c8340c279d09a89a3e6a6f
BLAKE2b-256 87dda379aabcf2682453d2c3006bcbf5d08fa94260cf00501fc0cd7ca64afc26

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1761611832-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9b13d8ac78d2a3bcb966a667016dcd05a4e955b42cf2b14fd09805f20a82e75b
MD5 75bc19c867f131e9ccee58bd8a030489
BLAKE2b-256 f6451afb61eed7e0884126ecdb283db7c32cff1fa8e063249172c00bb129094a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1761611832-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 77f6db35d503501c83cfa975e894cdbc818d463d23705a54b308b94d2e814ce8
MD5 06e246543da53182ef5a4608b407679f
BLAKE2b-256 9b7cfa6baa276d252425b58ed58b5d7e68e3acf9f8f72bfbbadb30027729b6df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1761611832-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e72668651b717f39ff7ac7640e40a7af008d68c13c5d56d95c6bd8e7df6baa67
MD5 0c6d7ca31d39ee60fe26e154edd5f191
BLAKE2b-256 803c2c179aded9b2f10b867ae658b31b099fe7cd76848a4050f01ca950dac357

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1761611832-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d16a8d647eabb87ac82e4b2c7a3e9cf00bbfb9fbee0e14cb933d3306805b7bd7
MD5 e7c34c14a9ccc110db91c06ef3f52190
BLAKE2b-256 855a5522092cae23964898513c9cbebd038777e324b9bcb0c4220e6594a7d632

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1761611832-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3ea9dbc9f6be413e6bde8e8f03e5d854f6502e41d74df6340a25282f845acf06
MD5 41902e280002271e23e2593736dd17de
BLAKE2b-256 ff67e52d35a5f709be6f36b6197aa36c0b3f93af2708de1ab46770a68b9cec42

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1761611832-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 0129ed8d43703c385abce14dd197bcc78609df316e4d620fecf84ef27c1e2c99
MD5 20b9130d5d14e70055e92977eabb4b95
BLAKE2b-256 1fbd968b8680028a2d5172d0bef888ce395aef96b21f2a31ca7b6db498d95594

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1761611832-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 04c4fa0c69943e90ba327362b0f51a60d1363d35b251230b5e86038c21b39198
MD5 183e4bd3adcd1ff0703199da50779c2c
BLAKE2b-256 ed6d123c22ef56b7b796e7ed27025381af2809c3e5acb61dfb44af48eea83fec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1761611832-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d53b420ec2d769ef75bce582d5e5403dc6f851cbbdb3324afbd6e0b3964f7aec
MD5 5ee5b4eb7ad16c1e48e5b262f3cdd5bb
BLAKE2b-256 460275675d0d1cf71ed3d26271b53aeecdda06754c21f5d001c10ed615a7b6dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1761611832-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 941ecdf886106091bde73069acfde6f398aa42d374f416f90976932973ea749a
MD5 9d8bcbf18c9787b7849c20f6b227c617
BLAKE2b-256 b06b52d23e2c61bf1f7fd67c0452593cd0691a03578f8f1d5160f9ff15d0fbdd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1761611832-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 148125bac35476226315ab1ebcf1aee84bee9be02f604f84a96734f72ad32dbc
MD5 5ca9a5832129aeba1dc7158592143c20
BLAKE2b-256 9973a26842b19baf057b808746a87bc125788be52a8b55fe10f4b06f00c74cc9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1761611832-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 09b8d358c7c7dae8046c7031c61a501546bc063c460d8c2ff53c30f610aadba6
MD5 6cdd7b2c7c80b83cc8e61745925922fe
BLAKE2b-256 76d7a0a50a0533e00dc34c38b39458f51ee8e4e3baf17db6803c9461f8859905

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1761611832-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 662c34ceb5e57001f7c25bb1684f0adaaa49a435f7d6ef3abdea478b983f1987
MD5 c9d3f8a5413130807cbf29b442b2b0ca
BLAKE2b-256 b710b7edf1f6a990307a539c213cd1389d9485cba98077e806f503cc1240c3a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1761611832-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fc6f03b68c7c866182ba56a7775290d43107bb3aeb37c0befe43f1269af909e2
MD5 12e7d2f0366833f944256966feb6ecb1
BLAKE2b-256 b2286d8609258e5fcccca96a226a60ddf48f225fcbed03a707aaa1e1156cc74d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1761611832-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fba41ed3e4e03f009e208ba099a2a880119abbeb81fefc8376e7ca7f35d119f7
MD5 9b91bb97ffa0967cfbcbcb0a3f7fd5a5
BLAKE2b-256 a0337aef9db36229d3f8940bf9474edfdcd3026d516cfc389a63b4347a16d17c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1761611832-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 e72b2ccd118fc31e2bcac591a6e538c2c49d0a2b22e35e8c848219b74f1ac172
MD5 509f197cbaad8977fb617795641620fd
BLAKE2b-256 502f76d325cc5b63add581d000889f9ed31254dbfefc83162f7193f534621ebe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1761611832-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 89b75032a85339656d309d300cf4fa0e60a81ae8831d901365be5eaa19305b97
MD5 3e2c51c7d9391452f2b21b6d1175a169
BLAKE2b-256 01ecfa5aa77f4d28866af3e447067a3cae542e2ec726c662c7ca6de96d47ce3b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1761611832-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3ec361b4bd0e8a7777af9f299d8ff9efb98f99d16dce7a1f0a9612bc3679f610
MD5 d9c14ed5860b71f0547255ab8f5fa26b
BLAKE2b-256 1fc548823ab0379d06ef5623d82187526d78e9ed8897c52b0dd368d439c0a77f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1761611832-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0d8c5345912b02dc5de535b58e866acb86c944da632ebe3eaee265f89b6b3483
MD5 493b065cdcc00c0d60493da48ea3781b
BLAKE2b-256 b32c6890ec124fea3a21da559b3646a4fb0cc571882e6c8b4d2384a1288ccb45

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1761611832-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 483343c5212c621031792a3173b97aa537b76de1371b8b84bf96cc825ceb7808
MD5 d8b6e68217b5433b1b288afd5209adb3
BLAKE2b-256 f8546f604f39d4e9d8ede10e5a9201f963d3183312808ef4d7515d321ea60df0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1761611832-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 20d95a5bd22fa84ac8de95f528015151f90294df915993508eb12a92921a2d52
MD5 397a535a0c4afbb13abd72a6f3a59650
BLAKE2b-256 890c045e00d61f54a461074d998ca809211d058c6af36bd291a776fb5753d3dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1761611832-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1cc4b2217a90c9b7e1eb3f679c83de58a47f9be9227e77b4e5cf73eeca22523a
MD5 87c08cd1426baa8effd06d619bc6aa33
BLAKE2b-256 5828eb8b068c6207effdee24470b689eede0044fac0385f93c5eee12ca829707

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1761611832-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 66526d5e7dc237a24593176f0ea96038cbb0d9505b4c27e66794c78060b9811e
MD5 bd68d9c2406796c387270cf7041c4f66
BLAKE2b-256 4782d97482c2aff7c64ccd1d779cc215e7e1a28272de9c74770c4bdc6a66275b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1761611832-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 04f235a9e23c98c252ecb837c8b4bbd8e198b2026b264fa3f717614c646aa83d
MD5 eaef3d825cd6bbffc55137dd173d78ae
BLAKE2b-256 53b2d149d85eb27531e0a3b1e40f2ca12f1a4d900ab0e72f26d9971e117714d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1761611832-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 1486c9c7a83f9402f84568129feb33aad2cf5a36fa464c6ee1faed32d2b82af2
MD5 01825d4d301956cae129ca3acc0dfd9f
BLAKE2b-256 8cf3908abcb42efc657db208e1fbed00e52a0e49ec6a1f2e4e5a61fe91e6cf28

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1761611832-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9006a0f2959a3715544f6bee8156f5dd9681770369b2068a4747062ea5993e89
MD5 10a3e215b1092c4f1b70ec89071ccf37
BLAKE2b-256 6af06eeb1a707de33f7d0eb53808477ce47a9cf98d3210ed899e39c522ebe698

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1761611832-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 50ddf5999a80ef008feb00c92de9f7cf1291f55b096cb4e3190c13d3feb6902f
MD5 b91ad457878d5a2a733328cf34926391
BLAKE2b-256 16fc6673f6881165af1bb035de725afc725b9085501e7be8d9da87cadb4af447

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1761611832-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 882bfa36ea6d4487443f1038834c5c66b83b3dc33548506ae4ec8ed305dd5155
MD5 28d89c22036d38f3c7c756e430972f3d
BLAKE2b-256 9b93c8d6555643728c301d6ba13393f484a41c8bf38d6c500b38ba3aa7b1f72e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1761611832-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 affbfb7995b2bd6411859674de27380c5470c97c76460785e1a6dcaed24ba59a
MD5 b12b61010106c930a91a85add913e7c0
BLAKE2b-256 f4e6c24e81ee6c1e17a683c39d0e9e36158394cb183cbaa728c5b852f94e947b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1761611832-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 bdd1ca7b812a9f384ac9d62f6e31cd5f6516f686d6e670a2b23675935cd3c15c
MD5 96010b3520a32f6350f1f36df6b40c77
BLAKE2b-256 0608fca55cea09d0565304d72a7bf2a7425226324b7ccdc06a860b6f74458e17

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1761611832-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e5ce7e647807d6afeeda1246361cae6a4e1678bac0521a8e504ccd3baa584fe5
MD5 253b1f780333a15569e401ab3a6439fc
BLAKE2b-256 1320eb3801ae48c2764f56fbc14a5634b1be2edece2fc8d4039a7421054ecb1d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1761611832-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6993239bb54e4a1bfb5b8c1cabfd2dc05eb4674de4daa6473ef916f95054eb76
MD5 7d94c1e1e8ae79feab7689efb424bba6
BLAKE2b-256 c712f294386883b101a4b7f9fc365f602812636031bc292a3db72f0b7e43e0e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1761611832-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 db4d1db6b4b11993c4b4d2cf4ac806d255f4d7761d78eeeed3f1879b3e8a9a4d
MD5 a2ece067629682d72fb5ae69d2c1b3b8
BLAKE2b-256 90a71c74d14ff99fd4cb9a59ac0a002e17c938a05854ca0df48801dd8f75644d

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