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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.9+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

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

Uploaded CPython 3.8macOS 10.9+ x86-64

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

Uploaded CPython 3.7mWindows x86-64

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

Uploaded CPython 3.7mWindows x86

stim-1.15.dev1738710176-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.dev1738710176-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (5.1 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ i686

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

Uploaded CPython 3.7mmacOS 10.9+ x86-64

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

Uploaded CPython 3.6mWindows x86-64

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

Uploaded CPython 3.6mWindows x86

stim-1.15.dev1738710176-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.dev1738710176-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl (5.1 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ i686

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

File metadata

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

File hashes

Hashes for stim-1.15.dev1738710176.tar.gz
Algorithm Hash digest
SHA256 a981cffbcbbb2c09b99dce859b6ebab048fad6a8295efbda0c9d69ca43d6b23a
MD5 d965576272e8692a9b73f3ed1a0b8b70
BLAKE2b-256 eebb56062a68d66175863cff63ca7ae3e1c007a8adbe9e14ebf0a801b267f81d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1738710176-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 2c3d1a08a82abb849ace75807557a08c52d95c505d227c78612610c5eb8853ad
MD5 b87347e7d87b2a8be1291c6e149fe63f
BLAKE2b-256 df661f5040e3b96602f8c062b4891dcaa86390d415759128c2a21f03aa1eb60f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1738710176-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 16c4c8c2c1e64236cd833d9f5ed097a5a6e05c867ab2ca56932c3c463c7fe992
MD5 c9888d10ce23be80af66e34a84044a1f
BLAKE2b-256 3d290b8cdf28cc9eda15fc31534c3ce828c11ac35ff9d2c690009deb40927e85

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1738710176-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6797d9461eda68dac97e5b4b63dbb8eca7d21c691cbaa8fcd73773a6c32bf675
MD5 6eb0f2ac26202ebea5394c48608d8295
BLAKE2b-256 280ae8a3b2c8a3888385af1d0a937e33ef32ad7cbbfa03a6ece6c8e7f0a48315

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1738710176-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 738b819602a5152b3b99306f04d7e5c8afc737d60d9ac6923ed22038d9994cf0
MD5 7faaaf9f993711809976c4796edb8fe6
BLAKE2b-256 675afae7ce21d090795a54a8eab7516da6f5d22b55f849c9f4fa212962f8174a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1738710176-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b3de2176c431af8caf4f6d3378b64aa51c2043944930d55f4a94a8469cc3e347
MD5 04a00de26e064c1bd7ae7039b5a4cbb2
BLAKE2b-256 6fef983607d6a44526b7f7c0d760de93ec6c57bebdd7ec67de42d7f4ca8a7cf9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1738710176-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2e16ab99ef66f572a37b9486e5f3cae77e7b683b383755bd6ccbe7c18409968e
MD5 d94d3f26ddc7987f73c48822aac81e27
BLAKE2b-256 31a0dd564bbf21fb7977036e3378c5acaa789fabea63f09e920e914342dd374a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1738710176-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a0a5d44af9fe33819de9f8faaebd85a0183e3ce3f7066282d7d3e36988a3fe48
MD5 3b2be851391553fdce4ca43bc291c86d
BLAKE2b-256 2296e527770cb1d317817d962391e8f6f54b3f71f21bb8415370a6c8cab04c19

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1738710176-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5035556df29c8aea64888d1124b87b301be90f304a27c639887e2cea1904cd46
MD5 09caa934b6a597cc481de104ad8679ed
BLAKE2b-256 5df1a85020fea5a5290452a4fe6b8f31ba6551d0d905a5a576cba906f448c325

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1738710176-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 593ac6df78b93ddea84971472430e2135cd59693b7352b1e3ddc12290b738441
MD5 6f210416462dee4efff4726c8012d84a
BLAKE2b-256 0a11e6db7b09502ba4118d1c7735a30e3c357aaf83d9b534eb767501469c7442

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1738710176-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d15122e3d818098f9d42ecf61784f76d38320d19ee5534dd6d82b9f33a149f91
MD5 a374c2dbecf10bc11b8e3699e4f7e72c
BLAKE2b-256 6da0cc8432a20a929332246d883e4bbc441065fc4d7e0f5369ade43e739fa708

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1738710176-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f82f3dd51ec55b0583cc259af2bc19830acca6f301b443b59dd5a05ab48c7216
MD5 7df8ded3209cc10ca3474e4ae7a335b6
BLAKE2b-256 098b38944a03ea480f21fe1247721487b1c65e31b819d84f1a473eae9e3740d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1738710176-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8424ebfe06c42a36d8bbcd69bd572e523093d004096cacb022d51bfe73e95df4
MD5 2231c776b87f118d43444a0578fe2b3a
BLAKE2b-256 96f7d263c95e56c2f5ec73e1760a225796d90da2f61c189533c0e7fd83391aa6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1738710176-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 eddee399846dae46775c429056fc6e4d21f5a6e1d58a364e40ddaf7b26ab0599
MD5 f23a89b4369b68da472cffdb07480762
BLAKE2b-256 9354dec37ac1a30f178d7ee6add0d88befc61d798a712f72a1801d7e2bbaaa52

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1738710176-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 760dd2fbc8e430ee10a40f2707f762f752af224fd87e7ac76b60bc4c10c0887d
MD5 316af7cd250d0f6ad93c0fca40a6b1e2
BLAKE2b-256 25404988a3230e5a55be29005fe478c1eed378fe7b6fbcf4737f8fbffb0107c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1738710176-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3f8eb883390feb6aa7aefd21799db581da47af9ee7c29c74c419d2aa09a29fd5
MD5 ab2610af41ae3778dd60928142692aca
BLAKE2b-256 35441197d4d706a9432021a5ef8289232391e43fa72d736b072188b8568eb466

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1738710176-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 08a5e941fb10b13c0ebfd9384556880775a95d8025b9b1a939dd0b458c858d28
MD5 9c7a9d7181dd00843dd063fa10d8fbe2
BLAKE2b-256 8a9b5f71e9e3f55de016b123e54d51f42e40f99e86383c05f9d416574a05c0fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1738710176-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 40bc3f6b979f95442edaeaabf0f2f88b80ce43b18773994e673913ad1104e3c4
MD5 4277e38a64987e11b8cf217892f3a69f
BLAKE2b-256 5a042f1ac63ba51816aa051620e19f73c3577c1e005e8a4cbe3cdf560338fa83

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1738710176-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ba43a3ee8a059415d6c50a3092eefbb36a3a30d7fb40f3ced904e47616f5e145
MD5 6bd730827a6361575e47080999fa2273
BLAKE2b-256 6e39c85a9e82457881ec5c953dc94e2a06848d62e55535d70d0a77926180a178

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1738710176-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 59d55f467174d5330384e8e57d442bcd83618a06bde533f9401d7777ac92ad6f
MD5 b4f626bedf457e5ba723839aa8863bc9
BLAKE2b-256 0689ceb6765838987bcf7ad3b40f36b3cc35a8616e08efb52433a3f87b69dd26

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1738710176-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2581f1d801f33c86ca695eafe8a19900cf50d868697f3604fe827d63220e0c8c
MD5 e99a041e6364fdad65f721fbe1355fb3
BLAKE2b-256 eeb4675f46f14b2a70117d4baa82148a4d16d6ec5918e42411ea9dd1afe743c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1738710176-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 6330b37ed55931db48a4e01a3c95b54f5160ed5d42313d2629cc0343db51dc99
MD5 9f0ac401ed76e9de4ab1b13a8e359d91
BLAKE2b-256 96ce824b0dc4a0cfa6aa6261f3f206bd8e9aeec9bf832758d104227e0a84753d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1738710176-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 396b67fedd5b3809ca7433cc026080cc67d04543ad5d019203d7168d511d433e
MD5 42d27be879dcad732d8b7e60fbe91ad3
BLAKE2b-256 84b97eea45b77346897b67247c18b61637f83b6eb7b2563dad1442446bbdbe4b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1738710176-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2645494be559ba53a3b8c73659a0dd976dfdf91c5d94b4bb7058ec398ec94bae
MD5 e2383138f0ce55a23c6cd72a13246459
BLAKE2b-256 ec2bbec070ec3ed4656b7862f786cb352c4780f3273f4c55f8086a451d9368d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1738710176-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 31a66d19ef48dea0602da99b6fc3845c8d5bdc6971e3081cfef4c95d9b68a0a9
MD5 74352592a14aa3d6f8e3daa08b633302
BLAKE2b-256 7c3fa973fac637a96d73722b57060e8233f56a307eab93ab8f920d4b703ac481

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1738710176-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 18b0e5ca56b8941471f17411a815acaffa978a472af9ab957ee7cdf0586d77d0
MD5 8a45e7982ab46bb060428114742df598
BLAKE2b-256 8e814503fb18099650f495c3143663440bedce8fb1957a1d6a91e468fa7cc312

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1738710176-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 7bcdedabf8626221691fe4c680758aabc69c6b141a14079fe82f2482a4365fef
MD5 b35e353a2f51fd2a3e85dcfa23d1713a
BLAKE2b-256 4803d57372e03e2502db90f437344b0bdd4242add5683ed735217c583bd59e77

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1738710176-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 9c43bd132d764cb4a88496b95401d095f58e9ca5312d6d7797773e6cef44d074
MD5 30ed4ffeeb773e71269b06ecac093c71
BLAKE2b-256 84c2b89c6ec37c46da5d4082e8958f91efdee03f346e174464b38361519d60de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1738710176-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0302adca30a4fdd6c9a7fc75561c676c1c4943b5b210fe2a58e76e0e4f7b8028
MD5 5edc52edf2ed4ff607bdd5e7bcc47e91
BLAKE2b-256 325b2066d6008955903b4bef1ebd6625dc6b4cbef99d0f32cc93ba730058c8f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1738710176-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ba73c67c2ec4a7bb9c550ba5d0a1ebcfc04602d043adcc397a71c9ef462d4e2c
MD5 0e791a4439dd82cfe77b4fd8252a0e77
BLAKE2b-256 00750448bdb13658c88ed008b6111708de6c13dddf3f73972d640646cf6fe899

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1738710176-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1bf785a26a7145848cbdfac50206b342de49796288f1a6bdba6857a69206e761
MD5 e18d66e313400c793115a66cf5c93c86
BLAKE2b-256 54e603c4a01aea5fff58cc98f02abb017c8191c555eaea5b05ff4d430deca20f

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