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.16.dev1758926350.tar.gz (864.4 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.16.dev1758926350-cp313-cp313-win_amd64.whl (2.7 MB view details)

Uploaded CPython 3.13Windows x86-64

stim-1.16.dev1758926350-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

stim-1.16.dev1758926350-cp313-cp313-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

stim-1.16.dev1758926350-cp313-cp313-macosx_10_13_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

stim-1.16.dev1758926350-cp312-cp312-win_amd64.whl (2.7 MB view details)

Uploaded CPython 3.12Windows x86-64

stim-1.16.dev1758926350-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

stim-1.16.dev1758926350-cp312-cp312-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

stim-1.16.dev1758926350-cp312-cp312-macosx_10_13_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

stim-1.16.dev1758926350-cp311-cp311-win_amd64.whl (2.7 MB view details)

Uploaded CPython 3.11Windows x86-64

stim-1.16.dev1758926350-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

stim-1.16.dev1758926350-cp311-cp311-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

stim-1.16.dev1758926350-cp311-cp311-macosx_10_9_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

stim-1.16.dev1758926350-cp310-cp310-win_amd64.whl (2.7 MB view details)

Uploaded CPython 3.10Windows x86-64

stim-1.16.dev1758926350-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

stim-1.16.dev1758926350-cp310-cp310-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

stim-1.16.dev1758926350-cp310-cp310-macosx_10_9_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

stim-1.16.dev1758926350-cp39-cp39-win_amd64.whl (2.8 MB view details)

Uploaded CPython 3.9Windows x86-64

stim-1.16.dev1758926350-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

stim-1.16.dev1758926350-cp39-cp39-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

stim-1.16.dev1758926350-cp39-cp39-macosx_10_9_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

stim-1.16.dev1758926350-cp38-cp38-win_amd64.whl (2.7 MB view details)

Uploaded CPython 3.8Windows x86-64

stim-1.16.dev1758926350-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

stim-1.16.dev1758926350-cp38-cp38-macosx_11_0_arm64.whl (3.5 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

stim-1.16.dev1758926350-cp38-cp38-macosx_10_9_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

stim-1.16.dev1758926350-cp37-cp37m-win_amd64.whl (2.7 MB view details)

Uploaded CPython 3.7mWindows x86-64

stim-1.16.dev1758926350-cp37-cp37m-win32.whl (2.4 MB view details)

Uploaded CPython 3.7mWindows x86

stim-1.16.dev1758926350-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.1 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

stim-1.16.dev1758926350-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (5.3 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ i686

stim-1.16.dev1758926350-cp37-cp37m-macosx_10_9_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

stim-1.16.dev1758926350-cp36-cp36m-win_amd64.whl (2.7 MB view details)

Uploaded CPython 3.6mWindows x86-64

stim-1.16.dev1758926350-cp36-cp36m-win32.whl (2.4 MB view details)

Uploaded CPython 3.6mWindows x86

stim-1.16.dev1758926350-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.1 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ x86-64

stim-1.16.dev1758926350-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl (5.3 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ i686

stim-1.16.dev1758926350-cp36-cp36m-macosx_10_9_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

File details

Details for the file stim-1.16.dev1758926350.tar.gz.

File metadata

  • Download URL: stim-1.16.dev1758926350.tar.gz
  • Upload date:
  • Size: 864.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for stim-1.16.dev1758926350.tar.gz
Algorithm Hash digest
SHA256 d134db6d01394b5ad49b0a1f0cefa46d9112d5fc19bc90d2b736f5d37064c647
MD5 61f96c874cb9e349157ae2bf224dcd4f
BLAKE2b-256 93f187135c9213da7f8e24fbc34bbc2ab61e629b36570dc522aa825e11deb23c

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1758926350-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1758926350-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 815733ca51d105177fdee7923d5f704db213e27fee89e745cc0bcd70d1168007
MD5 c1bebf66d803bea49f0d4fbaa6a41120
BLAKE2b-256 0073bfafeb129e30ce38e147080cb62205a3b1253499887eb5847840886ff55a

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1758926350-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1758926350-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f4e0e908ad51a0d94424e42c1f372cfa7313868919ea01223288834e00e1db0e
MD5 d6fb240669e3819da4d1e5c939d155b9
BLAKE2b-256 f1b934f0a185e8b60c49e6fc0ca11ab36dc95c026d9ca7a5dd3ee3e5be437c13

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1758926350-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1758926350-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3709fb533c8d0698e05b4f4a9f9128c5910c75596eef945676b61e93687fed70
MD5 7d725d79ddc116ce83f07058712e761d
BLAKE2b-256 a35bf4e5d937c7d7c6e06ed979d91a511a3d057b257b22bc0e94e075afc32f89

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1758926350-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1758926350-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 58d2ec390acfd16f280b5bfa279c9beee0a5a619783faca7b46ce2c4b1a3dc37
MD5 32fee5cdd3ad5cf854a8124a3242bfd5
BLAKE2b-256 6ea8d7d95bdbac16a8bd60776b8cddae73f652c9b90a2db257ee68af3c1c149c

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1758926350-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1758926350-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 0a6f35086b4e0c469c02bea4d1a1944ff9bfe8ec8da19de795771d5db3819448
MD5 e6e2a99ebea68a6cdad1e63c3c362e1d
BLAKE2b-256 a83b2ed71811132d475af09a72e28e943f607cb2dfc95fb38d793e4d4a1c1576

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1758926350-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1758926350-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 721e528f5580d888ec84966c367e8dd1ada64b8046b1fa5629e9a7eed017a6c2
MD5 46fd38a2a078e194e81fc0ee5b3326fd
BLAKE2b-256 f20e37203c7f3017968b44c8b8aa91cb0ae6e59bddbfe0536bdac748f22e53f8

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1758926350-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1758926350-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2e43f8716fa76e7ac4aa3c095fa084d8b6ba127c9538dbdf9bdac1869d7bc90a
MD5 455c9b8adb2fa085040722a18319f0bd
BLAKE2b-256 064bb2dafe37d7a31a8cb4618a2500f081b677293f4715b36edf3281f3f0a848

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1758926350-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1758926350-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 4b41150d3cc3f4f86ce78ea8c6b3b2acb14aadff1e38a45c72c007151e0ebad2
MD5 f0b56038fd712493f86600859ca50b7a
BLAKE2b-256 a2c7f1f1753f3e4f5694a415948b9faad5d42419af279e3aaaf31c4b0170a0ec

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1758926350-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1758926350-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a59019e0e72df664140fa5e7e5591760ae44a5bb996a481ababe4da6ba07f985
MD5 e058d45e36189b2161e195570c1db88f
BLAKE2b-256 42b1e1232a027bb5d3ce25e2cf628d6af5d27289e2eaebe18f8841e4db3fb580

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1758926350-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1758926350-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1d63cfe29c32bb3ea155abbf5b5864ea5959b941d57c2c25a4f672702f696975
MD5 1df9cd34766b0bef672a679886281276
BLAKE2b-256 832e58218a9debbce1da7b912026a0ee31a04a4279bfdbb66a7756a6be2365f1

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1758926350-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1758926350-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3e21145e978876df4f77cd581895498e1ebee9aaf6a53cd6634e8f18835c763e
MD5 14b5660300ae0116d34a67af452f8a14
BLAKE2b-256 43a42cadb685af04ccbbca2c616af937c8db4f968a5fa8330455e187b8715686

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1758926350-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1758926350-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f241f6e8a24f83d90843bb739bed32fd76ae28cd0015cb8962d4034f6426c065
MD5 340aeae0e76fbe71d0adf15b80e81a41
BLAKE2b-256 d88bc6eb7135a91d991489e66df7173802d93bc55ca022927b1615964ef08a08

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1758926350-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1758926350-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 6d788fc9d03ef148976722c4cb2050a6d98ae111a2ec22406f776e2f6a064554
MD5 d3406c6602a085aa8134fec72b2fc917
BLAKE2b-256 16bb25ec68eb6a35e5f85ab3f4b0fdd8cf044fe1dfcf8298634ace3070e97aff

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1758926350-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1758926350-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 abb93b912745f3bf54c5ce31353068c889ec07d55d0182dddc0959d81a33e3d6
MD5 977993ec05b448b41acb095ab59091fe
BLAKE2b-256 56185ddc0fc6bbeb1abb906b95d3e1aa4bc26838834df8484135f4b7841ad7ea

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1758926350-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1758926350-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 aceb6f9b4a55fe0a92b3550db9f2dabb859082dba0ec5ac97928428f3dbff89e
MD5 993d387f14a7c618cc84c7d8434a76e3
BLAKE2b-256 236768d7fb5a9be677e49d6062c52544056e2d661403a3f32a6882dce33133b1

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1758926350-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1758926350-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a9707648f1ef70ff6e578c9372536fe1c1f66606cfd1e61303221f961c3202b5
MD5 1d5b6b4b5711a544bb4cb82a6b35af42
BLAKE2b-256 2c00d8f142009e6aa0e2e0904cb2fcf3cdde9b426be5924b66f853bd0b869e17

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1758926350-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1758926350-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 6a7cc9af1da16b6fa1bd70dbbce2e6330be2a2b52e0c67bef80a18f77c7ff943
MD5 dd3949e69cede8ffbc1044b9bf47bf0f
BLAKE2b-256 75e93c7f369e04dad8a6a41e33d785d93bc673139fa31cef3c1f864a601294a7

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1758926350-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1758926350-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 afae29036b8ab1c0795d00e9fa284e56929b0ee9e665ed99eaef7f11e4324843
MD5 25da86dd91f63a51e7fa035ca20a6a70
BLAKE2b-256 f11b3d9894735c8e5ee048caaec06f2981d40d72886aca35c67b9fdcc2c1ff9a

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1758926350-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1758926350-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 66a48d926a94f499af3cde6d7760a167bc221d65def8e08951c9135859bfbf31
MD5 a0df675f4cce376fd0125468f98a64c0
BLAKE2b-256 c2bc00c687bb4abc297d907a48b67378a8873a91d75cbdd55225ecd8009fd473

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1758926350-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1758926350-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 13913274a08c7ec1096dc270a5176d8d644de22bc899ad9091a90ad2b5bbaa56
MD5 207ad38cb1a805c86456b73279905a19
BLAKE2b-256 48321c870d2c88bacbaaedd424328fdf614a36ca6ba96c3cb39343e1a4068c1a

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1758926350-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1758926350-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 30f068119db3d7ae1ca65d6890dccaa9cf59ad2d0ad307f7a2d83342cdd599af
MD5 d30b9db9bbbc9c103ab083a527b0dbd6
BLAKE2b-256 1397abacf7f4db2b9285265d27367796257e5292ad608755007261a30970d591

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1758926350-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1758926350-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f3502da81004f0e35e3e1e7894e8cfba2d43ee97d7194d93b02533ec3abb6b4f
MD5 2ce342511e634243fb0070fd2c9e4f27
BLAKE2b-256 19511b148e7c81569be77b47242cc3aeba7880f1cfc83ad340b0b8e0035bcb51

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1758926350-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1758926350-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ee84d0a0a05e451a0bc3b3b561a1393ecd9b6af469fcbec8e8252056bcfad613
MD5 963d0e2ab973a6e8619d987883c67b72
BLAKE2b-256 71ad442f2be93d7e76a709b131f239cb39d8ad37867a60a8a3a126654cee3876

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1758926350-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1758926350-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fe1537f79fa374a527451c8ba2a231b53923ae6abf20b6e19d2b86431f0ef863
MD5 cf2551ed0c88b42906cd80cc126f91c5
BLAKE2b-256 c143bd2eeabe816865ea4c1fe7c057cd7a76377c8cf7a547125e8b786767a0af

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1758926350-cp37-cp37m-win_amd64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1758926350-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 fb958e53bb863292e197d097dcfeed1450a9076d5a7c545b2eb4e85084575f0c
MD5 f5d631b1f698b3cfb94ef8c4d69b8f67
BLAKE2b-256 063834dface8e36c219b6280d60e8bb20a4b6b94b3ad5e241b8ef90a5cc8b8a6

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1758926350-cp37-cp37m-win32.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1758926350-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 80492e1586a4940af48d9e1109d28a01cf7f49ae54f3223df9f40973ae472377
MD5 1dd24eb8ad901592538d6a5a85375e90
BLAKE2b-256 4e9fdc5aa472cb77a08a3d92b4d85000828a0c1e4fcea317ebe2037f3f6e3e19

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1758926350-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1758926350-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b2c74ee02f8a6e43caf5f9ea1db58eaaac0ec52e0462244001286c80e61ef51a
MD5 eb50175a8fe12dbdb3d9dca8ea37dc34
BLAKE2b-256 1153b82f98d348a6f6abbed1dd36a513d3753ec563123f927f3df149764e07ee

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1758926350-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1758926350-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1939d55a730ae67e234482702a093627def875ebb788790ee56bf9f17f700ede
MD5 de3c5f55be9cb9da4af1948e351e05aa
BLAKE2b-256 e92d3a3a4bc3c45fed2d12dc9dbbb24b8c25d49352bd85c08cb47c0d9f55176f

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1758926350-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1758926350-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6cbbd9d634290cd653ce4ea55391768cdb76baedbf6b582c7cd0f9d3ff61a621
MD5 0d4b2826210be54ec331763cfb2ff8e8
BLAKE2b-256 d250f9d17932d0760f9dcb28096d8a260950dcacc4d86f1cdf008d47b147bb8b

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1758926350-cp36-cp36m-win_amd64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1758926350-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 da10ee89d1771c68e00f4e1859336d75b7b378fb2eddd51eef3a62110a7dab4c
MD5 0bf90492e55912610015bbd8f4d0a12f
BLAKE2b-256 2e1be904a61a97091a6b7065ccba9d93964ec9c325d651d1f8147b96d0c37860

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1758926350-cp36-cp36m-win32.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1758926350-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 69a929c5572f1faf8541ac2cabfdc79c9cef4a1012e407dd15f6cb135293caf4
MD5 4d5844b6ce2c70dcdae5f75388382894
BLAKE2b-256 03011a26c78114cdba6aa2cdb9a79f451af56fb9b77ccc55debc1b51a55cee19

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1758926350-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1758926350-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3bd8ef3b520bc37f16cc64f6a3cd8738019dab7717ce8539bf6acbf1958dcc86
MD5 4dfc9df2cf3601abba908334194cac34
BLAKE2b-256 919ac41b5be78c26f0a10fd8e3bddd6a8fed88795c0404f6be94bff13b346b17

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1758926350-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1758926350-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0329f36b784453c5a119c11efa1e0c70cec4ec8f97c5b8e1b59118cf3cc0b92d
MD5 0558a1a769ac317d89ae9d5e1209679e
BLAKE2b-256 add31a52d7b04636d0dc9d988516a70a0f5add46c05378f9327bfdd299029725

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1758926350-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1758926350-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ad0a348d6858759380b124006ee875d67d391f3334b892afb9315e50540c550c
MD5 2d7648781166d84988344c7ce7aab0ea
BLAKE2b-256 9d3cbda1ec02d36efb07bc0156a608ce68a49a24668ad87dda3f239a33c5804d

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