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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.9+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

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

Uploaded CPython 3.8macOS 10.9+ x86-64

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

Uploaded CPython 3.7mWindows x86-64

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

Uploaded CPython 3.7mWindows x86

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

Uploaded CPython 3.7mmacOS 10.9+ x86-64

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

Uploaded CPython 3.6mWindows x86-64

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

Uploaded CPython 3.6mWindows x86

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

File metadata

  • Download URL: stim-1.15.dev1741048818.tar.gz
  • Upload date:
  • Size: 829.1 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.dev1741048818.tar.gz
Algorithm Hash digest
SHA256 2833f41deb191d0fe7bf77d20029ca1556c92f1192b19e8115cc10d5011779a5
MD5 8ccf583972dfae7893f9991cf0a0f2d9
BLAKE2b-256 da86bebbcbd62bc3342587c4f694e2f30e82a9ca8505e47fb4754830fdd0af30

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741048818-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 095bc2279d492caba2df184ad90c469f67c9fdf809021e328b67cd6731a064e6
MD5 6c93910cbdd565b5cc4a087f6b36c44a
BLAKE2b-256 ba56e2e4a34ddaf99dd5fe0286d258f16be57da0392133422b3df7c0fca7c00d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741048818-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cb22c6f1251cda39d8dc41bdd68cb78a0f3f95b6bb0c306bcff22b93223fabd8
MD5 3ce936187272eebc76f84d954b4404d6
BLAKE2b-256 decc318960dbe65796171d9ff0c9b8b7152dab293494b9c98bd4fd465ccf264a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741048818-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 11c044b2b28d6824873c73bb2143043178f8e89fee03d28d5e20f484d795520d
MD5 d865ab0aa2d4f3b18127f5ad478b428a
BLAKE2b-256 295a8c65bbd1197bbf35753126b7ae329c335d82f7d9ec9226f78e71e2d33996

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741048818-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3d1060f46121742dcc63729feab2ea9b689ca56a3f69d4bef82ca4c7be557fa0
MD5 fb7acc59c6e7fabebc902bd392091619
BLAKE2b-256 f73ccdd92d777962bd62579e10413a5ed3542540da9f1ac3bc024ff76893a3be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741048818-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a1b8db66cb91a92f98bf97c1b618b394d9ac93f599ed4532573fd82c884da336
MD5 e19b66e9f4bd71c99d8fefa995d65c39
BLAKE2b-256 8a390b2a890ff0514848d9c566f95e031564a035af6a011b6e995a2980154ee1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741048818-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 54eeaa7f7a974b3ae4adb2abbe0a585934441a68d5b7698dfd408f58417cc164
MD5 e3a9d0d6f06fdbc1f405880cc3e79c29
BLAKE2b-256 deab8ea9a76bd435c59d091900e2e4b8759e1407f45173e1716f154e78ba5df6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741048818-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f04dd2b44ba31f6be1472cc82325310d2116d4b908c4d7d73e71fa38bad7f987
MD5 d887e83055057275690664b372d3989a
BLAKE2b-256 212a476a34f9da780edf70f7be1c5c65683d52f4de4d427ed2ae47072bbba168

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741048818-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3f5dde407b440c7b457cf2d1550bbe312b62c0541bd0da3c4fe24481f7237496
MD5 85cf9a50e81d679f53329a34ff79f511
BLAKE2b-256 07fd83436dde92c004e50f28eb91a69fc00671416528df12cbd6d27c58bf1613

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741048818-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 2b49233cd45eaa4c134fd2bcc5cd072239fda928eef9fe65d2df47e79d148462
MD5 321bcd2bf7a288123fe80a94f383e7fd
BLAKE2b-256 e5053585aa207bbb25d17c6fa45b3fb7a45ebf6632cdd23bbcd2592f283560e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741048818-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d395fc5c873ccf27a1837124829378ca8486c66eff9c784fd2cfc15e01d88e4b
MD5 6ff0fd7629c2f6ba5be48b965abd20c4
BLAKE2b-256 8e398b85bd0f8ef874683594a7fb906240c9bda99f5ddc99f7609da5fa2aac79

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741048818-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b4242df9f6af412179a86d48220c26cf11094dae0bb6cf8b999f093a3104b69a
MD5 f2fdf10e6c5538cd3b2865c19235b7a6
BLAKE2b-256 d3d62ca190846765ccea21324ff99d7870b88239af93c9cd877e8c51f007a30c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741048818-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 76cc698418e3e26c7b5a256ecad7d3bff089435bc483e276061c6d86d42ada1b
MD5 51e779530f1e01c87e4a279b24fd3b57
BLAKE2b-256 b50254a7f2774f35056bb74e2e86fd929f79159e8ffe18a5615d0d999d989af5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741048818-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 6959c2ed2923f98649e5b7f1d2bf4667c47e126f24bcb4edf463e3cfdbe75a93
MD5 7e144a97dd8e776f66a443fccfb11a3d
BLAKE2b-256 c3423d3f671958cc65cc98f2a59026154bcc2ba977f8e6e1670371d24b8111cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741048818-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 eac60315187c8fdbe596ef5d2244b2fe6115fa357937201120079dcd5ac2eeff
MD5 643ebf1caa3b8bc0e20fffa0d42ab62b
BLAKE2b-256 87c2a3fd795d4990eeec25651ffd6803bfba3799af4582cf8b5f9908e1ac747f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741048818-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f80ca74366ffd5844565003df4711a76ada4924ce2ff6f6a9152e21d4de2f78d
MD5 f58877f36a9f1df1c5602a87ff4ef73b
BLAKE2b-256 30da749247c929cbb6d0686e6a14ebdd2ec4249cab462d454e52a50de506ec0a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741048818-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a702eba8191e9d3686b95bc0c8baa37d378434587de8ee1dc92e34eb8c632e2d
MD5 baa6a679cf9bdb5330397bd7ec811829
BLAKE2b-256 5cee117f462ee5331ccd6f5dd71efce16f0da6f54ab181c21c41f5554be65880

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741048818-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 03fde0775677f762cf817693cb0a671c0711b0781b44c2486b7a82cffc8417ed
MD5 10b441b25b0652197daf3ad6eb2b3155
BLAKE2b-256 253d8a5c46b687acbea888bad254eff37561ab9e7e5b4b00ee10f79bf5f3b878

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741048818-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 eedd2ec94f81c1a51ce010ec36e31b69e2315ffdb4e0a26d11c93caee4ec4369
MD5 16f8bf46a3559a801b2cfb7b78e7f436
BLAKE2b-256 ba0b74395f99e3fc9d75f93760e1dcbb695cc169336e523a75c6f202c9702367

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741048818-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3cc2ba4abfd28a22cf066f7299cc6239225469924f4825bfab85890d92aa19ad
MD5 d89a8991c2d824506fee8cab28c83413
BLAKE2b-256 c61c277accb62cc36df3d4ec446b46fbc4e2f0cea871ed4e14722b2a720c2ade

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741048818-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 62877f3c69952d28143af03315b18891cf2b616219677fb32c8d7eaadb79f89e
MD5 673069fd62427e78e5e676e1ccfc1320
BLAKE2b-256 51ec312ed4c532e5503069da01551d406d11fadece2cf023a7f7b3e4e7ad1167

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741048818-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 c173cf75459bf7f47a12a038e9f0e36906f13e8a3f33feb524d89dad6fe91bf1
MD5 3b7566b71015814902a05ccbe850a055
BLAKE2b-256 d52a436aba04b0bfa6b43b4f76deb1f252fef5fe5419a178ebe75101cad03baf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741048818-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 2a3314a0c037dab7747e9607bfe26002bcf098fd840749706f31d6ae03d466dc
MD5 d13b9ae303cd1ce4ff02c1147d16f6f9
BLAKE2b-256 27d8e27ec4de34e250df30020d3def7e672891e08106809d0bdb64846a3a85b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741048818-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 05050e2bc6e937e315ad0332b693e6b32235bdafa72b7b5db2ae962afe41be9b
MD5 0b27ab04e27f3e7d247932ff7921ad8b
BLAKE2b-256 14f83823429fcf2c5e8a4fe600f51dcb044ee59983ee8b081ccd0dc7c4a9914b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741048818-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 35853e6807ad0b31024f46c3db8100b9e57ddc25ffb5fd41342f82c5550962a4
MD5 272d91b8a255435dc5355095cc8f4f66
BLAKE2b-256 1240278a5b42272da1c6d9e7d93c28cb2474b1371851dc2b38602bde24c5c424

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741048818-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7f46223114b512ec66ccd8c7bcda830321ff30e258e4138758df623c5744575b
MD5 b2f9a578ab0c681298bd94de4ae09ddc
BLAKE2b-256 42f31c6b45d781470e1f498b676dc94c990b926508982ac002345d121a2bf147

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741048818-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 48b0c365be360511dc85882b32faf9f28bc1ad4aa6605b0dfad093d221fa596f
MD5 2bffe69e25d891aebaf481b1eb71909e
BLAKE2b-256 4b85aabd5ef96dd4e4240f136e8f5598afc21ebbb305c8a1138f8b06df9730ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741048818-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 bbaf082aef58120498457b0c6fc0537cdde7390c47fdc84951358db7af947fe6
MD5 441600559e24403f9452a2f9ec9155ba
BLAKE2b-256 cad713d7098f246224eb25a941a3c06c8f58e41402db564903f15ae1f25fc990

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741048818-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5feccef995e4bd45bdd4ebb7b97007aa1be6dabfa0f2887e7fecc6631e71e727
MD5 a6fd7d945e0bbe6431da159b798e354e
BLAKE2b-256 63e42c62a2084bf6cbbef0e21b0ee88a60bb4cdde36faaa38c7f56e4cd637279

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741048818-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8f2b6e86c2abfde79a85508c87f9fa226888ee3d82b4b2900ce14461d138bde9
MD5 56afbef835d139c3fde8f7b6ea0388c9
BLAKE2b-256 586cb39aedf360f32775039733973ec1c6f45d260288978e30fbff65ffcdb379

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741048818-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 827ed949b96a3ae2e9cb142a373c701f9db58accc69cf77878c5df57fddbf94a
MD5 cfb64b22ea13b4d5b923e4d5aeefa4f2
BLAKE2b-256 855a98452f16aab36f79d52dfd88078397d047b8dde63f7dca2cfcfa01b8dcea

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