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.dev1730523741.tar.gz (817.5 kB view details)

Uploaded Source

Built Distributions

stim-1.15.dev1730523741-cp312-cp312-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.12 Windows x86-64

stim-1.15.dev1730523741-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.8 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

stim-1.15.dev1730523741-cp312-cp312-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

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

Uploaded CPython 3.12 macOS 10.9+ x86-64

stim-1.15.dev1730523741-cp311-cp311-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.11 Windows x86-64

stim-1.15.dev1730523741-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.8 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

stim-1.15.dev1730523741-cp311-cp311-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

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

Uploaded CPython 3.11 macOS 10.9+ x86-64

stim-1.15.dev1730523741-cp310-cp310-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.10 Windows x86-64

stim-1.15.dev1730523741-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.8 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

stim-1.15.dev1730523741-cp310-cp310-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

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

Uploaded CPython 3.10 macOS 10.9+ x86-64

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

Uploaded CPython 3.9 Windows x86-64

stim-1.15.dev1730523741-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.8 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

stim-1.15.dev1730523741-cp39-cp39-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

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

Uploaded CPython 3.9 macOS 10.9+ x86-64

stim-1.15.dev1730523741-cp38-cp38-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.8 Windows x86-64

stim-1.15.dev1730523741-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.8 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

stim-1.15.dev1730523741-cp38-cp38-macosx_11_0_arm64.whl (3.4 MB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

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

Uploaded CPython 3.8 macOS 10.9+ x86-64

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

Uploaded CPython 3.7m Windows x86-64

stim-1.15.dev1730523741-cp37-cp37m-win32.whl (2.2 MB view details)

Uploaded CPython 3.7m Windows x86

stim-1.15.dev1730523741-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.8 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64

stim-1.15.dev1730523741-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (5.0 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.7m macOS 10.9+ x86-64

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

Uploaded CPython 3.6m Windows x86-64

stim-1.15.dev1730523741-cp36-cp36m-win32.whl (2.2 MB view details)

Uploaded CPython 3.6m Windows x86

stim-1.15.dev1730523741-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.8 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ x86-64

stim-1.15.dev1730523741-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl (5.0 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ i686

stim-1.15.dev1730523741-cp36-cp36m-macosx_10_9_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

Details for the file stim-1.15.dev1730523741.tar.gz.

File metadata

  • Download URL: stim-1.15.dev1730523741.tar.gz
  • Upload date:
  • Size: 817.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for stim-1.15.dev1730523741.tar.gz
Algorithm Hash digest
SHA256 5b51a9ad574bfac13a8a13f0b5fadc25912c55d18204a10cf584536c3eb67c99
MD5 32444d6857075138ab90490ca316732d
BLAKE2b-256 c9089fd30695c499b63c1a57c24c040eb1b6a2f628ac2db4a36d5d8b135ffd6c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1730523741-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 141465b177eb44a4724149d44246a63d0bd0d91a284eb7f72b2e2765da38cd5d
MD5 361cae12381793b3ab7ec50cf9c9d5f1
BLAKE2b-256 5ee1a7109f1e7b084e1a09a413669257b3d9f84d22e0c09d91d21c6488a0c6a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1730523741-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bd49c6d189386caf5e0ea8be170d3fdb04d305e08414615d29877bbf1bad10c5
MD5 b32860f0a4f7c7906909c6418d9e15a3
BLAKE2b-256 e7528fca3cb6c7195b2fa1d051d990cc828f47506f27286b4b5d2929e77fd727

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1730523741-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 db81147d37247eb2da4d9c09139d271a622b77410e1835d6dbc9e052dd91277f
MD5 6a162c6f42cd10d6fd80b3c507560a06
BLAKE2b-256 7ccf41252f5766f4c232890b25f7df159b30caea2b5a8e2721c56049a17080e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1730523741-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 49193596fef6a346a3ff5589ca498c69441fd3152cdf62f39c5180215c15abe0
MD5 51752544d7fb487a4c58a9fc936be72a
BLAKE2b-256 a37b63222f65ed5b731f17eb52afcc53f02fd0dafee2b18f39d959b5ccfdcb43

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1730523741-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 391f596ac49c7a667b53150180c40fab0479e3c05c251dd2ad2b6a8866107caf
MD5 15017646aefea8bb82020853d090f8d7
BLAKE2b-256 256a24d719b76ea7cf3968beaea6d01b832e6b4e2440abd65d1fe9743e5ffc13

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1730523741-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 226c09ec5fa6cf52ba97ceabae121175b0756419c21c8137535056dda40ad093
MD5 e093d0c3f27bf33ac6cad40b5ae81d9b
BLAKE2b-256 2fcff384a5d0a2ecb7452f8ebede1886aa5310472ca6d484cd49036988440622

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1730523741-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 22952f98b2de50896ce72319dc3e05274c0aae2412923d5c5832d64f32b10105
MD5 b658b4b62ed4a1755d1a58eccc3aa7cb
BLAKE2b-256 68d0b4bdec50c32f5de1b21805e230a2a1e0dd7d2faf10caba19b4e4c94d51c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1730523741-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e822a951660b1118dc13d9ca80cbb6868f4e1746e0016b6a5915599ee4c9d10a
MD5 607a6595a5442a70b24d477e86dbc41c
BLAKE2b-256 be759acc2e7fa5353e0ad9a0c65baf5b20c5dbd4b9aa547bc6412e87c6843591

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1730523741-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 1803e0aad3cee390a6c73b7c44893736445406be39bdb03d9c4469bdb7775102
MD5 cfdb77fb7aa116589e68a0474de99794
BLAKE2b-256 6519f7024555cd778fec65de078c5d54fde4a6726d8b8b99b16adef65e3ac296

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1730523741-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 424bd676942a0503ed47e80cd67404d4918dd20127b0d5882bb7763029c5204e
MD5 49f2c4370908542ba4822c7aea718624
BLAKE2b-256 b0b1b9f81bfe20853f5357d7f524992bce702817c5773a9f0b76849941d0dbcd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1730523741-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 552949af84d1a6e09e9892b671cb10069acb9be57788e9bab5acecf86128d7bd
MD5 7788de64fe4cb0eb8da56725cb2c1ae0
BLAKE2b-256 9dfc8915703b6800981963e56b8551a43e2bdf710d79be9e4a45e060badd84e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1730523741-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2efeb542e7f5b9bc60ce03d2c755a3926fe3cd5877bc58f85895a2bc8db79eb6
MD5 f54145d8bc5ac972d7f1dbcdefa9b079
BLAKE2b-256 ad01a4a9242df2f24e430dbb14f576a2e7741956359e7b03b66c034b1d8d919a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1730523741-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 8decc5d101f5e04936906fb7b3d4147ed8f7bd5a13cf5da5442814456d849e67
MD5 0d15f57fb817abe21adaff8f76732298
BLAKE2b-256 29d1b4897e923280b25294804b9c9abf8e7b5630d9805631d5922a9f603455f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1730523741-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7a2cdf3e6e183a25c68447e090fdf13d61dec63fabeb395dec24880dc21be10e
MD5 164974d1b888b2449e4a6f3f4c05632b
BLAKE2b-256 4cc0e96237bcd846aa41424f6d0f76e08cadc652b89f64b9235e2060bd9db793

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1730523741-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c407b41c93dd003b55ca3031fee788c989ab201e48359832ac5cfca267f67362
MD5 66bb166f0d0877f1805f367620eb90cc
BLAKE2b-256 8d72e4f9f42d57d226a7e2196f34d05a59fca00777d7e248be03be507a1ddd90

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1730523741-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 114f805e120be3d736f2733c26d34f875fb97d2ec781ae67855d82362470d034
MD5 ef3fdf8aff09d832f218a8e570dd7ec4
BLAKE2b-256 6d26032b9a2f30d07cc4ee4363b9db8fbe32ed80ad2f37301640b565754b5ab0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1730523741-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 8119eab8535bd0e8d98b9bb18de10db1a6dc31451443c20be35966644b09b11c
MD5 17ef978ae4e98ac1ac97a00c9ce508fd
BLAKE2b-256 7c4110e45ef7da12466c24ec8cd0ba5072f89131ed2915415797a3142544706f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1730523741-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bc22237f2c5aaf21b2a3a596a33b4f630344fb7d3c24c493549651045ad89fea
MD5 99c81555db22118f499c49bb9a0d3af3
BLAKE2b-256 cdde0207f1f30803750d6a4fc17e13e00ee6a885a6b12e4706e5fdc6702f99a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1730523741-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 174ebe4ca904942c6a893d7cf097fe628373d51e65289eedb707f9972ea1d020
MD5 584484e86aa588d1d590e15decd15647
BLAKE2b-256 6ca6ff32045a9c193b0553a961f825fb01a819b324649335b80b704e442175a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1730523741-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c07570cef1ecc77cb5445cfe58ed97735ac0862f2644200f37d4c3305ccf74b9
MD5 9f12959fd3f1ab3b3359f62547cd4c77
BLAKE2b-256 ccbc18d2c093a0239ca34cfb389336879d892d9710d14a0301a3dca9732b607e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1730523741-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 5290f7a96dcd7ab964fbfbd5f1af717a5a2c721f7ea908188a54bf319b6f2d13
MD5 5721d85f09c61b7b7756d7b77c800cdd
BLAKE2b-256 0a73db2f35e1176b51fe512a1f211b0bc617613d46372d76c6eadbf3d4d7e0c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1730523741-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 a0fb0bc86f053d5bfec0192bd39c8231f5735f493c1116a962e3604c9314ce8c
MD5 52fd17dd6b11e19ed66cc156d94c6a65
BLAKE2b-256 e6e26b06c08bbcc34e3ffac8c12643ddcc3238e5e1868ab1769af8566f6ed7c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1730523741-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f2f13f5d96b459ca77891327e98f7f2ff7b9b4776e5ed0718d414c15f8c6f4cc
MD5 0116f9fb2818c8ccf87720d9d0f0cf7d
BLAKE2b-256 782af29fe79e3cec1008b105e7ee6c1bbe0d912ee1406086b9160260681b86ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1730523741-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4be03bb047a18b15fcac6ef340e7e56fb3eaadf8dade7f9690065c8814e19d23
MD5 49df8118a461533a3e1e4d1edc1b59de
BLAKE2b-256 4d0b4acc767284db5f2aaab97950b712ba59906ac7c12f12818f7989344b813d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1730523741-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7c0248d63851db7635e99f25dd78ef764ac263e33a4d1b43a73c9da594ad6c66
MD5 c73f937b2e27656dab51cc8bc90a2c26
BLAKE2b-256 65b8d00df69bf99448547679b1631bdf95b8d6d7afe58fe4adadc8b314969041

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1730523741-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 159d1ba86dee8f25720c1a402374fa46dad3ad7c1a3e89061f1f2b999f907bc3
MD5 e713425dfd6e1dad14ce69da0d40319b
BLAKE2b-256 3eaece0d37983d7bede0ebe16f42f14f2451889b4b02fb03e9619e843d82e196

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1730523741-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 a18192977c9d13168b6cf421ee706863eba250d6c3d320515caced3411967881
MD5 ddf4746b3cd8b68ed4f712a3f08f1dd7
BLAKE2b-256 2e6463b998e1f3464e5c80c195713023aab1b453422e78f4a9c7a8e6478b34e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1730523741-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 250779aba205f284443d1bacac628e1f77e23b67cd8c90c7c32e3cce79ecadb4
MD5 7771f642c4daf02ea0023db0aae25660
BLAKE2b-256 30cc69e618f67838b8b5c25ee4ffcf28719b9b1d4e77c8c6b2941f00b1d32fcc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1730523741-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 aec20c56e0a1a991d927449d20e370b531546af3c1603345cd8fd9aeb4279749
MD5 59e354c10ef476ff6cb908254fafd7d4
BLAKE2b-256 2ac17e78a8106f654789ca75f09dcb693a2fd6cc9e257e2dc8fc749102711bdf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1730523741-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c0dee9075423a958bb8fce7aea57d972f5724240b5193a6bc13fb83c1a0e7678
MD5 8cd060c9c3123c43cb9cbe17163f2818
BLAKE2b-256 82c9a683c55bc0fc6b9c05c6767cbd88a9130e7d93c4459240c299fef30ac689

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page