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.dev1757527933.tar.gz (862.8 kB view details)

Uploaded Source

Built Distributions

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

stim-1.16.dev1757527933-cp313-cp313-win_amd64.whl (2.7 MB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

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

Uploaded CPython 3.8macOS 10.9+ x86-64

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

Uploaded CPython 3.7mWindows x86-64

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

Uploaded CPython 3.7mWindows x86

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

Uploaded CPython 3.7mmacOS 10.9+ x86-64

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

Uploaded CPython 3.6mWindows x86-64

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

Uploaded CPython 3.6mWindows x86

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

File metadata

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

File hashes

Hashes for stim-1.16.dev1757527933.tar.gz
Algorithm Hash digest
SHA256 d4065af0cf6c72864d6e8765a52ded85ced6b7a8cb4c012f997226494cd09919
MD5 10d6e6e183a6fb1fba76b46f74e1075a
BLAKE2b-256 13af807a20966722b629666f4c07801ec8055ed65a0a50b9d250c675c2f8cb40

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1757527933-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 f1ac8eec27429720bfd8d7c86297f96acfbf3e3c0d6db2e69a64df41b11d7724
MD5 a7786e5ec59d9f418d72580ad9e973c2
BLAKE2b-256 d31565d6ac6e95451c8d3526ae524f9b374bc1cabbedf3b94c1b729058689fc9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1757527933-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0ac084472ea9b634eda165c6ed53b7cf2a054fb29b3148461087c4eb9c0c38ef
MD5 82e7075a0c938288b16ffa3c0ab06d6c
BLAKE2b-256 7452c2debfdf08d2ba23adc1f94167d4930b3033687f34aa3217f5367e7fd5ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1757527933-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 57d6a42e8ba0466374e8783b390ca727c986e3e0f1fe94f15c1c4ef30267cf05
MD5 82ff9b525a073b539fe485dad90e112f
BLAKE2b-256 3cf81b63f69a27214702fd22a6a6af89a0a7f957614cd62fdfdf2a7599c6ae59

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1757527933-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 04527171b5dca18454ef114568a808f88fd421f3d01c8272e986260b84e60f67
MD5 150e66fa2abc0923acff6b8159ef3c2f
BLAKE2b-256 bb0b36aed18b88f71ab413a408b9fd892c0613dd9dcd71129d59fc79e02b57a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1757527933-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 1dc6fa4398dbea0115d65f894e28a9ce7be4b5ec690e5892da72ebe3d401c92b
MD5 40eda22cc5e6fb0f3c8bfbb2598eb7be
BLAKE2b-256 ce2774be0b8634518cdc5ba2384e40a06a83bc03b91d98559ba46fff65ded037

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1757527933-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 63eadcaf773fd1199c2c603b2df263e9b62539b0a68085836ac399f36cf40cb4
MD5 73d50681382dbab8416d3f82b63a03a4
BLAKE2b-256 335f6bec44bc82c4fc7b0fb64ea6e2eabd8e02df381ca0c58c2520423c6efa7d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1757527933-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d58ce0d69942bcce74340a5fb1e00cd7d41f514b27e566b7ebd81a4f59c11d50
MD5 b1398c5a2640711f584a473fbc0737c0
BLAKE2b-256 0a50a6432163a6bbf73e655cf46d8fe2264995a9be660a8c72b95dda0860c563

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1757527933-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 e7dcdb78efc79abd182c93af79326deea1926a7aef8abe0446f20774bb45e801
MD5 249c3a591fb62810e0ce4782f3d02bfc
BLAKE2b-256 5ef227544cb800cab5b0eb9f86e4dd3ebc60f44b6ad755695ad1bdf1bd83a2c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1757527933-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 01a2d106a179f54ddf019ac689d97f8f620faac6f7c8fe0f105606cbb6b6c2c0
MD5 cb0cc4146cf7f691642b82dbe32344d3
BLAKE2b-256 baa0e4f00783d1c127d4a5757da86cbd3be7b42fa53baa175a8642ba03449d40

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1757527933-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3d3d43d1e8ad49353cd0a4ff76c38622ede903b5663c4d80295ccd5b2d77f741
MD5 6aabd1d8571fda96d6929d6282d292f8
BLAKE2b-256 642d84c264befd40a35d659c06625002b6644459226e04e6a0a6b4c32859a567

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1757527933-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f4cbfd32719d3c4f246d5eb4ebf84b0100b329c0511987b196eecc3d8ed10ee2
MD5 5d66dfc7cba4e1ca020c878840b624e5
BLAKE2b-256 ff2d20d53c09590d8f87dc47ef40462bbf502a7781ea352bfa0483ea1173f5f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1757527933-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4225d0983ecf0fc9b74fc6ab8d1ddc775ec8455bc60d46792d7cd801247c0211
MD5 b7e4870c413a2857194d153c1941652e
BLAKE2b-256 235a5a727ecc965673689b6ba0fc908332238e2909e82d41611ecd0b9a5d2705

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1757527933-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e69b501ab0765800241a0de3ab8644b774684da31d2e96e7996d023c4e392611
MD5 ae6a9f629b2992f07765d516430d6344
BLAKE2b-256 ef786189c5c6133309f2670bdbc05d9b8e909b16f29cb918ea8b8a8a36673ed6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1757527933-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e6ccf94bfde1a891923fbcb354f0b4b4e6582a0204ed4a9e3b238ad3c9ed8a9c
MD5 e1b61a9bc2fb05c2f60a05e3a9ddab4e
BLAKE2b-256 5cf331c70ce899e41ec0edd1197e0b0292c4553089e8e0859436f9e5e1923178

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1757527933-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c93ca0595cfb0baefc4fa8b4c5d3afe83be0358c802d19cd6eb71af6b9595b34
MD5 01eacf5b92d91b8433c147765c5628c4
BLAKE2b-256 474f72d1d3f23424597442ef6cdefdd6a0390caface6785b6940ef86cb7dfde9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1757527933-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 be369a4037f3c4409c049974012a781b621643e0b208ef2cd053f957c630510b
MD5 ca848316766e2c7e1d7405d562056269
BLAKE2b-256 9f8adbb688abb04d08bea87645fed0d732153ffff37bf397f67ae9840160eb13

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1757527933-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 e45853bfeef8b0610a657dda5cde3f0d28e08dd2e553edb4ed7a23f366a69040
MD5 8a1b04f5810ced0299f1335f0279d74b
BLAKE2b-256 cc9158fe6eb6207eb486235bc5790053d9abe2ef1a3f8f0bbc3d17d2604f96af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1757527933-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 53824bd227c5cb57f148ac492e94d1f4f95b060951f4e8402a655c9dc576bbf9
MD5 43f685c090610e945bc83b98501cfef9
BLAKE2b-256 7375355fb8cd2738d0a7ebec7997e4aaf7a28ae20467386834d4af6e8d5db147

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1757527933-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 12c43f4f8bf8fab2a8550bdf77e525ecbf95beb42bc22f95c9054b89d0d763de
MD5 153ab8ade7a8f92512305093affe060f
BLAKE2b-256 ae3291f0cd53a3744de9024ba9498ebb77b4375dc153dc2a40ade95fc1be64c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1757527933-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 25137673bbad5fa90f6462581fb8c348223dff658023879a1fe3ec93819c844d
MD5 7be320e5c3fb2c6e37def103a4579a20
BLAKE2b-256 4096e96dcfd6144b8bcff0e9a1b96e98ecd652cb4d56c1065b9a8def4e2caaed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1757527933-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 34f4ed4226b302235b24ebe806dcbd8892c6dd481fa420a548ef4544a8373d38
MD5 e0b938921a1a3d651e0f3fa9af0d9fe3
BLAKE2b-256 bcbb6eb38c0e98f60606cccccefe5d64d3af5ed92f432d4a7cc0ef6e0bbadba6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1757527933-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fe110cc43d68873149c9e31301ec6a6dc63d7e2ea7e2856d7da9c67dcc35adf5
MD5 90bdd05913dce1118fef30577059cb8b
BLAKE2b-256 983b498aa42fd4036b35a5a447f3265e7e88519679e77421199bf7935504a3b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1757527933-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2ce33622f8099d742ea22f2a9cf808065f15f4c5d66efac7ac1222c06bfea524
MD5 af2d1d1ddb96a66ac68e57f871abd5ad
BLAKE2b-256 95538b45d3147d3340a2743634d4a4d50b562c4a64d8e9c07402afb3ad624577

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1757527933-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1b425340af4f43b4aa545a385f7d96eab9a665c44a9c1cd3755c7691cb297664
MD5 61ffa3fce599bf2b55da3523518d8788
BLAKE2b-256 228325e03bbbc599fde2e70cf0d401c6be2d45dff0b64ed6d6a0e0f1c6373b29

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1757527933-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 e8ac0c93ddcd74aadb204a516a0ccd45e37b005aa13c46812e6714aa272e619a
MD5 e2194e7d95f2ab27f426f8d2f1df5b1c
BLAKE2b-256 f265d0b6ffae9a8c32049287ba207dd21c85ebe937f0840e774fe7e5b93ae217

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1757527933-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 b9f8570f31ebc66ead3eb93844a268489582ac895c0cb44ece2d2f8309937ca6
MD5 d33f48b87792bef4a42d9a2b3083b952
BLAKE2b-256 d5c952fe11990620eb0e0e1f5ff8ea1f32dac4f611bca802754f1af2cca2a402

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1757527933-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 eddaa3ec02bf13b8d31e2b1b02581489449512314ff42dbf0e4eccafe91dd930
MD5 ceab89538d0295a98a6fd144e9229b4e
BLAKE2b-256 2d3cd7a8c36eaa3d1effcb2713352e9b4a49be3674dfcc707786e5ee5107bb4b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1757527933-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 38c414f8f4dc7ea516b1f9878fe57a155b3e54488c8b1019577c05df77cdec2b
MD5 e1f2392fefc536582f97dd6e233875eb
BLAKE2b-256 6f0e396675cc5e5a0a2dc644080524ae6aa4cbd189ee751ed121c6a42e047637

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1757527933-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7c10382d8aa59a2b3285a06247757916e6753c58a445ace373e60b0c6565b03a
MD5 d70303a2fd818a8928cb394b6146cb1a
BLAKE2b-256 53ed207de216b93f88517b08f81a4e28dbf711ac74cff4317a410ae35129d914

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1757527933-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 edae476ee0fc8effc10d9285365b24cc26a232d001c7461ad5c77eab3194e338
MD5 4576cc1010c4f830f63cb75e15d6c2ee
BLAKE2b-256 0380b6c8d9e4b797dcc6af39363961f5c78f4172433e6a8d66a6be26977f7008

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1757527933-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 7b05320174ea5440bb5f41b6290a4e35008afb18c52b1c3bc6c85b516325552b
MD5 6efc70233fb9dcb29a6720909abde0a6
BLAKE2b-256 d3bfd1c76fb87e0ee1bd4800aa0d8e0fbd1c997a6b93acee746f5be694ea2e12

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1757527933-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5a07621ba0c75c42e08b0218682fda3804ce42e05ceeec306c14b324c3764598
MD5 e5a90c284c7eded8d212e26850e2f5ce
BLAKE2b-256 026c307fa5b42f18db56c1c1b8bd43bd5dc8c4f273ad4ac7f2092745ef30d74d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1757527933-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d5eb480bac04ccb8dbbba14ef22335b7d9ee94a8d5858aaede633275864fdad7
MD5 52e60f7be005a275da59bc101b036a7a
BLAKE2b-256 6705c09f475b7d3e82e302a41b53f2fd9703f844fea511f5b9479c52317be857

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1757527933-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b8e0589eeafbe71a3ffaa6ee922dc9c5b83be4773ebd7d42a98cd53f214aa1ba
MD5 8480e9b56db54af8c5dd3a397a40a25d
BLAKE2b-256 3d2c986d89b9d0583bdcf51239bad8082c262dfa0e318c6db27a1d2a2ad28734

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