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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.9+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

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

Uploaded CPython 3.8macOS 10.9+ x86-64

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

Uploaded CPython 3.7mWindows x86-64

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

Uploaded CPython 3.7mWindows x86

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

Uploaded CPython 3.7mmacOS 10.9+ x86-64

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

Uploaded CPython 3.6mWindows x86-64

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

Uploaded CPython 3.6mWindows x86

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

File metadata

  • Download URL: stim-1.15.dev1742879845.tar.gz
  • Upload date:
  • Size: 842.2 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.dev1742879845.tar.gz
Algorithm Hash digest
SHA256 a28679c58e834a72f1d79a7e5f215e4328bb5d7264667563a65ae7afc222d3aa
MD5 878b253ce0ed5bc20b82f7956e1d0143
BLAKE2b-256 5f5d8ed29b4c9c45fc800807501e25b988dc3f152970e84cf4cf7a7ad2eaabe3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742879845-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 f000bd56c2c8d34c96256683bda60a336a7401d781141af184a7f5e5e4304fd6
MD5 305e2d81337da82e56ca603e5a1d6629
BLAKE2b-256 1ad0260088d0b224fa678f06e45250d4fac5e9c8d5b3365f5287d361385a25df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742879845-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 517fab65b674748854abe0da0ed9599ff8bcbec1d760da1705652d05ab27c2f9
MD5 6d7649250ddbe758a4f4d9d96bc7943d
BLAKE2b-256 eb91703af3f57538450b6a7f12bab8f3dd3c2387504b4686970636ee297af64a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742879845-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c6a2e493d9b01660a8fff9b5bf6372df842a8a455fef959d17572def1900319b
MD5 47fd7f9765a16d6d0eb3864810cfad7f
BLAKE2b-256 9791a149ef2437b77c751ddfaf17307eb42d08450231b46e8fec858672798c5a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742879845-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 daf21a364da9defcda43f32de77d9ff20c60453c096e232332c0457072d4b353
MD5 cc7ad248b8cafd2cf04467d933ac8099
BLAKE2b-256 636afd42560eba300d7d7d07a231618512f14560020380992f68f5a4762f4858

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742879845-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 08f64f913f7623b355c6cc0d0c584f15d34cd8ee032980f08ab50700e10d03dc
MD5 0f7a8ca3a1e9c3b039d2b31d83881970
BLAKE2b-256 654f7aa9e8b5f6537b65edb5eaaa629430eb33901e659fb7b8d0bc0f71bf9b53

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742879845-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0ea9229e7911a67418860ff71c430f388c00197353ea39212c537127ed321a08
MD5 2e8a8bd5085b948c23ce46b8d7cfb474
BLAKE2b-256 6e8cd60c01a495aaad466ff2bd081b261faafac2ba41646698d10d5bac0b07ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742879845-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5fedd79159dde112c5cdfa082d3fa69c4220c99cc7408cfdff3a15efc8d34ac9
MD5 c1d5c86ea455da7c9e0a0925ef9dfda2
BLAKE2b-256 94c1d94c18e96a629ffae51f1dea6861df8f9a5cdd67311c2f33c7ba9a937c46

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742879845-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6931044005a31228f36c866ac7a2be15a9ad308ed82f7c912b42d7b08c26f506
MD5 71a6506301eb0da1f87d4ae987dcd51e
BLAKE2b-256 322d5e53387873131db78a50510d18561ba8b0e15b4914308a0d407a962fbbc1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742879845-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e0a4f4d2ea262dcc01a8ddee8fbce258ce64db314c3bc4c189c84f239d616f42
MD5 a2fb531027f222432d3df7703e3b8913
BLAKE2b-256 5edde05fae1a78e55e233f5806898bea73b5050f7aa683b0de8c62d29edd51ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742879845-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 060db0486c4ed9d5d3f4fe4912aaaee092f07d9d17c45643de09a1cd7402744a
MD5 8540b214983dadbec88d784bf507d4a9
BLAKE2b-256 eec49e8e57f9aa7e5679f66987d4def1dde459f3dc53aa600af8f8540b187e2b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742879845-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e1362fe871147c77d21cf0fbfa43e4a158c54212ec30b146f051fac2ba79c8ce
MD5 5bfae5f5821b63b93671dda3d807d702
BLAKE2b-256 2530db98b0e0e63a5cf96d6ed41ab3efd432983a9c2950358bd01e5d45bc1744

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742879845-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b57f4ed30738b2c628e40132470620d6e40b44e8a29b2681bc44e99ab519708a
MD5 4ad9c0c8aefd40e05e4bd1e2f7be046d
BLAKE2b-256 2739a73b6d9e3f9cf4736113a671c1aaeac488e79043636d5a11d06cbad0fdfa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742879845-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 cb0890631233c49e95bacc876a93d129db60a48d913899bd254cb40f737423c5
MD5 169ca71a24cb527123335eb2a3efe760
BLAKE2b-256 4da3c6e2c8eb30cb35b6702d4b56c2ad2dd5c476cbef326a4c25992153db9d26

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742879845-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2b22d4c80fea92d4d3989be0a17288af722fab0fb3685d45ddb5b3cca217e422
MD5 0c173c056cc5abffd582a96adcc4e369
BLAKE2b-256 40eaa03a09f3c0312f1c42b52529dec426b992f2b76ba3789505bc0155cbe0c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742879845-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ce3ede648ba251bbbd7f9c89c710c669e59d15c5a26bd6920b0a4530f34ddc70
MD5 dd3044029b7006ae59c6694378fce209
BLAKE2b-256 2d859d53b7e49fb327eb6842e7521e8d64b0da060fdb408704882f1a97473d49

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742879845-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b55b2bf6d13b89acb9ce97ac61586821e0dc270156593d47a5d007dc36e2df90
MD5 cb753625e02856afbab9472e0e1d17c8
BLAKE2b-256 2a680f470f647358ef1b77b324c0b68031081d9fc5d27bc4e5c10f78b2062338

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742879845-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 698eab1d4428e468d4ca7ad01091a1d99d6e3666d4d467d4fb64aa1f3e47fa6c
MD5 16719fdf7fb7c13999e300e9bc99d9f6
BLAKE2b-256 5efb23f0a191c27a63c12672bf65bd4ff8644b27ac6f8d32dbb7bb8a0bba0e5a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742879845-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e718cf81787db64af5e8165608a5f5a73ed7b302e308c7b7c6a443d9b54f8db4
MD5 f804da6b9df9217c43c0dd73dde60035
BLAKE2b-256 58f953d06a8ae5bc15c34ec7bb55004878b8012c8f43c97e3495a1a16e447441

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742879845-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 28b83c2c734654adf16bfa0c53788a4d646aff3c6079c2c2f452b8f1170cf233
MD5 bc9a7c1903833befa983ef44edb9e317
BLAKE2b-256 6f67ee05a41722e44345d3599fbe28425edc4e2371f56ac0da38ecdaa1f590a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742879845-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0f9daf736a518f6c198bfbf45bcb2b9657cf0fcede9efb5183c9a372861cd1f0
MD5 fbc01115935f12c8a22a676d2045890a
BLAKE2b-256 ebb6f1d165d83f470562c8b643695ced342d6bbd1e8f1e985013e64d12f14119

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742879845-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 01ed5594c592e8b33cefe4efb55ef937be25d30740bb33c6fa2e066046d3c1af
MD5 46d7ff48dbbdd20ee52d2519f574160b
BLAKE2b-256 1f93b6db695d517f0b8911b2bd79dbb40295def3fa61bada2cdfc8da6bf99370

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742879845-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 a25adaedc3c9ed703b4e9e309d1fc038850a03469d00f7ada2b0d97399d7466e
MD5 8ae8798049f8fcabace2dfa2cc900e76
BLAKE2b-256 9b648e176670b566412aed2875d6c0f3c262d1565cc04c204a5988234976ad8c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742879845-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4cd8e4a72f989162bdf454535ecc7add797ae6dc41cc40c1cf65ce02f9e418bd
MD5 c9dc15149f04efbb251ea58e0e86d9db
BLAKE2b-256 8cfa58b3413afa891dac3d46743ffffa40bf45f1f6adc0078409af612e435b96

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742879845-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 270349b13d423a9a61c7628285c1299be1845cf27ef505aac143d338dd2c2ab1
MD5 7f81ac8d1d80d03be4e3cd969a0d9859
BLAKE2b-256 f7dd84ceb77618acf74c7ee8dd9522486ad65056bd0ef4c0a35620dba7562a02

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742879845-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2c7d59e60b7c9c49635d7f9a24301536625d7c509a4d89dc1ee447f41c4096f1
MD5 9c4bfa565441f25eaa570a419f86ce21
BLAKE2b-256 b29ed708d4af21308dc74c15528cc2d43491ea9728cb36ad8592780466770bab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742879845-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 7cca7bbd2e59ccf8feab58cb5366d73aac0dfea9ec6bbee38ee6de63fa0821f7
MD5 3b189973241a198471b105e886d310c0
BLAKE2b-256 c9c066030f547355de5e46bbd595c786beb0ff0a3d9cb0c09d7ae4896892080b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742879845-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 35d2089b47a1efed1dd211ea0cc89c90bd4ab6c53ff81fc706e762a72e13961a
MD5 b791032b49ad6a46663b56c8f73e446c
BLAKE2b-256 51c37f93f3fb74a4307c501113799aa32ac3c47f37ee57f67ad33b8a81e1e549

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742879845-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 65b235ce5cb7ea922f41fcf961601d30378acf63fd19f73b98c2cece62bd3618
MD5 12d8625e54ef7ad83bb51d2ff952b352
BLAKE2b-256 9ae8462883ee4e31c2352c10319d6ba328bf1c9d9a04efc28e84a83a0ea3bf75

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742879845-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1a74601e667f2ca16f6b597fb1d7a1ad1fdb32301450658aa46e2decfe097404
MD5 40491947906e4d4017ce0147bd8c8570
BLAKE2b-256 df02f3c671db14a55512a11706aa6a0cd096e5f94ec9011369a398a1bebca1ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742879845-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 31bce879b70b81dede98ac9ccad067006338a6520e062ea422939a9d1ec7eb6c
MD5 b89008f37d3dae19ba17799672da47ee
BLAKE2b-256 7f7306124d7f3c32b21581a6988b7950d4f7d01e7515206b5e177780c718bec9

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