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.dev1744789797.tar.gz (846.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.15.dev1744789797-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

stim-1.15.dev1744789797-cp313-cp313-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

stim-1.15.dev1744789797-cp313-cp313-macosx_10_13_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

stim-1.15.dev1744789797-cp312-cp312-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.12Windows x86-64

stim-1.15.dev1744789797-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

stim-1.15.dev1744789797-cp312-cp312-macosx_10_13_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows x86-64

stim-1.15.dev1744789797-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows x86-64

stim-1.15.dev1744789797-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

stim-1.15.dev1744789797-cp39-cp39-win_amd64.whl (2.7 MB view details)

Uploaded CPython 3.9Windows x86-64

stim-1.15.dev1744789797-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

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

Uploaded CPython 3.8Windows x86-64

stim-1.15.dev1744789797-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

stim-1.15.dev1744789797-cp38-cp38-macosx_11_0_arm64.whl (3.5 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

stim-1.15.dev1744789797-cp38-cp38-macosx_10_9_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

stim-1.15.dev1744789797-cp37-cp37m-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.7mWindows x86-64

stim-1.15.dev1744789797-cp37-cp37m-win32.whl (2.4 MB view details)

Uploaded CPython 3.7mWindows x86

stim-1.15.dev1744789797-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

stim-1.15.dev1744789797-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (5.2 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ i686

stim-1.15.dev1744789797-cp37-cp37m-macosx_10_9_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

stim-1.15.dev1744789797-cp36-cp36m-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.6mWindows x86-64

stim-1.15.dev1744789797-cp36-cp36m-win32.whl (2.4 MB view details)

Uploaded CPython 3.6mWindows x86

stim-1.15.dev1744789797-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ x86-64

stim-1.15.dev1744789797-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl (5.2 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ i686

stim-1.15.dev1744789797-cp36-cp36m-macosx_10_9_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: stim-1.15.dev1744789797.tar.gz
  • Upload date:
  • Size: 846.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.15.dev1744789797.tar.gz
Algorithm Hash digest
SHA256 653aead403597838be59d1a25d9124e9cdccdc35c1cf1a5a688c3b29a81321f0
MD5 23207ec21432cd6d1063f9b651d74001
BLAKE2b-256 fcd7ef863f0b9483e18de73a35142d2a4280ec7a2e1088602fa5e9cfd4f4f941

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1744789797-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1744789797-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8dcf1d959a3e1ecbf244219099985f67c8ace18d29354043c5901d866dcde6c0
MD5 f09f01a783b8d558f66d92e9961e5f02
BLAKE2b-256 52ebe431dc5067434420b62ae40f24210ec00be3924c1504d0d1caccbe728528

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1744789797-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1744789797-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5687af4b46aed4da0aebf18938ea1de301cc8e2a3f1bae29a19a2ece1e7d08d9
MD5 2ee84b03e68aa79188cd0e9071aa38ba
BLAKE2b-256 55a438faf997418d5388ea249a2525292f7cda80c79e2cb55dde976d9f1d2bfa

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1744789797-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1744789797-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 e5ce922c3058798409348c46e1006293b1694039ca75466831d35f67eb7f8075
MD5 fbe76ddd006628a75e7d829f4c133189
BLAKE2b-256 898d0b77afaea33d62943b2a108e7b513e3dab76687477c223c8d1bf021c66d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1744789797-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 85f1a4b1e9c25e7bd3c404e10f01a0fc446650d97aaaadaf83103dd82626de2d
MD5 8e77dcbabf32150e0e0eab32ec1f5754
BLAKE2b-256 6666380040683f1c4233c28f72aa5d82c43aa837a0ac3e4a5de8cb7d295054e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1744789797-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4dbc38bc86a9177ced78e12e3eedd4023053af5ef3d40d8895d0da7e4bdcc58f
MD5 eda32290b2276366fdc0f4071c8cfaa2
BLAKE2b-256 9ec83b5abcb702382c1abd95648734cf6bdf47ea96f053bfe0827c315a32d0f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1744789797-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1b9a3464bb03547ec77e5d7034a3c960e7cc551e1c881905a69b03868d4768bb
MD5 ff5f9a41d0f50e61c1167a2078a559cc
BLAKE2b-256 845275411f7d1e95f83e754c1d2cedcbcf6d4946cead04bbc6e5cfbe81d9e460

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1744789797-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1744789797-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 7e52dac66b3ac60d3eea051c464322eed1d6f503b809d3dc4ffcaad84d2a014b
MD5 72a4d3f8439e63dfa8de7af44484c45c
BLAKE2b-256 6eaf6f5846b9125da9543ef81cc20fffb7d465b124027f462ae3c3a4ec3df622

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1744789797-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 1291962300aee0b5f8bdaa502750fa46f812742091e9a4dc4b06b396825bae1f
MD5 44ce547afdf76d2e13d9eff889d3d549
BLAKE2b-256 5552494c2a2041ce78247de2ffe38c38a3b64070c328aeb542d1771abdeb80ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1744789797-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 377588265024ccf63a47b38217a37910a69ea5fbda80b21937e30384a2bef324
MD5 c448314127ed5151c442dc6abd10ece3
BLAKE2b-256 85bbd42926058444e28f02e27e8dd930ecb5b3f284002433a3b70ac144198aed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1744789797-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 360feca6ae1f65cb427b5afa7c06b6e093838d1f6916c482e99c413fbe63e28a
MD5 0f74d034d71e24d6e5668679595a0559
BLAKE2b-256 8fb075a9683d0396ff68b5d21c004cc56d99dab1fd10b0251b9ccce2964785fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1744789797-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 76e2e9195c7df85ecf93e5e98809af9993cf799e3fa631ea8e6b969a72dda70a
MD5 f578290e27c9ca808249c721f1067547
BLAKE2b-256 8e02ce1e37b0b950428c53f525fe9235ace3f82c433ebf5dbbbcd61e97f368ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1744789797-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 90b944e7d783a7996bf4ed0d6d1a92b409be8ce139116c44a549b08245745c21
MD5 ad478dd14debcd8f5f8637fc15cc4d43
BLAKE2b-256 0ecbcaf9782d4850ccf681eba26617c9ad1ae654a8effe797c2dbc65086c73de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1744789797-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ada0d2a1026c7c2c1d4d1f41714a92666ad7a3f213f2d1a88e121df7e30af2ff
MD5 41bd052f09c6b8510316e1f10ea39ad7
BLAKE2b-256 3e3d6d953ea100196d39621e8af1cb3422e23456773677daea291945f90c02f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1744789797-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 15d7318cb6e92222391af965eda02c149e54b26a4fc115bb6242ace658f37ddc
MD5 140771076a9655a3398e351aeaebf245
BLAKE2b-256 aea9e74e0014420e4ce6af988df9dc4bd23dd0d42e792e93d4414ac5e206ddb6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1744789797-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 196c463ca3b4b122488c1fe1726ff8464f980e7e3e0d3a015d67f1e58b25145e
MD5 4d19a8aac72a971e614f82c06441d241
BLAKE2b-256 2187a0850f9b1292e402d3093444b53ff4a6164e9e1fad599c0c5a54f6763bde

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1744789797-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 73867e214cf355f9d245099b6e954e4c1d4ce85ec9336a4c6c8f9aeea4951d8f
MD5 1c400627ee195ff7371a270f0548fea5
BLAKE2b-256 49044b5c80db76a828bb455b74bc67486b1f2676314a7c3c30b4c0765301446b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1744789797-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 22a44d58dff945648b99a9580a0fb13b85b8c9ada05c81727e921ac0738a5c3a
MD5 f10d4161dc53446aec11579362767b5d
BLAKE2b-256 d4600b2ca615d81610b37d617db94d0f73cbf9e3d50f5c25b2a2eb97ee5cf18e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1744789797-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e4d471e46b93590a0ff3cef7eb038edc45efe2e21d9fccfb8a7a94ab3efe6b41
MD5 03d5c7f9407ae9cde09f6cae3009ab69
BLAKE2b-256 e57a19b649979b7ebcb4bcc06ecb3a7cc7399b8845f8358f5f3be7cd2526c90a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1744789797-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 88f01f00617b2bee5cdd215d8cc5170488cbbaf2cf2d95f4bd48956e4ef586d8
MD5 8a323c88ddf272f89afa4d96b76cba68
BLAKE2b-256 b63f8542e45fcac0f9d69a07da6ccf99ade40ca61e30b5d339948833e2fe96c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1744789797-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 6220ec15c166ccf6cbb390571398fe7b0d2faadc2d421dec80ab8c9eff21f0ae
MD5 1656afb4f05a227135f18d195829a860
BLAKE2b-256 86bcf52043d4a46b45167a58d9bdf94362f35c068e77d977b066145cd1ed9f82

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1744789797-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4350875ffdabc4b93607f48da105ef558cdbc615ac74066b0acc58dd0d8fe1a3
MD5 b58e3dbdc325dcd19dc3533b31b53718
BLAKE2b-256 84c8521bf149a1504be9fcb735575f44ca8de9a829a4d63ad839b6eced5c5da6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1744789797-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1294ff61512ffb7da6617b4289dfa54b79c2b5983fb38da4ca12bf337c2f1749
MD5 9b1e9b85e3dfcd1af765106b60e9b5a6
BLAKE2b-256 1872e6d60c36a43e56dc9b4de1254fe8a3cb1acce2353d6433192e74abd91f8a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1744789797-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 dcd2d5de9e7bb5af30fb0664baaef594e6295a3a39b66a24b4eaeb062a4f1c25
MD5 d8588d204054c7c82a992d23fe46255b
BLAKE2b-256 425b50c7ff530884e898120af5e0bd4529ea2838cdf04e4deef21fdca2f803c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1744789797-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 b9de097a44ca4069dd3e77022fb98eeec80845e39883bdbfdb165fd2999c8248
MD5 c244d93554603561e74abbc08302e036
BLAKE2b-256 27596a0fc3f6e400b0b492a9b026f081c7c483150ff3de22c13c90af84e35a61

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1744789797-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 3a9f29cf4e21f33c626e458cc26ffae5501fe4b8f00d201fb78266550b0f2d71
MD5 1b250cf0f064d20055f2632a626e8c9a
BLAKE2b-256 03ef4655b77ef1b88f248fc49e1114203e98c322efda4886baac77ab233e6cfc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1744789797-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9935104eb39403f4f8abf72785d2fef0e918e70e54ee529fb76294f005c7b24d
MD5 ace6dbb6d4a28fb0cdb1c5682b932353
BLAKE2b-256 a1d46d676f63afcbc2f65212481144a95166ce64f98b3d07f6512b6edc33cedb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1744789797-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 45d2b7554a79e8b76700195d14a36dc619a6ccfb0ff067c1c86e4ecdc5ae1b99
MD5 e404ec1a98a9a0f56ae8589dd21e0ad2
BLAKE2b-256 d878f9d42cd9949dc4e00755e815cd39af0353a197984f67706a06abdbbd3f2d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1744789797-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 95e5f8f39f9e96f395519aee068e81939eed47b3bc2cebab774fba81f53fc879
MD5 8160d7a896f568158c6c4f6de2684102
BLAKE2b-256 ef6491f6653f4bd3159110644b4cc12d57e0ed8231c6d2f241bc5f87288079dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1744789797-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 8c32b52b5353d4aedee2b8a96607d909ed8d62b48a2ef9e5e6b373eed2b2d49c
MD5 a7f2ad372114c48c33d3e593880e3059
BLAKE2b-256 7c4c563e4e1d2a47c5ffda9b7037e007b809fadf145a137237519c8ba98e2e1b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1744789797-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 aa6f4ab167224f9870db81e3d07911cc1d6a2901a5b09b2999beecb6fb7ee8d9
MD5 b11d17acfb9736e883a2b04d7906d8fc
BLAKE2b-256 dd74dc2480c0d9e994b8635965615ea98acd65a516c9b06e5db846b90f4b6507

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1744789797-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ef33f295d8a0e2869c1f49b8fa2c99e8dd1e7f4f1660035306dc39cd7a33b311
MD5 025393b81910f09bda2bd6b898e49634
BLAKE2b-256 10162796c1ccb8ffd6a1e626a76a4eb5f872171b2cb8bba7630d8cf900674e50

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1744789797-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9b46214900ecb8a42b1e1cfc1c4b29eecaaff800ab4123b86881db919743a271
MD5 ef55ef97eaa57cb21340553597ce481f
BLAKE2b-256 61c77ed447d2bf2a834c7a52043b5fd1aa76120ba2d7bce6c7dd2ff7fbbbcdce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1744789797-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5123551a4fff21d6b767575d6ba3a9362d2e9979652fdcc5699f59de23fe0fb5
MD5 fc1ed4b2dc29b283d27de2428a65dc50
BLAKE2b-256 5ab696b97c520b482ea9bba870b43807a7b99ab198aa26a35d5b05bde5d0f35c

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