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.dev1741042613.tar.gz (828.9 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.dev1741042613-cp312-cp312-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.12Windows x86-64

stim-1.15.dev1741042613-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.dev1741042613-cp312-cp312-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.9+ x86-64

stim-1.15.dev1741042613-cp311-cp311-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

stim-1.15.dev1741042613-cp310-cp310-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

stim-1.15.dev1741042613-cp38-cp38-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.8Windows x86-64

stim-1.15.dev1741042613-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.dev1741042613-cp38-cp38-macosx_11_0_arm64.whl (3.4 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

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

Uploaded CPython 3.8macOS 10.9+ x86-64

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

Uploaded CPython 3.7mWindows x86-64

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

Uploaded CPython 3.7mWindows x86

stim-1.15.dev1741042613-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.dev1741042613-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (5.1 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ i686

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

Uploaded CPython 3.7mmacOS 10.9+ x86-64

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

Uploaded CPython 3.6mWindows x86-64

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

Uploaded CPython 3.6mWindows x86

stim-1.15.dev1741042613-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.dev1741042613-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl (5.1 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ i686

stim-1.15.dev1741042613-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.dev1741042613.tar.gz.

File metadata

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

File hashes

Hashes for stim-1.15.dev1741042613.tar.gz
Algorithm Hash digest
SHA256 d00229ff1368e2837302aae29c6824117f752dbff03b09f2c9b01bdc94d1b92e
MD5 0a972d72587f17f3f5dad214b45c7bc8
BLAKE2b-256 5e44f7305f9c5e8c3f6bf348c4989ab39c680c7feda8f0c38257835fb7703d6f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741042613-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 26e727d7a3809b02337c5ad75921f51796157cf2b81f0449c5966126f528f501
MD5 840ae7e8209d13cfb9894fee11a7d8bd
BLAKE2b-256 4926516c1a9d16fab7113d8fb37b2bc9915ad89a428c221a983e9179b5cca5da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741042613-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bb62b32090ccf709513d0a2705950bd11036f09edf9d0faf226f7fe59ad9c4cb
MD5 56c4fa9849c45798f2499f56915e5f48
BLAKE2b-256 23716b2cc0e2a02db69e54472001046852dbd4bed23ddcc7eef1d33f646fa6da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741042613-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6b1b840df6faa6aabf79f6ca608b897eea92327d573c74d0694f2e4ec116f205
MD5 23b1ad454cdbe55c45341369eac06065
BLAKE2b-256 6d641ae9023c53477b1e2cd1d511a51bff0b41b9fc8ae539501bf1e2b5fb8dec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741042613-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 31abe1228795a8bdf30873bf680a0d0dc4fe79ce810852f2f82468dc9941072e
MD5 125ccbcc8f255fed56faea50326a94d3
BLAKE2b-256 053d66af94a4fc19c389358655a9c41b3783ab2383dc97df8f69353813bc2713

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741042613-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 8ed40fb1f91d6f70e89292b1a3073950fc2396c5ac37f9d5020c7630a19fecf9
MD5 cfe3771516697eb609f571c3cc8e4635
BLAKE2b-256 e86e10c60d95b7209cc569115dd5fde772abd263bf327f67546a14bc07929d72

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741042613-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1ab489fd64a08e6f0622c8013ad6c73e336220a4b155836784d093d8d1ce6c7e
MD5 cbc4024b00d91843cc8741f6aded154c
BLAKE2b-256 8fc63cbd80d1d999d5b007bc96d9acbee5535da543a8baf9c725544fe78cc3ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741042613-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 471d73f21bd33dd7ffceb43f4fc1634be83204532d0982f3317bd85f929c3f16
MD5 b62e525c9304c55d83fee6f04da6ee56
BLAKE2b-256 e691b05b199df785ff240b5bd727c7cb1196204def40a20dd2eb47162aa3bce5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741042613-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 10747741f64dcaae5fa9327263fde1554fbef278bb8e5180466dabf2a2e7f546
MD5 ca88939a4d7b58cf615531d62dd8cec0
BLAKE2b-256 12d83e23705c29244304572768cb7faf2670e3d466f55d30b7599c118fc889ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741042613-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b3ddad851dd29231fc1430c35ddfc47aef38030b5e05eef9c48399c07a34cd2d
MD5 eec25bbd82362ea5a535d2171c0d587f
BLAKE2b-256 74c6761c0658121544a93dd58149620f57305fa9f778f64d96645408e6553523

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741042613-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 66b566368e915ee15a2e71ea791547770c08a0c927318d501b1f1fa9ff23e7e8
MD5 32d09d27a76b57e4c3d9c32c1b57b5fc
BLAKE2b-256 d7e6a042941de81d26aa1e291f23bb894c39fccd54002d35c836483eb2ce5871

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741042613-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1a16480e590ea96afc6f7a979baf67b7d383bc2a2a97d1de4c591590c875a7cb
MD5 bdad752cc52d78acd3465737bd47d82b
BLAKE2b-256 43f90e21712a0174159632a181fe40d6c5339cdc44e64b6556dbc38ec8e3c9a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741042613-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 faa15ec802bad765b9fdc9d62c44db897db96f0d9126b487a9c6a3be015e6ede
MD5 bc18afc94fbdb93aa337425322b8360a
BLAKE2b-256 ac9173dfee53b871601438a70df67ebc08983d362fc3bd56a2682c0f1d49ea2c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741042613-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 52f1bec0368407a73dc3b109c142bd9da0f88bf9b1485c11de1b8b99f5a2d9f5
MD5 e08521ad0c39c49b9bc793482e2ae132
BLAKE2b-256 520ecbd0ebfd8b6d79276729b184ba6cde447a385a39a18e2dc8199a18869848

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741042613-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 70bfbcb52fbde4d45f4ac3828c7fce76c2ee950bb2525e674410d151eb23b474
MD5 d69274bac8b6cbc9e0564fc346f423bc
BLAKE2b-256 e4b94279f72362139d9b5b28f89c18a3cc8420b30ad68264086b6672cd0dbc62

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741042613-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f7230ea2f2ba5d55fb2faf209a5feac49c7ce3934a0d71c81e673ccf917eaf72
MD5 ad77249876a740d84479587b8a4a7519
BLAKE2b-256 c593dde6115e976fc0128299cfa8522c5d180a7a1c32222979e9a3931ea42b76

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741042613-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0b83297302fdf7b344809931639f72efdb7ebb5d7fadd5d1807dfdc7427bc347
MD5 6c5e7afcb58acda007e86b29262bba0f
BLAKE2b-256 08d39c1c56134090ad40b07bb2575122b22e028df61a8643a4404115a77fc626

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741042613-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 5bfedb16945968b337454ea25f8b2246a56a42ce52789254965575c1faff92bb
MD5 4ac626e7f3c7e9dbbff5d876a51fcb85
BLAKE2b-256 1964e82fe86efa9942e9449c47b1e66805ebce90bf8941c93693fef0c8699ac1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741042613-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 77f1e2698973f799587c7fc7db403fbb2b27807038aaf15e278c50055a0fdd0b
MD5 bc7b73f18dd8a36f6d3591edc49f68d4
BLAKE2b-256 70a47fbb76a2e970d3661d8b1a81cdeb7b8054819634d2993c578b05ddefd0d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741042613-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ee1d7cb2439c849071ad4ac97c3921603d0f17604fe3ef0d22abc3b7aae8886f
MD5 a82f95a95ee3a37b638057a2ba464401
BLAKE2b-256 f6741be13a615f6851b48e69c19924a167e063374513e17e0fb3768bfbbf36ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741042613-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c370265c83561fd1ad250eac5e9c245efceb23719fe8690bf0674445389b41ce
MD5 d61ae8b007fb0fab0a86fa884ceb7f9d
BLAKE2b-256 a3ca9759a657f767211a3707c9c6e1c72eae88fcc94883ef338e3c3c8a4f6795

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741042613-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 074f7e635e6d7f111d9dd76042364c0a639202fa3e944d729ea4c178c3c06435
MD5 03ce33051822b00e3dd01235d96b62cd
BLAKE2b-256 69424e9176e53709800b4b6d4403cfedcdd866e56245c3283c03593faf88a900

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741042613-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 ed143bcfb674a8609fea80d11c78b04df4c723091166a4bc126dd0b78c92a3cb
MD5 9e0e2b54f61f179188bda7a3779c68ab
BLAKE2b-256 d3be6be2dacb075f667763dcecaea837a857f1e9c2b0f5fcd544e3ffc8b12e3a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741042613-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cef0f8b89c11026419aba2bb374115782529152a14e0954c643846b3ab6bc9a7
MD5 d80a17ab1917f524715572f8b00de6f4
BLAKE2b-256 63bec02f4bd8716a3a06b8fdd0df06e0488bc1175f2041761cad5fcea0ee1955

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741042613-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9b2d36701ed66146b79a15d84f297e5c2c55dedcba5a2a9f28d990007e9fd49c
MD5 913ca80a689a93bb46399ed2b92c04f5
BLAKE2b-256 90abd0702d27a17286ae89773b3bf8b826c3579600e230afd3ae545010b9a6f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741042613-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 39fc35f02f046942ceb77361d4884bf81b582c10bc70ec91fbc3c075f2501f2b
MD5 845909f230b324e1710d6710fdf31733
BLAKE2b-256 86ff68489135582296a6954aa373650d17c4d2d4f33bb2781b30f96d41eabded

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741042613-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 d7e2b1663c91618b85c5dfe30aaa37ab338e19438ad19b4bf495fa8099214c2f
MD5 e466c271d40f5ce4ccc6c92a9d465e7c
BLAKE2b-256 77abe2eb6da5b804972b51ee1e07195dba2b4a8f21d7fe7fe593e02842fb1164

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741042613-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 0afa242644c1e6efd8fe0b6931374af5a5b7d012a917104469839ca905b51094
MD5 36518f13a0ba8c71bcdf10df8f1cfcc0
BLAKE2b-256 0daf029c8830debf09faa80d1bfd119c61028b3753d6f66de8e2cd1617326466

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741042613-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fff1dd439a743e3bf09e2ae820548e79b100793ae98710b145c983f7449ece1d
MD5 93e36b5388e83350dfb1f4bf85ae295c
BLAKE2b-256 83b1085226f456ff725af89c877dd6c2afa0fc1000915d83b1d6eed9c009d786

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741042613-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7c8133fb4a5092986d23a8000f31ff4587fc64e3a96b3ec5432ad97d4d0a3a3e
MD5 4a2ae3e9f05a04f21fb2b3b64cb5d948
BLAKE2b-256 37bc21dab55bd80b622858cc3e32dcb1cc6744c56b64a144d6c6770865fc8a40

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741042613-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a310985fef171dce54d5d1157e65b3b5d7e8da8e54aec444869483d4c1cfb908
MD5 7e2f926f89014a928882225ec72340f9
BLAKE2b-256 7ba67dfc6d39299cc32283b255805a377af31cd1a01be8f74d5176004addf295

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