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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.9+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

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

Uploaded CPython 3.8macOS 10.9+ x86-64

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

Uploaded CPython 3.7mWindows x86-64

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

Uploaded CPython 3.7mWindows x86

stim-1.15.dev1742010621-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.7mmacOS 10.9+ x86-64

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

Uploaded CPython 3.6mWindows x86-64

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

Uploaded CPython 3.6mWindows x86

stim-1.15.dev1742010621-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ x86-64

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

File metadata

  • Download URL: stim-1.15.dev1742010621.tar.gz
  • Upload date:
  • Size: 838.6 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.dev1742010621.tar.gz
Algorithm Hash digest
SHA256 92c54bf85699d1ddbe09a6996105526efa652031e9f69fcffbbb2da9d323d3a6
MD5 1731265468296d3cc255ce0a49932efd
BLAKE2b-256 016178a7c95b72f021101dc5724ea560856ae854bc708066f3ee2495342133aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742010621-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 235abbf19373a9de4eb3f4f65b6c4978360b73f81df0c6cf161f6965e7766b9a
MD5 4ae24504884f338c39c9754d41a1882e
BLAKE2b-256 0b5b18e584f119d55a817e888bfaeae9dbfb9c59286ef1506cb21f12f820a50c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742010621-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 eb79cc082ac5c35a07befc256b64803594ff8ae67d77f3a85067ec34ec8305a5
MD5 dca3a8786a861a38492eec9566ae61cb
BLAKE2b-256 c383c2fa65218630c6e87161e52d9424e03d0aa54981b0d49afbb4c64c6e0c3b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742010621-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 59d604c214e32eee8b777535459a0e0790bca08f59d1cff4d8d31263cf5f5c57
MD5 e76d675c37d7456feb78250f5700c9a9
BLAKE2b-256 c3777f6f96f29418c6b3480fdba8347436f5a3ea7817dfdfbc8d668bd70bae7c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742010621-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0c379e73535b23b8c072fad6009229065cb715cc8625d1528177a45dc68ac36b
MD5 6350f53e6c19f0eb4e491d459b0b0406
BLAKE2b-256 417304c15ff99ac6b207aedbe869bf672878d8772a61beea516c97dabc89afda

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742010621-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 1a86f97052e98d3cc3209954366ccee495396d232ee6a7dedc1e0eb7307003f3
MD5 4dbe942ba683c7c2d4a094ee73ea629f
BLAKE2b-256 ce82d8653253b3ed6d47f5582e7b3fe38e2fc10ddec4e797f4f21d53e71bfb9f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742010621-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7da7f73fa070ee49efb364c07cfc26d90e6eb2835e20fe5991fdb686d52fb282
MD5 c71fe492bec23a5897236c1027c42567
BLAKE2b-256 6abdf54d50ecd4413eb5604510fae1866468485b2ae3920393a15ea5be2cfa42

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742010621-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6cf85184aff50408c2085454626c669482c85c797875d980e12f445e2f35164c
MD5 e343d957f950f08688debae3eb1d52cc
BLAKE2b-256 9ff373aad56f4758d2e50ea9afc44b507861a587f4ebad9e96f47fcaab741366

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742010621-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fdf772ba5015b30476d4366b48255a41ccbaf500692ac58110b5b107ff651af6
MD5 68fb028af4f55b494df00b977cb47579
BLAKE2b-256 255579ed4b0badb98af5a89d7334ed74d03d040071131f36fba954d995bafb07

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742010621-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a8f653527cc8d13e8aa1c36180f7807f97440c23cb26ffd67aa229459a5255c8
MD5 9586ba1dd4931032906bf317148de02f
BLAKE2b-256 dafe89282a9a232e36787c0cf1956ef227cc60c4fdf551b48813d392e9b6da53

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742010621-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2481fa59a8ef7e586a8e7ac959c39267a95ff088d18ed83a594644032e8db94f
MD5 ec3268582af07bd718bbad5292a10581
BLAKE2b-256 9748d447d04c8efb9c479915a6d150f3c5dbb12b79baf6b7c692c010cc7655d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742010621-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a93a5ead0e17a103475272e20e2bb95480405bd8b657dc32b0b83a523352ba05
MD5 e214338c057252028fea75a84af37a91
BLAKE2b-256 f3038c1f781528f01336b5bd971aa6af1adc90a99bc6aec0e91cec9ef994b67e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742010621-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 60ba1998ed57b677577940cbfb90eda340a625879dd68bf8d37de40469b294ff
MD5 fa61ce2e36205f8e273fc27c9995ce79
BLAKE2b-256 7dba773fdd917f1cfaa02f1c40afed85a41748f535f8b875f2b6db3ba517e124

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742010621-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 363d8e5fb14dcffff8e9b8077dbf79c8ace46330ac13e5771845d120c83c036d
MD5 d59712f1416fd00382487eb328c521e6
BLAKE2b-256 fb3bee60054e06766a8adbee975674e27e4c0e203c15053ee03bf6d9ec32f0e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742010621-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d880479cebb46774dd92d1ab29cfb7919984841795af36f731bd9f58158d7329
MD5 32bb5bfd37e221428847c8bcbe61ccad
BLAKE2b-256 743c2ca26f3a9436eb0657f54453e964d2a49f076b0fc5f8fdbbcefa40c260b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742010621-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a19b8aa4dd55bf7f67e5d579215b08bb90f369956d2aff35c38e8f0069ad218f
MD5 1db8efc8e95b1b21131809bd2fa97a52
BLAKE2b-256 4b4ebc45c251ef75c935121894f7aa28e0e6762d02e46125c9e4c78cebdfaf71

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742010621-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b03d6a7d97ad2d40a78332fd126f592d462f3e1ff436359c196d8a0161d9cee1
MD5 6b455f42ad94c2077057fa0fcb5ff32b
BLAKE2b-256 aee90bda390135e638ef322501a99d3ca63e1d2104b5825f012ed28393a7a016

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742010621-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 b0167283ea6c9af78b28c3ad13e89eda921f695dbbed4074d1027f810e52523d
MD5 4218bb99e4c0da9931f56c93d6c8dbee
BLAKE2b-256 928581eb3b9d301093ac69e173e115f42ada357a70281633df5f0b148a43b523

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742010621-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5bdf646a4e2a837adb4e7f380719f8e23f14eef9c0e47c6f906506e2ce67b33b
MD5 e3e9db07c4c1d152b9a6f7c3a1e446d8
BLAKE2b-256 936c052bde9ee4b39a6595c1ea19a7fdf31a9140813cd85a52d2f812a7d37625

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742010621-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3c27fd4e297fc6e1eee52f87c05e5a88ffc9dd90128d5e8f1ecddf979d3275cd
MD5 d49160434e54607648d2f3a9ea5be8a1
BLAKE2b-256 94db5db0d117ebc477362f3c21ffa9ef4b68de0ddd76b1a149361fb4506be3d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742010621-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5cd13fbd3f5c5ba0bb3486cbd3ee0782eec28ce76c17b4e8cbfa31ba55455892
MD5 84b2389243898c635a8ce2b04338ca6d
BLAKE2b-256 19a64c586cc7f4a53729950ff94971f0729c685270dc41992575bf6a76cd58a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742010621-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 9b0b87a19e3448fe338acc9a7a4158e07297327369f8680314bcc16647f77216
MD5 c3b7d80fe56963a8b4a550fe9efce77c
BLAKE2b-256 57b305f91a01e881b6e1ee9b7effe8113107d58f29b500b9dad56cc05f71ac52

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742010621-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 03b6fe62313c0ea20829c5a654fdccdbbc6b5612a559e5298a13eaeef3663321
MD5 172789cf769134f6d41b49669a10b9c4
BLAKE2b-256 7c20f1921ba9a8d17349e7958c5ee603aac24fe31feca64db74dbbee4da6eebb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742010621-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b780d45b25af5aa6697b197fbf9445c25a448d397c2d14712671034e417f8e76
MD5 6e87ed5f8254dc5f524894121e91cfba
BLAKE2b-256 482ccbc91429acea76baefc17477161d04c0c5a62e95c8e7e73b9ec7b75be5bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742010621-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4199225944dcee9587ac3e69799655805bd614ceab52eac0a592b7f46305b39a
MD5 7760447dfecdc3f6723198890954f676
BLAKE2b-256 de4afeb23c5e721ba9cf200c5cf5cb3833ceb7a05af2f5c9d2fe70afdc8e4e15

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742010621-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a04df9a74c32781be324591e66ced83103ef414e173fd4f590fd29c0eaa23f59
MD5 05df5eac571d3a793c9be860e9df9c8f
BLAKE2b-256 4f73184be3e9b7af1be56ecb5efe01226bcea472feab0a82671a88d0948cf76b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742010621-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 fe60a3177883cf6bdd4af9970e9cdd4ac0bf6cca75e361bb0404ca9efc41a5fb
MD5 5284cf6f6cddac967a4b7fe20146496f
BLAKE2b-256 4436cc3b3efe8dbce725d8581ce2537516369309db11569820b6ae85a0322f0e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742010621-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 56940cafe0587b2bb91ee84c195e8eeeacf1f55fcd258f01c5e1d6d72ffc78da
MD5 8a8931cd60267fe3e8320022fdd042ef
BLAKE2b-256 b4dc10f1cef1d5a33d35fdc3c6b77ccbd500ee904b700e306f82bf3829ebb9c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742010621-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8f9eae8ae32fb0e409daacf6737397cb41efd1c24957c3b6ede5dbda633f237d
MD5 eb1a08b091c10e4ab3c4c6695a189fd9
BLAKE2b-256 636264cfb66006f6df3adf8c16b5569bd745392373e1ae40c249458f33293e1f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742010621-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 dbc45f9be63df8daa69f6536d5dcd92f896b849c9448f99ff1cdc9a59e49bf61
MD5 ec4eeb3525d6c729c025d50ffcf821de
BLAKE2b-256 af4846d345a8f67162cdda5204faf19ac486f80e5374248bd424df4058cbcb1f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742010621-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9efe1958e5512550dbeb3b23ad61c81e3f06f1dbbb03d5941fa667e16fc3fbcc
MD5 65bdd4cad28ffca50469b7f3f5312fbb
BLAKE2b-256 65cde6d9f1cd364744e12f51cbbeeb2eeaf5a493097d98c1937a66edac47e910

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