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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.9+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

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

Uploaded CPython 3.8macOS 10.9+ x86-64

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

Uploaded CPython 3.7mWindows x86-64

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

Uploaded CPython 3.7mWindows x86

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

Uploaded CPython 3.7mmacOS 10.9+ x86-64

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

Uploaded CPython 3.6mWindows x86-64

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

Uploaded CPython 3.6mWindows x86

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

File metadata

  • Download URL: stim-1.15.dev1743871966.tar.gz
  • Upload date:
  • Size: 842.5 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.dev1743871966.tar.gz
Algorithm Hash digest
SHA256 63d178190925372442e964a8bcac8f93a5a7c5c5af84d23daa0fd6d7b702d4ac
MD5 8438f0103426a3a017b9d2154496d4dc
BLAKE2b-256 ae4b94f567215976c4a817a2dc0ea04172b9878f77b364890a7e16548c5dd3eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743871966-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 f818e58f8adc286210700b33e3b40d1b36dde232622e05c67faab370adec7a8c
MD5 d1d850f1b59579857244ff044f496ee8
BLAKE2b-256 214b0cf6ad044e508a6d1c6aca3cbb04a3635aaa807e17ae05f2967c7041a085

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743871966-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2a81e9aa2a67035b46da2b9214d5390019e40e736835a0790e94cf26097658a1
MD5 34a746e78f9641062358fa54eda6168b
BLAKE2b-256 f16151df70330cf1176f21b994ca03d0fc1e3e82b9ad588c79a26204d58f258c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743871966-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4341df9a36b750f263eb55fcd75f2449210e61191543b9a91805eb2879a78cd2
MD5 8d089bac07c068fa7ed012aa6cb5be34
BLAKE2b-256 d0c2f5915ff2b8ae7b264a5d6d2a156fdf043f9018c26624fbf61467b094b673

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743871966-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 016f3e8944524dbbbed3a8ab40f0357601d4886a02d16ef40c3f9152b398dec7
MD5 14464da3515d0fee512af87426d6605c
BLAKE2b-256 f67d2bede76a75a81cbae7bb3e50406b1105856ffa03ef8af994162a6e417069

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743871966-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 52cac6fa4f9aafbfee5c3c07bd6d86a9eb58ee9eab20e1400a200403b0766aeb
MD5 c530f113428ea67ea5b627c73c3a895c
BLAKE2b-256 bbcc7af4dbfc229f1b4b390e28a59827a53ee06977f752ddf0e8db316f28c7ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743871966-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 570b0891afc4d5a87288be0baab79f0b8f7b1335cd3800fffb0f7797b66d3618
MD5 476ef3b377778b5064843c5a917a9d0a
BLAKE2b-256 be4f1c41d5fb95d438b430211589a441e82d3d2e9a2e7a9e500b728239c5fd1b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743871966-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bf835eea7d4399c6e5a33e1815824ecad42c9be92a3aa53efbe6c6a151a6b2f3
MD5 7cc7560ae3c4f90facdd89b3557c64de
BLAKE2b-256 c633aa4a52f99c591424ca4b2b29bf1aa9e504b2f6ff517a4c613f6067f095ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743871966-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8da699d28dbece4fb1706f5d2ab27baf306db022bf4735e0f5bb873cb43afaf3
MD5 4306bca65f1aaa84ac8d8b513c3d0801
BLAKE2b-256 244eb21d55f4be990de9f7b62ec9a2bcbd8ae6c91d96691b631b478f7b3441ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743871966-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 c4d8849fad87333c7b857a72b31b7357cb64576078361b18bfa92bf9ed9f4df1
MD5 118b49cab632d283d19cc34b4d86b969
BLAKE2b-256 658aa78ed654b16ae9f5a86bab5f8ff99df7314d827dc01422b5a6b1c6218a68

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743871966-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fd9e9887be0174ca4bbc531c3ed0ca819de291850e4d3bdc8efb1928a5e82e7a
MD5 183314fd26e865ac58d244fb29030a15
BLAKE2b-256 4e2b1a19232e7f8fd0155b362c62121eb3a71aa5f40e45c7923b8ffe44f1d51d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743871966-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 de7bdf27185684dea230511ce404b4eb302b8d522db4c7dc48d9bef8425b04aa
MD5 934e0561a87ba08cc9de383d1376ac77
BLAKE2b-256 1f82a44e2f000a34ad3fb8571cc9d7c433d42e6d5a99efc5179237bc2b72e01f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743871966-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5c7c71889f107cc4a833d843bb11aae0b586b71d557cca1c2a4bc4edf1bc9dca
MD5 65d847fdb2a0e56d358e05e619a320ad
BLAKE2b-256 a9921ba243c7ae9753ee474e1b9601635abd524356e9cdb895b95092616d26c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743871966-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 3d98a21bd9a000c7b6d6c51cef2893b57ab6c0daac6dc370a799751ce02a48f5
MD5 66af71e9ff94326ac9007c33b73a3f7d
BLAKE2b-256 b20ad23ada14dd8288edc816917d0a7803c931cdb8c30b875b813bc5e51519fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743871966-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 89f43babcae40f59f037b86956fbcb395d1d3255de9cb3495b59ca2e5683b34e
MD5 1ff1d054e45ba79d5b4f7268e1bd9d27
BLAKE2b-256 3e95789348b20d2f926dd72140000f326b3e258801fcb22684b9a96996f1daaf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743871966-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 661324f40bbe6a20399a1a08f98c2ddf45bb87bea779ab59aa3a8d8a24d10521
MD5 ae779e6a8cb7349b8fb46c4ffc795b0d
BLAKE2b-256 621690517b608368498607fbc9acef723a047c5cca2619a9d2342e094c94a01d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743871966-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ef8f7b21da75291ce3c16382edcd6df860fb6d606f89832379712f01572a2879
MD5 b38a00781e7242fe83c7523f1d0eb95c
BLAKE2b-256 d5545c374e474de818c27dfe4548a69424b7e735532c97667dd61d3ade92a033

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743871966-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 307ad7f782f4ab50a094b4c0644f291f109ffe39ed77e4d669820d43e62a5659
MD5 636627b63a77c5ca306b401e6f3d7281
BLAKE2b-256 abc2f20e43b981af0a5b371f6e9672fb46ed5b989702e12fcf379891f830d8ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743871966-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5b42ec187d17f744d475238c1e6bebf59d6dfb8dbaa10ae82ee04b0224cbaef6
MD5 af57c234cb71819ff8d1c97181cc77ad
BLAKE2b-256 c7988802ecaffccda4b1ea097a35f9956d353e46ab11634b96283f90aff16fa2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743871966-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e913a71c9ed0c1b4f8acc09b9f31adfbd7526069806048e087c1d2dcaaf44735
MD5 f09399f7fac37a35618d4c759a5b987b
BLAKE2b-256 e57d077b55426f0b66e108bc0ce91ba2ccec383e6090136b21af3e0787c34f28

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743871966-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2a43d6edbd47b6253a770eeafd3d00271266d6fc76c9bafffbd6c81abf72f089
MD5 355cb0c522052c65d2175bc123317bc2
BLAKE2b-256 797d6000bf8498376e7847dbdb79ff12f264a9c65184edcd3ba85e697cd588ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743871966-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 5064e9e662e42dca849ea6b2e23b9de1787cca995e861a01a19675572ce895f0
MD5 f0aacaa0735b6dc4e61774faed79066b
BLAKE2b-256 e36c118dc8eac5f88cee40a989434868c4243c54650e1816db133b42bbc6585b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743871966-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 7001e07d5f3a16d066de60281135c9dfb381aaca5558a51fe73dc9cedc3051dc
MD5 7bc64ae14d5288cfebf23f58edfab91f
BLAKE2b-256 b395edde8f0473606c599e735c99c39ee25d759951773ed3bc36ca946d62e3c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743871966-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b24d391ceae6bcb6268514493e8dc0ad6167a770edaa17344855bf35defde66a
MD5 90224ca7dd04dcbc37e5c0ace9444e3e
BLAKE2b-256 1684093afbaaa682fe6c7298dd6fae05d78d35c95aeb60eeac6348dc0f4011b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743871966-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e55452e7ff4f106575ee4ff5d651f262881010921b6089c40a154195ca1c2935
MD5 156fb993d894d46faf98e48ab09811a0
BLAKE2b-256 09c810ea8be7c72cae494e3e0c9937258997d20fe192676dae9a31573146bc91

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743871966-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3377a3f85f8577ee3c6d3a5576a94adcbc3cab32f6f71417b0230aedfb51943d
MD5 4b4e403c4785331e8df514a8bb03394c
BLAKE2b-256 1314aa2f6d8a9364600a1d957fac6b6354907a2dae99add0dbf276721f7c8ba6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743871966-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 b02720195e50790cec7c872c9d84f25d3bc9aaa91182eac3733b906db4e13289
MD5 16d0a27546f6709a13117800735e0980
BLAKE2b-256 94ed8042ef3651bd0cfd190472197478ed3573c5b30a6efc364e627a5da74fd5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743871966-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 a960896332509ad76cc18b2a24ee05e9e550535e8b026073ceae7f7460056c3a
MD5 b73832a1dee020b640658f86e2971cba
BLAKE2b-256 6f209649da6d4dd7edb2f95358f816760ff3b47044018ce6e8f82d6919e9b723

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743871966-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 47c6d3008e9b818b97fda0374deb5d7497c35f5d917f2da020367c8808eebe06
MD5 a167bbacd9cef43e57eebd67a89520c2
BLAKE2b-256 8d06c391560611ac801c41ee0aa4805e58c24b044081ff068224732f4f655ca5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743871966-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8288038bdebff409b8df99bd5a64f3a6762643b3091ab4a5c22605982ec8ea0f
MD5 5f31625c63ed06621260acd448f4a03e
BLAKE2b-256 98ca34e3efff4328b2692a92839706d9e5ce223e643cb2487a1169ba499e1ff8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743871966-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c7130a6ddbc79131e4cfdfdfc539d0e544287cfe886411314e4acfeede0be2a3
MD5 5586cedaa5b9835f6755d763a73488c6
BLAKE2b-256 7e7cbd43adaebf191addc924eefebb87b19096b668d89c3adeb0a51a2cbf379a

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