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.dev1737498006.tar.gz (817.6 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.dev1737498006-cp312-cp312-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.12Windows x86-64

stim-1.15.dev1737498006-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

stim-1.15.dev1737498006-cp312-cp312-macosx_10_9_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.12macOS 10.9+ x86-64

stim-1.15.dev1737498006-cp311-cp311-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.11Windows x86-64

stim-1.15.dev1737498006-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

stim-1.15.dev1737498006-cp310-cp310-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.10Windows x86-64

stim-1.15.dev1737498006-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

stim-1.15.dev1737498006-cp39-cp39-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.9Windows x86-64

stim-1.15.dev1737498006-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

stim-1.15.dev1737498006-cp38-cp38-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.8Windows x86-64

stim-1.15.dev1737498006-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.8 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

stim-1.15.dev1737498006-cp38-cp38-macosx_11_0_arm64.whl (3.4 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

stim-1.15.dev1737498006-cp38-cp38-macosx_10_9_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

stim-1.15.dev1737498006-cp37-cp37m-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.7mWindows x86-64

stim-1.15.dev1737498006-cp37-cp37m-win32.whl (2.2 MB view details)

Uploaded CPython 3.7mWindows x86

stim-1.15.dev1737498006-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.8 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

stim-1.15.dev1737498006-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (5.0 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ i686

stim-1.15.dev1737498006-cp37-cp37m-macosx_10_9_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

stim-1.15.dev1737498006-cp36-cp36m-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.6mWindows x86-64

stim-1.15.dev1737498006-cp36-cp36m-win32.whl (2.2 MB view details)

Uploaded CPython 3.6mWindows x86

stim-1.15.dev1737498006-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.8 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ x86-64

stim-1.15.dev1737498006-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl (5.0 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ i686

stim-1.15.dev1737498006-cp36-cp36m-macosx_10_9_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: stim-1.15.dev1737498006.tar.gz
  • Upload date:
  • Size: 817.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for stim-1.15.dev1737498006.tar.gz
Algorithm Hash digest
SHA256 854c2107c542444161b3863be3655d5286e6ffc0e4f4cc9a5af063aca754e96b
MD5 bf2f87db04027a5a754aa07c45aa9ce9
BLAKE2b-256 e480fe806b82103e76e07995d3adc8d6dd8b4a4883155c0e322da2aa0691d4d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1737498006-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b59e856204c9d81a646fe6cb31e265045bc49d42ae787cdc9802e6194d4ed037
MD5 02aad2cb76123a3839732bdf979e9108
BLAKE2b-256 03f49793125fedfbb6c5bce247e376d09d500e0c5998a85f016d74cde9231ca5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1737498006-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e073f4f5c0e07b75ca297d3a89634e83fc4ef2ff642ccbf3a71e2cbac2727d0a
MD5 0b42d37cbab813e30e45ddc82bb4e657
BLAKE2b-256 2a6728f34fde942decc1471823d4546ff3dcb7404137484df342ceb2c98c2674

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1737498006-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7f496b56174aa02e20b0fee73cc9d1d54de0725ba092a0174bec0d5bc5e7f3f8
MD5 30bad1d1b14c4561ffef943a91b5731e
BLAKE2b-256 140f05be53663b4ede1052cbf0fc3bb328eba00c709a29b1407ccffe786037e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1737498006-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1b7ff46efbc8ab20ce30f1f5a9ec113f6bd5ca63f7538e87ff6c29ce149fe7fb
MD5 c5428eb03e06aa2fb0dd236af64f8811
BLAKE2b-256 4c010cd3471a45726f0c50c488e7defc77f0415853cfff92707b725e9e18f79d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1737498006-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 54bd4bed51e497249fb49d468400e147a2326fd6c04ed6e4f8063affddebb843
MD5 e1b59d67b911e6cd8d22c1c25f77161d
BLAKE2b-256 07c42d9951ff903029015113beb5d722b987a08220b8d98494b37a43031a6dea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1737498006-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 90a5eebd6c6ab3ba172d0a6244d30ec3ca51cb51357df02384ff7385ee0c922b
MD5 c4c9ce6efc5d598397b2bce6be25aac5
BLAKE2b-256 50e0cd7f57cf58bfb769628793911f6e2d3817b8aed4673a2748a584c285a8d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1737498006-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 71b7ad6c28313435f711f1568e69609dcbd5d6ef1b18ce264c8ff581e33f9f50
MD5 0ea9d09c6a6747c0635df73483953c75
BLAKE2b-256 c723663d829f68b608124a5efdb670d939d0caa2e5ef2bbce83ec77382220274

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1737498006-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a2e5597132dac19e166cf6432eaee2b1f85b8ed8629ec64e13266a50c8e3b938
MD5 1b2f9c7f068353ec06e698b4ea893f7b
BLAKE2b-256 1065311a7bab8613736c8cc50ab203a5cf8cb826e8f8b4ef87bee2e67078e151

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1737498006-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 69900426f35eff3415f4ee74807740028184379abd8c725a2cba761f0ae15d43
MD5 cbe14c31a10a9fa6053e0a8a1d2f5566
BLAKE2b-256 d0aba3a1150eb1555044a16d1b699a6a3463cb0a0618103d34edf987468b1b0f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1737498006-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ebdfbd0add277ebf447ca945b9331b878fdb1cdb7e49c7e9dccefdca1147a51d
MD5 a23be76edc40f1b4bf873c97722c6a77
BLAKE2b-256 2b72150de7261943d01369022999a9965e38116c8a91ee71913c4afaa146fdbf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1737498006-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cb9d1a371e2604f8039f26f2c7253620d740df9b16864699ecd00b5f666ff832
MD5 5798286634fc860a6c68b8599cde619f
BLAKE2b-256 016f38f527bccde2c14e38846091b3ee5f2e5c1a7af33393ecbe3f8980b7a3b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1737498006-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e435994d79a3f3fe3291fb42b817fee55b2060b5f778c71d6b5e75adb587c2bf
MD5 dbe9d555ce774928a06d875cac441018
BLAKE2b-256 eb585fdd38d8e9c004760b4e1852a7cf791e42e8847f36e957b91e5bc6b73894

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1737498006-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 ce6707999bfae2f7cfa4e32fba98db57f24045e637884077c85fec33be41bc15
MD5 cdebcda7686af8e4ab4c6616a84af8b4
BLAKE2b-256 2668652bde9f73f26b67aaf2a5f1eb9f5180789ae583b56aee456a979b22e4be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1737498006-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5e10f1f6354a7e8524dbaf0ad9281d9b975669c36fc1b8eb3048c2dc3cd1291d
MD5 da7f5c754e4f8b8ed330f9487f5e018c
BLAKE2b-256 724432a6d0f1dff03afc4e4636c3a68c088dffd273938ff7300fc86222ff1fef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1737498006-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3ee46a2ec489de94c55ec983b516167be08e1aeccf1e799259cb619ba831156c
MD5 d17e61d262db9a5eb9ae9c90d579a377
BLAKE2b-256 190dcb7e2a0030c423343405538e67f293a3902d13b6faacb68111932fa7a132

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1737498006-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7f4192d9b95ee447f6f626aedb02d2c970fd2c0ec5984931e8af2f0fe608908b
MD5 900f4824df215220350df2710a49df32
BLAKE2b-256 da2b528a95d20b8142277723c4c854b55d84f92fdb5cd75b05a5d4ed2ddd0b7f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1737498006-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 bd89c6d984efc84771dbfbadec5e4edfd50124171efd05725cd47052b1132644
MD5 58488d4f9f457ce5bc8ea40e83e75cb2
BLAKE2b-256 804b49fca47cb28338497131d8be2910d62a92349893b64b79eadec5133b27fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1737498006-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dc610a200105dceaf10cf5b24e1ef6811bc783005c4b90aeb142e1a9e0c615e3
MD5 4c1d549f8d5c4aafc661335bcb883d23
BLAKE2b-256 185687bb21b93ca8f684c45ec5889edda1b0587cd6d9c08f166b9ad45a0b4f2c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1737498006-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ff421609692533ec1b31afc18ec56aaee45f4b61eca89a61d4f9c707dc429e71
MD5 ee8e4dd22713b8f7e842e501c7896c7d
BLAKE2b-256 ba96603ac175b15999c1efd1c1cc75ebd5dff1ea1ecd1043b38dab442e31166c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1737498006-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e50d8b3e67ff5a64ccbc1ad3f59ae034731993e7b0459bb17c200a1b8b691cda
MD5 42e22a6ded6f7f899fdb6e827b1a6577
BLAKE2b-256 204e9a085beaa80424cf14f674346731046a533cc3d76868d82ced753c1764b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1737498006-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 988750001c6f18b23347686604b2f717f216c2cff8fde0ca95bedcfd85326886
MD5 825df2a33ec3dc826c21d89ba47f0049
BLAKE2b-256 cb84f2de2af76fdb1d3a7b5962df6a14a881a1220a231bbb18a9029581701607

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1737498006-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 c729bb8518db56ec439250b4fafe28fc1e2a54ca9380779b806e5258121790cf
MD5 1b24987594f25b401dd2d0967887f906
BLAKE2b-256 cb427fc5538104cf621553920956e6f90bd9031dcf9ced307d9ac60071cdddee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1737498006-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b10d923985e4b530df5d95e1a91ac0c6bca709cdf54151d709c6b6bf8470285b
MD5 f0b96c0af3b1940596a784068c8d23fb
BLAKE2b-256 1b529ab3986d87f92d58ba2c85e3afa0e5f348fba700a1cf918557c5f796045c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1737498006-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e9d1fe6cd8219b469300e69719fceeebd211e3d51cec7a5daaa4c8ca5b8ae9a6
MD5 44e534c76b1e2cc20362d603cd3fdbc3
BLAKE2b-256 3e8fb975031c6f305f554a4add9f578a5aa87142f91ff87f9a95d84040375f4d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1737498006-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4fec94389051abb51fde9797c19722f25feb825e20ee80edf9d3805be4612016
MD5 05aa11f790276acb31767567f6db929d
BLAKE2b-256 12cf70f162f27f075e892338a922ab322a1b1863f0158cb548a9ab63912d9133

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1737498006-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 41779f3a159357634f62c7fc31ac16df0ee5bcc93dbaba971208383d885b6332
MD5 4561743cd433a186f5f81cded8b4faab
BLAKE2b-256 1181e6052a099e1daba56a28cdec653baeed5b143de1cb24cb3bf1be676cc5cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1737498006-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 aa3330f9dd938c89ee9fa32ba553cdf58f5dd0059bd61b4e12798aecba255198
MD5 9703ad46b8af34cb7e5c35cb5f28c76a
BLAKE2b-256 4b2525a77004f09b23b871bc5b16387318d5289226804995fe29b9a414f0ff7d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1737498006-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 18043ded61c3a48dc88cf7c86fa853c3c0e560d6e7593bb78f0bd16619c9a819
MD5 8eaf855ecf71c3f120b0eb1b63083635
BLAKE2b-256 8a565168c764f4fe8b2800996c00ee2322d4693510715222711d9d85eb23d7bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1737498006-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5f5ec03843ae42e2a4e60349ca7383daa4b09e4426d79cffb44dffb86689c693
MD5 496ef3c15e84a8edaad75b799f68d245
BLAKE2b-256 f3aaa7d783fec1a9368324191efbd5439519e93e3167d116fb9f8f9d4474a269

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1737498006-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9ea70743deab3dfca3b6ce19c4a085e82169dbc7236855d4f10839d7363fd6b0
MD5 ba1787fdbcd64dc6166608440873bc5d
BLAKE2b-256 049ed59ab955e61bd5ae9f9e1c5eb3caf8f239f1b060d66217b9980826d10c8e

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