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.dev1745828296.tar.gz (853.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.dev1745828296-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

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

Uploaded CPython 3.12Windows x86-64

stim-1.15.dev1745828296-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

stim-1.15.dev1745828296-cp311-cp311-macosx_10_9_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

stim-1.15.dev1745828296-cp310-cp310-macosx_10_9_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

stim-1.15.dev1745828296-cp39-cp39-macosx_10_9_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

stim-1.15.dev1745828296-cp38-cp38-macosx_10_9_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

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

Uploaded CPython 3.7mWindows x86-64

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

Uploaded CPython 3.7mWindows x86

stim-1.15.dev1745828296-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.dev1745828296-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.dev1745828296-cp37-cp37m-macosx_10_9_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

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

Uploaded CPython 3.6mWindows x86-64

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

Uploaded CPython 3.6mWindows x86

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

File metadata

  • Download URL: stim-1.15.dev1745828296.tar.gz
  • Upload date:
  • Size: 853.3 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.dev1745828296.tar.gz
Algorithm Hash digest
SHA256 c0a14a108b157b7216331eaf662a31ef035362e98ddc604ca2e5cb71d8002cd2
MD5 0ff03900920fe19fe32b7cd9b4ab4cef
BLAKE2b-256 b01592bd7e87cbd9c00513e60749a279721117e036f9c6246b5f75aa8650cbed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745828296-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 43edda9fa2fe28dc908661a7b00b09ce5ca2c9552f841903c0635727a38b9a62
MD5 714be0e8382f0a5ff5102a66aae4f6dd
BLAKE2b-256 5bb05dbeb52a54a4a303bae4872c7219f4b778c1f081408c347b926af4cc2100

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745828296-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b5f2e69996f4633f7376076a81e910c9584eae6c35d4f049e218197b10e0d354
MD5 670bc003359f4c4c9693f259d171a74f
BLAKE2b-256 047b146dd548b19ac01fdde1029205c6505267d34bd84a58fffdb8712f50782d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745828296-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 a2cec4f61182ac1c28029693e799fb7a612a2557cd3adb290643e896ce8fd3f1
MD5 6cc4f88245ecf78a76484804c73dcb52
BLAKE2b-256 050213d160c958f7c66b1f578fff44c37902f1362302a721436acc6e52b0a594

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745828296-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 f859f8e8a88299d2b4f2914e924301957b660d9674afd2255d4cf43ff10dc295
MD5 7896b6839be85751a0193e2e2843edf6
BLAKE2b-256 5d6c90edae2faffa7351bc2a6fcdc84b6219d72d2852c55a680237c4b3f3e78b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745828296-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e31493f26381a96e51171172e28706d5dc8a316f7098cb95989e73d324fab874
MD5 8c341add9571555cbc24d0ad5cd15d8a
BLAKE2b-256 798a024dcb8413ee21c33a6d0f243e43d2f678fe4559a80b9a23c52e222be688

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745828296-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 408bc4f2f555c52b6ce1b3cb238ea108a9651574232c8f0da4ea7b0fb1786234
MD5 93c47192ef02d759f8e3d6d426dd8ab2
BLAKE2b-256 ee2052f2912ee33834ab6358c46c911c4c1f96f8b2112525594493031d8429a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745828296-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 ba0ff04f8873e0c2feef5966157bc82ae93e2d2cd7e98893e3f32bfee66bcefe
MD5 65ccc6ac119235891a86cb3692622cfa
BLAKE2b-256 63ebf430c7284f593fd0583f8b09287257a376eb597645bf2d6b90e18c8df895

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745828296-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 fa780200649df28b065becd9df3a362b50c6c0fb1b354d919f05e0df0d511fa6
MD5 ee3249f8c07d390facfad79310d0d830
BLAKE2b-256 102dd35a6b97dbde8e9288aebd3c1cd47093bbb42052156203505af6e101aa0c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745828296-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 522767ea98b27e77bfb14513dceb0a1c418cb71de307ca2c45441c5b136a2a68
MD5 950f55c0b9208de87aa8e408c3f52dfd
BLAKE2b-256 188dbaf940f23297fba0c026b09b7e51bf2757d5bb96731df6de1b0b956b7faa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745828296-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 25a81e211d89ab40bef47c0163e72423981ecab042ed79a4c043613b48db0248
MD5 214364a6ee7d30a8a4f5f3aa906300df
BLAKE2b-256 9dddcac76367df39f24ce755aa46d81422c8c60d6d759eb6b9f99d06fb012651

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745828296-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4902f073bceffa83bcded6770b2f4ba2a4de080374123630f5f24821af494f30
MD5 57d6532c11a9c5d11dd1632f1a9923f8
BLAKE2b-256 1e5d6e43ba0962659e7eeadc15c5d96f1f411b0bfa36a157b1cbee520e9ca5ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745828296-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 687944f71556e9752555e1e802b940dd4fedcc8d3f2648e168483275de396604
MD5 f07702f631ae609bfca691e377da175d
BLAKE2b-256 73f91dd25a4aaefab3b8d480086654fb593081e6a080935489aaa29f7cf89300

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745828296-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b79750102883637b3b146b99b08cac94363423681728edae1365c9487277771d
MD5 f2653d193d72ad14a37ab2b6ed030e91
BLAKE2b-256 0ca408dcc344fee4237095c5b89be38eb5b875e9dfdb25e56078cb317c4321e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745828296-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f65d0204e2008462ea09feb623ec8993fbd408aa6a98a9253dd8997b7552dfa7
MD5 43710b51df626abde5987c374ae1f1b6
BLAKE2b-256 b9b1a444da7333238d900f9330c00c75f7d1d4f6cdb6e134e076754c5a344696

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745828296-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 931740c8a9e5023a87a024a19af54ade01f396cad9b7a2e49caaf86f99b48da9
MD5 8958355361c3a3f1f3f381d927f51d38
BLAKE2b-256 23b0bb494e0ed01eed623865933612cec9116b8961f7e3dae55303a4c6559574

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745828296-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 646bc11c9b81c9d66bf62799558b4f76a21341788e57ac65eb6f9421d1f49916
MD5 14438c5cb536b8a2c05978abf8e82ce7
BLAKE2b-256 c7439bdd4b836e324da0e2db319f95826fc0b44e6f1214934e4dcee416ef9b6b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745828296-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b16da105b74b23c13863a39d8ba250bf17e6ed81079904ce7f2e7ef0239cb862
MD5 3f5695706b01c83568242004ca700466
BLAKE2b-256 94181d6cb6a49f8045091b01fb9381f1529685cdc598ad4158c412c527467745

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745828296-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5eea4b467086a8c8d17c4068a53b3aba76aa23bf30471c1580f9c4eedaa3a2c5
MD5 d5b376fef42a697cf80d7c61178f5df7
BLAKE2b-256 2a694b59afefa1f63e77bef28b26234e86aa2afa1840c89933b63f73eed48a45

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745828296-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 65e4bd7390a2d98a7dc9e656fb85d4e439a206038c95d301931b0af997577c29
MD5 c95e780e172844f715bee8dab4543f49
BLAKE2b-256 3a4a18c0698fb7f9fc011f0f4071a1d9affc1c5890395cf8d682cb7f1f1d1376

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745828296-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 37d207d9720814992553894810f1ee72845762498e120f5f0a77fc63a033bee3
MD5 9e13d35373f9358c878f77bb52d427ab
BLAKE2b-256 e25d7dd6628cd479313a7e3b5e280f42d8bb8c23b08b3e89b4d682546eac137d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745828296-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 73a107781026598e8165525d7698b063c0c47d7c075df01667c02d906f5794d9
MD5 a7e885204183cdbb8d561551185ae244
BLAKE2b-256 47eb1cbd3cbbace59b79528e3d6cb92e1f59041bbbf2f9ab0d72f4f63ee7c378

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745828296-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e1e92ca290b3cc5573e522cc08af9ac3f400ad8eb0791c0da5b7485d0e3e1022
MD5 9a0ec7b74fc5bc809c62c8ad936139be
BLAKE2b-256 aac9395a5e5281c0daee06c8fd812422969ddd9e59da140a540175c000cc0abf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745828296-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 96896c38e5e4be2ffd111e20765e3d9ba9eecbb2a78232d3bd9d360f728b7464
MD5 348b9a8276ac6599a52661510eb72b4b
BLAKE2b-256 85ebfe311ed22784eb42edd0e3768c19b825450d377eee610e652dc6eb59dd3e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745828296-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 9eac76ab4179d9781f0d4a0220a7a2195e2f10636cc1a6804d0c172f7138ecf3
MD5 24244700b08591f9594d9edc93a3b0d2
BLAKE2b-256 b1c6832150150d83bf1d537055156d9de05623ac06563894cd5e27afa64abd9d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745828296-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 2f674af20209026dcdf9e5b3e9a2639d028d1347c1d279e01a3dd7c4d166e0f7
MD5 42f63b5e143c298b7c9529ab30feacb5
BLAKE2b-256 653e8db1ea8502e6d268c09dee1a07054f5730a75a46b14b97e8154e990710e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745828296-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2d99d4a1baf9770a9a3a45e9472c6d1d373402c1152d0ac7741327d5a7bca097
MD5 bc3226ed53463586334fdaaff6a71570
BLAKE2b-256 ccc61c53625181d16f390da0e30a1034bf2a564e1add734f100c047e0779eac2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745828296-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 19079e1cdaa2ee8de3f4d5d24a2b5adc527470e981a1c7190988afae156ccd44
MD5 0ef65a3388dd2b3c9b9d47c0fd12e48c
BLAKE2b-256 e1c71c50d09e900c4fee045565c9b71576c69ab4f479552e00c7a8ea01ac96c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745828296-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d017d50bf64e3626f2141e6d1c821e73d1d0ade74c52dc3dbb9e33f67309f3ed
MD5 68c47e2b6f464c5e1cb7fcd58a521c2f
BLAKE2b-256 0b5e598d457dde4a689c05d66d45debf6cea7841fea9782d7fcdb8cbafd5a48d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745828296-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 d99c5161ac801492b3c8bff112442abba55e6461f5159b1bf49149cfc8ae171f
MD5 4ac12b8770cbfdefee0b42a8805552d5
BLAKE2b-256 387a99b043d251580dd816685520b39b1bf4483916748f86c3860b8b9722d7d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745828296-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 6e2e3ff124f81bc1cab4597518eff58ef9daa30b0e187ff1550418888ba527c8
MD5 afb88e3a1c2b0fb2ab8e7fb316c3dc43
BLAKE2b-256 ff19c469f3fa386f230a7770307439373889d1cbed5ab92e19e6b1f05ab36bba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745828296-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ca99d821792526d4cb6258233d702dbb4375e3388a53f54af8b1c444d78c10f1
MD5 7c0654c7210b424dc82a41db8f120328
BLAKE2b-256 0ce11e06b308809aecc5ace9bd6f607abd0ad9d5a63111e21750d901b92cc3aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745828296-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 815ee7a207bb670e5c8330532cb3437aa0b1837fcefe87cf971c10182b382aa8
MD5 5333c351dfab6f64d1490cb987701c8e
BLAKE2b-256 e7ba0972bd76728c054b1d9dc3c7e633de832c0922232c553f30e0ac50a45b37

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745828296-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cb2efd7181e3db8be9b877eaa25eeb15d8362b1824628037da15ff8309736f7b
MD5 514440192c52bf789654e1465eda9369
BLAKE2b-256 633aead372508e97e5066a5f89e12ea44cdf25d429eef98c3f979c56bc5c94a4

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