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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.9+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

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

Uploaded CPython 3.8macOS 10.9+ x86-64

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

Uploaded CPython 3.7mWindows x86-64

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

Uploaded CPython 3.7mWindows x86

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

Uploaded CPython 3.7mmacOS 10.9+ x86-64

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

Uploaded CPython 3.6mWindows x86-64

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

Uploaded CPython 3.6mWindows x86

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

File metadata

  • Download URL: stim-1.15.dev1742858851.tar.gz
  • Upload date:
  • Size: 841.0 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.dev1742858851.tar.gz
Algorithm Hash digest
SHA256 bbc31933888e454182f5ed5a7c258531126c63ef4bdef37593e2f5e2353600f8
MD5 c3b8750908b3b2376984ebd220357743
BLAKE2b-256 f814f3ae41f4769d4ed659f736a9e1ff8d6739298fb393ce2deab0608686afe9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742858851-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 0523d4f700660bace4b61d7c90644afa4906c590a88f73bbaee039a6634bb595
MD5 1bffa637dfad1464250002181f65f0a0
BLAKE2b-256 bfee728dc05ce174055868df1f43c6383c6275ca7e0bb46948985ee31f8bedcc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742858851-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 eba95bb0c7299de93ffd79a7b2e196ef14f3c9cc19842e7a9cf20dd7ecff00e3
MD5 5eace572713f23424abee53e90f19bc5
BLAKE2b-256 e4fb1da7cc930d6195f68c57d9270df28cce0f6747d44804dcffc082f60254b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742858851-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7c03f8f44dc9ee820137205eed7c72290a934b9f9e1aff6fbbf08dccc65aeb63
MD5 ed0316356473463561c287138ede6eff
BLAKE2b-256 01ef58a45d511210645aa0045d703f234f6503db45d497155d2fe3f606575b16

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742858851-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 facacbe07c762470c13c8b5fe69d9ba70a21b121ea010cc919e38111f5aca1ae
MD5 9be2fcac144354ccbe68345196edf3cd
BLAKE2b-256 5551b88088ec349e3290e24fa31c9bdd7a848a1bc54eaa5462bbbaac69e82160

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742858851-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 6b0e92488162b6c4205485c7dbaed2bcef3c21a8b013e6c2e4148d9b57470926
MD5 8074b16d164424ef0c5dd639c7ec8665
BLAKE2b-256 ebaaa89a46132887d00ff580866a179194241248861ab25b0ab3290a461d5a49

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742858851-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a1933554323e4b16b49ccd73b8ab26bbbf91038a0d03cee7e4129629483a5ec2
MD5 c7f305a88afdcd846cfe52cc5c87b7cc
BLAKE2b-256 32285f1385cac175c65593a47e7300be1baf35c0a6f3d16af720163c88c395c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742858851-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a46c17f061757e20faecb483afaed28eab4cd0ad1af739c071cf81c690addcaf
MD5 aabe42e305e99cf0527e1a0b0b44a2bc
BLAKE2b-256 59c1ec91afbe1da1e9ea85dbc980d8f6fc966080e4b23914b728bdaf3893ed5f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742858851-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 255fdf0346d8de921553b2dfdb2539d05636e1e737bfd6739dc9bd68e992cfec
MD5 f1fc60d892b2ecb7da390d01818af7d2
BLAKE2b-256 a53d0a5ad0b4ba0d9bb0f9ee72e3b1cc6180c6d1f50eb3422fecc0e526fea76d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742858851-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 71d7594f7274c1b97becd7edc2a29c310c0e3c49c9626f348ff510893470dad5
MD5 da6bdeda25d73a7a79d1122e49a03672
BLAKE2b-256 422f9a2fba8de309000654336e6d885d9776349f225cc895fa19220ff805f76a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742858851-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b5fb877433e665b84c798e23a27792a45055fd1ee54efbc2e6a1ee23e0f30c3b
MD5 bbe1ffec6be2295c14f781fd93889d42
BLAKE2b-256 42a9ddee9b743b0125b3a467504fc30c7fc3b7113edc74b3f08aa447a1412362

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742858851-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 256e9ede907814f315d381e6e8c95a5007889d37ec034f056caecdfe710227d1
MD5 c1328546f429744f8f904c38581dbbf6
BLAKE2b-256 d2e9785e69022074eb1e35e03df97338845f77faf668797300181a2a8f14a02f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742858851-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bb4da3382221bbea5b9651a48fcf56e486b44950a0fb0ae9d8343441930f3d7c
MD5 f03d679ec50b791b64009d86bb3587f7
BLAKE2b-256 e38955b98d52d6c275e12834ded64d2efcd45026f7d2cea4719887ffe6f2699a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742858851-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 c49c335f25a36ba4d01fee3ec0e7734e35040964751c0b5dcb11aecb447cd20a
MD5 ca43d3ba78cb57a9b23194cc3a670c6e
BLAKE2b-256 3c9654a2d4da65458eb6e64ad1c29ca96dffde892c47e9e328905180215f72d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742858851-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7a23d3894934ec8636884eabe14c4e85e01ef03d9078204ab4258182cccd0563
MD5 4a5b87101eb18e306e4201afac760b94
BLAKE2b-256 50bce23ba522886f23f081710306f3fb94b0ed18c7b38d1a70ef577f31f0cef1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742858851-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b3edd1a8423f6b52fcc4e0d796859df7a4c56b12baeac70eb2ac3497c86bb301
MD5 bef826d415927b755bcfe09b224eb162
BLAKE2b-256 fe2581b41e43f79b477347986e9a750d528c6d096f1d91bd2a75f20262d8afad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742858851-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b0f6ddbb5e6b3ecbe9c3c892d805f7b107a085e69721c796325cd4a16458e40a
MD5 bb9601648801db115f0c5a22bb23e496
BLAKE2b-256 890b07d870bfc05a464792e06bbe6ec12eed4b2a2760ddfa41d7ef7f09537b4d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742858851-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 4ed2297572545220c25b9712563234138af89751c733e89f098606be53fab866
MD5 fdf0a4b1e3744285d0fb393124f79f38
BLAKE2b-256 64f8cb90e9c292c248ea1e321cc781ccfec34771a8068dc42e0e585247f28b5e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742858851-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a5c9f6bac18922724cc1179c81043a1499f6e7ede7ca73bff58b662e1afeac2d
MD5 e52b4f624442d04d09c942ac3d742217
BLAKE2b-256 7a83c74e0eeadb1f6534139a146fc8a511e4dc6426e34d9349657b91e17f2a48

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742858851-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 56819ea95f2419e164f876ce60fd94a115e643eb30e9a636e0f1a4330a7dc077
MD5 4547b315c0f0e55bcdc1ececdc43b75a
BLAKE2b-256 2c230c875c5139ae208dd86da1ffdd75eabffef250bbdaaf78bcbb0d7a6c2cf9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742858851-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5ac39efaabb39795f3faadc50d7d5cec9bf34ea007038047f3f710403df182c7
MD5 c0f78befc39797364ccfcc58793ff634
BLAKE2b-256 07a2500ecb043669d3b1cebffbf9e7b1848595a27944573a61f058d19ab95424

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742858851-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 6a76256dc2f7d694d8e92cd3bb626caad8922768589fae89cb37841eb5609606
MD5 ffa59329a0dad958ccc8fdf08c62d93f
BLAKE2b-256 cfba7cd974ab496afa47ba90f1158bd245d6d7f0100c98f3519620dcb2c2ae4a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742858851-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 7d51aa561e012a4a4261a43df7f8944a234e7a61e075f0387a279379351204a2
MD5 8172281f14457acd5690bb6c1d34d807
BLAKE2b-256 26aeeefa9300cb01a40e4a5e16a7c3c6b230a46e57dc4741c8f508b7ab52141d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742858851-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1fd0e1d3cdde411ea9ef5bc67dc320315fcac80374ef03b37334c2df7f5b4445
MD5 e93c41d304e36a442c67c4b79a1caa8d
BLAKE2b-256 6e247f70cc212595c272636fb1e69797f723edf519c4b973c146146f2f2b426f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742858851-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 566a6f6f2161857d21158f84e7c4f5e9d9185527801c200dad3c235ffa3f0c4b
MD5 f81f334115aaa3a347e0fc161bc23f17
BLAKE2b-256 bd02ba1b9490bbc031ced9d2a9bea666d58ff7d86ed6f7251be01e81a8a89faa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742858851-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8e322e61d28791d3d73fe37e3de8bbfd0fc8b62eac639261bca05ce7e5bb1288
MD5 7d5b798c71a8924a1b1a0123fcc3746d
BLAKE2b-256 705c004e0b50ebfcd8e3c34811d9fd068ad0863d66db6bf4f1d408d91556036b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742858851-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 08d7863c4aa052726ccc7fb09161b538be5db9abcf3651db94b94c3c33c78b23
MD5 47c8078d50923e8df464a134f649f2fb
BLAKE2b-256 7dfac60f3f1fb9c90cb7f88c58616fc890595284e1f549ecc7bc4615c7b27dab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742858851-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 1280f030988dd1af9f9e86df27517cfdc7f4857c0c39dc22eefb926add51f6cf
MD5 32c8e6e117bdc433c7a70e9e0806c43c
BLAKE2b-256 564ff60f9ae533e9c9f9f01e8230a16e0d03ebc9cd3d7001543e133313549805

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742858851-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 251db0644be7c5906c940b354747473360bae0370c7fccb0dbc3a35ac976ec9c
MD5 c89a4177c7baa211dc955ff72ff8c67e
BLAKE2b-256 e688b6dba924fe4cf3033be77cc7d3d81b1ed4d530d84129a7e62f662539982b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742858851-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 849165a3055e6ad68a6f47f54e44943cc91ca73e7d2c2e8188424650a7d1de9d
MD5 2cfd116ad6c8504a123ff809060ac765
BLAKE2b-256 04faf7c8628c5f5ebc0b317f5c19bcc2ffc447f944db6881007c7a6904c138a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742858851-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a71794564a1d96cb939dd29307c391539498e01062f5f4ec7efece192852b41d
MD5 aeba6aede2bef8ff71c4704ebcbd5488
BLAKE2b-256 40913e86831ad717147fac2f9fd24b37e92f6fbe362ff812b37a6e624e6eb56b

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