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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

stim-1.15.dev1742863809-cp312-cp312-macosx_10_9_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.12macOS 10.9+ x86-64

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

Uploaded CPython 3.11Windows x86-64

stim-1.15.dev1742863809-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows x86-64

stim-1.15.dev1742863809-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows x86-64

stim-1.15.dev1742863809-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

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

Uploaded CPython 3.8Windows x86-64

stim-1.15.dev1742863809-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

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

Uploaded CPython 3.8macOS 10.9+ x86-64

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

Uploaded CPython 3.7mWindows x86-64

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

Uploaded CPython 3.7mWindows x86

stim-1.15.dev1742863809-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.7mmacOS 10.9+ x86-64

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

Uploaded CPython 3.6mWindows x86-64

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

Uploaded CPython 3.6mWindows x86

stim-1.15.dev1742863809-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ x86-64

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

File metadata

  • Download URL: stim-1.15.dev1742863809.tar.gz
  • Upload date:
  • Size: 841.1 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.dev1742863809.tar.gz
Algorithm Hash digest
SHA256 76e1dd410c5010e7ebe956a9afe1471487face3ee56f261f601927e6c24e7664
MD5 1bfdd22aa2418153535556eba3dfbe74
BLAKE2b-256 7fbe1cc33a58fbf900e1b77d00260a396c370eb8e54110296072c8a23ee5981b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742863809-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 f3b8b38ea44bba751747206e87959020924f98e63fea3adc07cb6312b3e04063
MD5 15293683ff1820c495e4822bebe74ddc
BLAKE2b-256 88572f7ea3595353f99c4951a7c76a2062476096ce5c0fed646539d80c5db9a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742863809-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c4069cb671f7105e4ff324317d2f2da3513d88e509fef7c7dc5e8f250287df99
MD5 05f1b9a74837bd952c6c784c365eb8af
BLAKE2b-256 bd5fa3ffeddc8d0d31fb8ba73fae6edae1de6b456f73a5b707b2068760e9e255

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742863809-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 06cace5e5aae8d1f24e7d45c3dca867cd9c5ab5f8eb57940f9e1407854aed1f5
MD5 64f3f0ad15da4fe5cd11cbe06e9efa97
BLAKE2b-256 84737270b4771506a44bc83caae48fe8cf3b3150fcd253b9272915e327ed8cb2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742863809-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d969e097a8a18fd160c78aa1be54a84efacb3d640fab34a39d721ff90ad43849
MD5 a76f80516bd2329e00c74b10feebbc77
BLAKE2b-256 5214b9b4d655b5ed33f8524b89a50a0c29b6a5099a177eb4becb282fbed7b8f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742863809-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 89d0ee4738b4e237e1ee67152d7ebc06beaaf682165452e0ddbae18ef6e1b886
MD5 d4aadc6bcfae354bf2d3c412cde2351c
BLAKE2b-256 4dd0945457df3d8425efee27ac2512174cdeb6ab60ade29d13e3a477dc91a56d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742863809-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d34bf515665ddc8e5fbb3f55aabe1564f145c0bc37357085281ad0fdb8fe83e7
MD5 53b0baca81640bd0d4557b63b2551c4e
BLAKE2b-256 f97bac3c495de1f495caf4ff7cf35ecc40757513c4b7920bc6cffc06b8d986e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742863809-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4b9b741500d952eed47e3e6da66eb682feec2d5cf5278a98a7bc2a83be2ca503
MD5 3c50bed78aa96a697584b7bb3e3ac934
BLAKE2b-256 86d1642c54b5aef52ec56c063d0a379e20b0c74f3c90a5d5eceffa2350f57788

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742863809-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 14eb2a3daf562a7e69d161243e9df0b6669a3c2e8d36737d0e45c6a7488266f7
MD5 244e1e6877dd22f3efd0e1e96a2fe19e
BLAKE2b-256 f239c3676f8a85adee60f66e701e3603af6d21bdb1e668df4c41f1bcb8c6b9fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742863809-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e2866d017633d9c15017d6fded49d978400da30eb58a0ff016a60e204e0b67c1
MD5 64710837ebad1414361ad568a29dafa4
BLAKE2b-256 3a7b42469bde15870c11db28c4286d459622ed4c15f2b14e28b3f3558f96e043

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742863809-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3c29e08fbee09b9ee3c8f623738bebab2c38558b80bc7f9f32e8d59dcca04297
MD5 5202459aea92beb8097f85c44047d816
BLAKE2b-256 6619a1b021996ba3861b5d53a82c0c0da7fa1852564e29d7180b28cfc5625b50

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742863809-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 32e66824efdcf41608d04ca0ab7d3da4f44338f8f9b94e4012323f85cc384d19
MD5 2bab2dad5c99612ee8e337b19018d00c
BLAKE2b-256 fcc37681d7cd5b85708c3ec03e1f72b50a68d817943eecc569e94012db871d35

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742863809-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0b5bc82c0d863117fe5afb698b84474194e0f47c6199435064c7045df99347fe
MD5 03087aa99da46b4b652b737b5f66eaa5
BLAKE2b-256 be227a75ab28c9b476b36bfc65ea33724e5adb5d2d09e5c242bb1dbe3cd1f348

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742863809-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 c5e7d5834c1ca588af4f82fc00628143ec38dd4afb9d82098ccafbd37642722d
MD5 b524255dc52315ee0d29c890d7b0ba19
BLAKE2b-256 5f2f5fe0c7f6bb9046571a7b009bfb0bf716c9363420c4942aa519b4fe33c322

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742863809-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3693c6e5fc6c89c2374dfb82b2711ff8735782fe1f8ee73fdf67608a9264a889
MD5 4e1e5971bc50721718f82d83bd4a262e
BLAKE2b-256 e6a8e030100d1051b1163daa64cab9a521930b96499864cf12af458b47d8595f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742863809-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cfc6ab6286e6931b7c6f06fbd1f2981079b591b6187a4a645f664d2bfa3481dc
MD5 67ff18543e9d659d6568366bf6d47d2c
BLAKE2b-256 90adaa590abff7f52f41cac7a19f6e18ca163f0f37cdfd11fb11514c53893c59

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742863809-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5c88e8d68241d58286c79c3ed2da4d9e9572b483f07a4a2b26dd21bc9d3cd3c1
MD5 86b2321b17c51881ce1f82f5bd0f7c9f
BLAKE2b-256 eb67b1654dd421b1ebf657f8fee812631c4735cc15df6fa5a62f7454f5a55966

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742863809-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 467eb4d736e2e400be1bef09a29347467534fec082c05cd01a6241d31b70d380
MD5 2b70258d96f7a55c2506466d5de5e5e1
BLAKE2b-256 539bba6616c711509d8c1169a9047af2269a9ca37965015aec61cdd65816f7a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742863809-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a61f577545d3e3b1e4613e28894415af6ecb864b9af613d7f1ac911dcaaf9433
MD5 966b8bbe3645d35a2f72c8bc9ca17ecb
BLAKE2b-256 5e430daa0a81d71e8a45cd55bb0a0e9c94ccd689583acb7914d1690835080744

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742863809-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 789a8be847eb9bfce5ddc16541272d15f13cb28523fe52e370236c62fee276d7
MD5 fd0528c30b082b4e85384d5cf04d919c
BLAKE2b-256 5be54ea4451e8fc596ccf8d3fbeac498a923adb6a02a7c6c7c6d5a5b0c2eb497

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742863809-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5f99dd73a3f223a08a8c2bb61dd81ea8975dbc85a8cb5429d3b19a749d69c8cc
MD5 7b5d7c7599ce2d4e09b911be0f22a1de
BLAKE2b-256 600096bcf2967dfd0b7dd03c116b1a7436dcc69dda1facdc115c05a5bab750a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742863809-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 83fbb9b578123cbd707d78a77f4d5d499c2d5fb3b4b5cacc3783b4aec9bcf18f
MD5 573e26356d97b5a0049934ce401a2d46
BLAKE2b-256 e997cb3515c770ef27934f7926c6782f5f05b41145a91395919275511cede407

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742863809-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 c192b25736b91ab442dfb97570187607effda5d28798cac914050198d33afe0b
MD5 a0c8755a44dea95b032c2333ae7486ec
BLAKE2b-256 d7c3b0146ae83c93c6ba70254300cf5709f9605697977eac0ba6232d07272397

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742863809-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 45af5a0673175fb09e9986544bd9d9034ea8bca435c8dabf3c48e4e63bc98d15
MD5 458c9b49ff9ad4507b098701f7e1d4ce
BLAKE2b-256 f01b1ae6d63c38d850e252c26dfe9ae1e8a2b7afda5ab8afa74d51f2017a1c2c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742863809-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 70833d175a27ead8d7a19def6ca8ae23c860a34ce2a4cb49385148c7319ba4b3
MD5 23dc4f60eb7fe4b5c8c65afc13a61315
BLAKE2b-256 a8d4724c435a1fb597605d85d8f0d5998b4c8cfb5743b6ecd46e44305a3d7c7e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742863809-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 06323b9c82b19ff0829008c64513b7f5f316f581ab0095d0310b8edd807ebf95
MD5 32b5e6c8c4a792c5edc3de30e79f065e
BLAKE2b-256 d9f614fda7a83deaa03c27b3e11698c85f57abd03603810b8e8989b30389020c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742863809-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 0c978898e585ad411d9a8b8b316e47bc4fa1d875c3ce8fc0801d0ed35b0c5dff
MD5 6b350ae693a0ff6c7397d7c4703a009d
BLAKE2b-256 8d8b397bc9f632fe6115aad085a0e61a2ab50db45f7ef51075c346e562112f3d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742863809-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 46f1ec4bd7dff6fd0c0092c7d9e68114fa1a7b02b3ed7effcd4ecb862c624775
MD5 7cf0e89ace437bb64f6a147ce6873a72
BLAKE2b-256 27b3fbe21b8ce9acec5bbeddd3c0e6de5c15775fde30e30ab43f659f6d0ac45c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742863809-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fb971963aa9aa7b274dfae0fefb8446349ee1124b3e89270531a9a76b10f41e5
MD5 c9d7aa52dedb90669d21a1043ce9ba8d
BLAKE2b-256 198aef0c6e2f672df343fedc733af32b6719e20a2f0753cbea47379009ae9dc0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742863809-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0ed2fa07f7dc83d2a230314e3e23f3b77a8d20924f26b1460b8e72bdc6015dd2
MD5 9e3d86576322d4cfda68db54ddd0626b
BLAKE2b-256 9f1f594f17d4a95266eb80b98a9fb00eaf9481a30d114f35e261f0cbf1b52815

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742863809-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 33bacf9dfe090a8ee765c9bcb86cc47316b587a31930f5e205b3691bb21dc313
MD5 e812986ca42be1f35f46a5d6051f989c
BLAKE2b-256 726509e634bf00555d5bb4a573f01a5065fcfe7521cdd234c5d0c9f6fbf4e0ef

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