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.15.dev1737977492.tar.gz (820.3 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

stim-1.15.dev1737977492-cp312-cp312-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.12Windows x86-64

stim-1.15.dev1737977492-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

stim-1.15.dev1737977492-cp312-cp312-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

stim-1.15.dev1737977492-cp312-cp312-macosx_10_9_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.12macOS 10.9+ x86-64

stim-1.15.dev1737977492-cp311-cp311-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.11Windows x86-64

stim-1.15.dev1737977492-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

stim-1.15.dev1737977492-cp311-cp311-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

stim-1.15.dev1737977492-cp311-cp311-macosx_10_9_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

stim-1.15.dev1737977492-cp310-cp310-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.10Windows x86-64

stim-1.15.dev1737977492-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

stim-1.15.dev1737977492-cp310-cp310-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

stim-1.15.dev1737977492-cp310-cp310-macosx_10_9_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

stim-1.15.dev1737977492-cp39-cp39-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.9Windows x86-64

stim-1.15.dev1737977492-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

stim-1.15.dev1737977492-cp39-cp39-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

stim-1.15.dev1737977492-cp39-cp39-macosx_10_9_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

stim-1.15.dev1737977492-cp38-cp38-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.8Windows x86-64

stim-1.15.dev1737977492-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.8 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

stim-1.15.dev1737977492-cp38-cp38-macosx_11_0_arm64.whl (3.4 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

stim-1.15.dev1737977492-cp38-cp38-macosx_10_9_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

stim-1.15.dev1737977492-cp37-cp37m-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.7mWindows x86-64

stim-1.15.dev1737977492-cp37-cp37m-win32.whl (2.3 MB view details)

Uploaded CPython 3.7mWindows x86

stim-1.15.dev1737977492-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.8 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

stim-1.15.dev1737977492-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (5.0 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ i686

stim-1.15.dev1737977492-cp37-cp37m-macosx_10_9_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

stim-1.15.dev1737977492-cp36-cp36m-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.6mWindows x86-64

stim-1.15.dev1737977492-cp36-cp36m-win32.whl (2.3 MB view details)

Uploaded CPython 3.6mWindows x86

stim-1.15.dev1737977492-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.8 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ x86-64

stim-1.15.dev1737977492-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl (5.0 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ i686

stim-1.15.dev1737977492-cp36-cp36m-macosx_10_9_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

File details

Details for the file stim-1.15.dev1737977492.tar.gz.

File metadata

  • Download URL: stim-1.15.dev1737977492.tar.gz
  • Upload date:
  • Size: 820.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for stim-1.15.dev1737977492.tar.gz
Algorithm Hash digest
SHA256 8e0172fd97ff2d84544b1e2a8cea96d2df8cddc0a4b55ab8a07832b68eabd6b6
MD5 b0b5b326323e1db806b2ed54c108e8fe
BLAKE2b-256 6f9311a4d105dd70dd11aea0a4fc1262a2cbbbbe965d7127f16ca64bd0247b6a

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1737977492-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1737977492-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 97d716a98ae0a216edcaa96691781c1c7cf26409cc3dccc39faa8f7f583d285f
MD5 cc99d0674420f4f5167c51c0aa00d15c
BLAKE2b-256 413a60869323713c7bee7b650b03a742755691f5d3512537c4c5950766cf7096

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1737977492-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1737977492-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b48762e6b09642b5c4f4befb65a60db6b0b90df3893e5b05a7871c22b194967d
MD5 bd9b9f200a96ff9cff659d51d9e27fc5
BLAKE2b-256 7636bb738c3f57da79ff6d8f379ef5a300fc9faeb8cc135b46c5e85de4689b9b

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1737977492-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1737977492-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 07873d3ee8e118dab4307f86a77f7e58bc271e44ea847187438b647c672b9bec
MD5 ce3f99e10390b75ae908a6b570759748
BLAKE2b-256 8533f1605d2015c9db8a6a175ad4644e9da9480ce62f9327158b1275497d6193

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1737977492-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1737977492-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b0ab6a1c8441ecac4c55b659e0cc0d1a3621a7cee9bf57d2e488c63467f9203d
MD5 1ff4cd7ac64b17a1d485b271e407e173
BLAKE2b-256 1531c5c104792cc07993221d4802e9e40a5ed009aa72b4184a1a83e8f6f69dc2

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1737977492-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1737977492-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e63ff51ab30c33cbd1bd6c6a90b749fad0e8fc46d5e61b5aa624a989358ecbf6
MD5 c9f775e0db5dd6babbe27f86baafb4a4
BLAKE2b-256 c834382d51f503dd27b737eb2a1415af7d717a3c5b6891748c7696579910c4db

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1737977492-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1737977492-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5c239a99462ae721f262a73d42a0da037cefcc0ac5064ce62bd3cbfe145e6a84
MD5 7e6b08f11ad893bcc3dc8ccac49a0974
BLAKE2b-256 ea44da86576bd3c1e0f09505e32418bf6cb91ec72d8a7b4df856030566186f72

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1737977492-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1737977492-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6dff9243606dec9288af74b026b7ce3374e1848c748f79dfeaf6ee1d17382c69
MD5 7090b8b7c5ce964b6776850cb9afd3f3
BLAKE2b-256 e2aec3f3f58e28f497186cf75494336d786f692c5649d93c517aa4838e4ac0c5

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1737977492-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1737977492-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 12d4ea8b719782e99f7bea67ab2c26f9887ad7f60907bb78ac69e88c7dfb5836
MD5 32cfce77a76ad363dc003582fb178521
BLAKE2b-256 53f877ee6be1c9047b8fc2da55f69c6a4e54368415647a3cbe687a57e7b88d5d

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1737977492-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1737977492-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 8e95ffc29cc9fe80b0e2e1fae94606d17148953264936f75b50ca0bb5ce229a2
MD5 b93431ca8d7548471da18276fa4cdd5e
BLAKE2b-256 eb941ba5f86f53f35df924384e18eb988403253c4684338d3df3d830740f4179

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1737977492-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1737977492-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4f6a11daf69dc6ca33b47a586882635e0a99d794ddc6f4f163bc26e4595a4b13
MD5 a95166fb1881eb73b2369634f4ae47a4
BLAKE2b-256 4bd56e08ebd2823531f9706dff39f79cf1ba7a84f68e2312a0e5f910c3608a7f

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1737977492-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1737977492-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c1f8bc6513f4b387c01d5367980698f34c32dac140ba4deae7955f19b8354a16
MD5 984cebfcb70a7fa1575e30ff91c1f202
BLAKE2b-256 59fded094735be6f71d9019ba408522cbd9a09a9c742a40283cd655663285a44

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1737977492-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1737977492-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 05e6899612e569e8e3af21b7ff81798356b90ddaceac06b0cf30884e2c5cc471
MD5 ac0b58372779f54673d52b32d5ddee1c
BLAKE2b-256 b3e261f5b7c226328b23b898a1f72952b177eea70efab399fad6136565c08df5

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1737977492-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1737977492-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 f190a90695b7e414a52ada524c09a810dced92c9b0e2139088604c97b3b543cc
MD5 4bff3ed4ab14cc3964602bb3a023502e
BLAKE2b-256 ead4c9f571f66dbb1dc02e36660468511212b8edd1b621407a22eaace12c72f3

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1737977492-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1737977492-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 767553c615659d684ba3060bc32ee1962c353198ff188431eb0004cae4918591
MD5 d919f662eab8fadc0cbdd3bb8218c6d7
BLAKE2b-256 c5bfe34eab5a26f37d3ecf2b23bdc019fa6f829595d4af639f410e6de5141fc0

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1737977492-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1737977492-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0bd848261eed2836dc52d80fca524cd94914edd29cd91882c13570cae366e20e
MD5 9e845898041fb482b8e2d5d7fe767681
BLAKE2b-256 78f0f3407b00af72f675a831044a33e6e4af5ca198f28d88a5c8bc528277f760

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1737977492-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1737977492-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4e4f84ffbf36b241a400f93315acc682be234f3cfa37ebc1e231cc3ddd8dc209
MD5 77eec6578d0081755b4356a865b81c26
BLAKE2b-256 3c640b070275235cc039fb3be286e29129077c7df8df5c0decee07efa2a5826a

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1737977492-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1737977492-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 89486b7c6407d3b711c0ad12684e7280fc347e2c14c75c3c27ebdc07fa701757
MD5 e419b74f29dfeb192ef4180c1fa68b59
BLAKE2b-256 269df9de355ce312cbe677330c358b222c99868e3a1b0229495091d1f9321cc2

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1737977492-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1737977492-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4498a99a97b197b4c96152b773dd08a6d6ea94494fd845a3f2d81d81cdad6237
MD5 3928168b03214bc7c6e5888bebe330b9
BLAKE2b-256 bab3567f3d83ee00ef55be3ba4c0253a4196ef1386ca369d77dba2aa15c5cf37

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1737977492-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1737977492-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 56443f77ce7dd9dc0e0f8bd011f2bc8e5f6da6c85eee41dd51d9195b4c26d66a
MD5 5d07d77f0e8b4ece5090c2f074c1bf6f
BLAKE2b-256 66c01402c59dd4aa038e96857ec0b75224e6808f397a3ea3554f72c8c17bd445

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1737977492-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1737977492-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 95e1d2fe7ab1cf58feba22a7119db9c1d90eb46c48508532b12fab4ed91f5ca3
MD5 c597aa44ada5ec4446338243932898de
BLAKE2b-256 0dc5c13ac5c02d98fe473dadbf8b131929f1146c45368d793ff6033626e2ab5e

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1737977492-cp37-cp37m-win_amd64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1737977492-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 497e8b7083ac588dd8361d4998f261f74bcef67c7f44c61e184f9d3a35d08fcb
MD5 84c10556d66c6905376816d7f52b7bc1
BLAKE2b-256 00f20f084132f56796e107024f846fb3800d0ec3cdc53e5e96d2bcea559c8a8f

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1737977492-cp37-cp37m-win32.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1737977492-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 e53d08233ca05fedfaa64eef2067ef30d2483a65c81a4edc64fcf98b04901a5c
MD5 df318146d15b7cba7104460f68110915
BLAKE2b-256 95bcb6fecbceba4c2a9b3a9d63837204279b51fb5b368056dfbf59d797becc1d

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1737977492-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1737977492-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7223d701d78fd874057151985d461604860a25de3a01560c4765d1402b3faa12
MD5 40fb2c538d1519fcdb8038772558675f
BLAKE2b-256 232c73a6a2fc87e69c8fd1c615d1ec1819cb91b4127769656abbbd3f5e35709d

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1737977492-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1737977492-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 74de98735092f6b24b52cfde3ca5a0ded7ce74a332c31826ff293e959b331bba
MD5 8e26732883b9526aacb907ad20b548f8
BLAKE2b-256 0d0fa417f1f448965f004ce071671aadf5d7288f2c669e191295433979cb2c41

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1737977492-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1737977492-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 95e633773d53e97d8cfc07bd27539e2f84332e200c92c313ee0fdd28b3bfa170
MD5 df07f93d1023f4745283bc3543c19cf8
BLAKE2b-256 c91b18cf52f6c85402e8bf0e523cf7f2180a39c9d3f486c95277fd04e4d9414b

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1737977492-cp36-cp36m-win_amd64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1737977492-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 efd83793ab0945fa273db6399b5c58828cb076179e338e468bb42638b52e2db7
MD5 b587c4c7c6510bc93d1bb024f02af10e
BLAKE2b-256 5aa68439313799054c3a5915a4d5cea290fb4092da38ad6d0120045ac0bebeaf

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1737977492-cp36-cp36m-win32.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1737977492-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 f65fd294cf92052b35451a2051223cdad03fc61fde8e06772b67ed6a56f6f7ca
MD5 bbdc379ce2942f0c0f09a2f016872c0a
BLAKE2b-256 610f6d7179a91093521c50be2d465feadb8ed9045d41665b8a8953cb46329806

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1737977492-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1737977492-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fba6ebac37d65a44fdc70a30f5ea75cb95845cdff03783e95617365f0247ae74
MD5 eb875b8d21695d04c4497ddbea0244b7
BLAKE2b-256 988fe7c53643724d6c79d809fca4983b698553f7555039429f388d61ffa7df9a

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1737977492-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1737977492-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7818d3f1220190bb6e9fc26a1040da1b5c2f29b96d94dad4e43bc6a706658b30
MD5 3f12284aca296acc5584c43f3e86dbe6
BLAKE2b-256 027e0b6d7c1da8186593d2c285f6d8d812cc79b57efc7205247df567b265bad3

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1737977492-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1737977492-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 57fe34c3df637eea597b26e09ff1475f83d520d76912a2e2dee64a9e00100d06
MD5 bf4570e86ff73405399c1d8a4ec243b1
BLAKE2b-256 532ddcd74db8dd55550df2ce7658f2394fec1c93efcd36ceb1eee2998f319596

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