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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.9+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

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

Uploaded CPython 3.8macOS 10.9+ x86-64

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

Uploaded CPython 3.7mWindows x86-64

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

Uploaded CPython 3.7mWindows x86

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

Uploaded CPython 3.7mmacOS 10.9+ x86-64

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

Uploaded CPython 3.6mWindows x86-64

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

Uploaded CPython 3.6mWindows x86

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

File metadata

  • Download URL: stim-1.15.dev1741128853.tar.gz
  • Upload date:
  • Size: 838.7 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.dev1741128853.tar.gz
Algorithm Hash digest
SHA256 56f2c78a6dcf418c039f02904e00831eb266da4499516f7687494119b8107f48
MD5 1c3a47a20cd87cfa88924ca5a077395d
BLAKE2b-256 1916df8f0e34ad7b9654238309bc6baf29e30555b8f729e0a584560338e07e98

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741128853-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 39b0e5285f3c925ff0613ad72e8a4e53588d14a6b2c650a737bb1d420ba33f21
MD5 3446ce092576be935b4001daf4dfa1eb
BLAKE2b-256 429dc13350c07330e0cf544223c36390223c8736b84c53bd311a09d551c39165

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741128853-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3300701f8623637feb3f1dab930031810a99a2b5640d42dae9d562f1baaac411
MD5 e273b88e3a7f5ee1d9853557e5e32fd9
BLAKE2b-256 88fa21ca398ea09c2a3c83baeb74bf1a2f2014c1d7e14d930db21aad4286131f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741128853-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7e5e0acab082397a74498c0362407af0eda215117e4651f638587b946d4e63ea
MD5 47487fbb35a597dffd554eb3dcbe315c
BLAKE2b-256 f6dd2901289cf20ccd945465478a6f907523c1a0c604d3e85f44a90cb1c413a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741128853-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 58d0c384e9e40a27cad31a7f404469b379a1c65166b72caa41a2ad65227ead0d
MD5 52143071359dea5c28d4dcdebceccc5d
BLAKE2b-256 e210722d4c03fa414cb4e3fa9d25ecfffd80a77a34a1529618c20f950f4dc08a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741128853-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 189ad48b8ab1056e628d707e82775f1140922acef3223496608d198a401e83d4
MD5 3d52fdfbb7aed9a0097b7fc6f0782d97
BLAKE2b-256 85ab38a55dc8659ed64cf41194839e8acfecb16dd2d0e36d62a4f711c932c56b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741128853-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 330612e3f9b83305ee49d55b4d5c27123bd7377cbfd27650ebdccfa2b72ef2e7
MD5 403347789fa345e8bfbf8721337a0e98
BLAKE2b-256 01e2ce2ad8a3c1cec80eaa860aac872811356ed07f9b4da855772eb3b55dd99b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741128853-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ee13d03a3206b3327ef1f2bde7c4aee6d29c2ef822b5277680f5211389cbe4a9
MD5 84c2d9447db73d32d50f554cde12c791
BLAKE2b-256 e30e47630411b69e1c550bc7defde9e0f10cc7a3935373510318ec3b8b03ca38

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741128853-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 388568350f05cd4c5468b2faffc4c96e9232fdb449cc115ae86107de0e03f5bb
MD5 9ec9a28798b86009267923e208c00bdc
BLAKE2b-256 9fe536205598f394e05a155c1934641355359ae34253f9a7b71ea0b502aea3ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741128853-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 32ac1888185f7ca64b21d6dd9467e043e0e7543e5a78131fff8ee333e03550f5
MD5 a6de62235fa869aff6fb993120ff2e43
BLAKE2b-256 7899ea273dcb61c12745e26f0e616c78798aa2df578c3b56269d2753aaf6b393

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741128853-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f9626fec27197c2f9d3bc544b9625636e9453dedd3223b6d3a8e9bd7bfe94a3a
MD5 cd028255f7f05d6556325510486e9903
BLAKE2b-256 8d4ec189c3cc3dfa6e54fc86aa3050977a34bf865fbdaaf05b7ae7ef8cd7f9b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741128853-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e60071fc63152a39be9a8f470febf14635828a5c9b51e52581ed9348d4497bf7
MD5 8a643179f46e897ca1d0ae196d1f65cc
BLAKE2b-256 8443fcbe8c6e9003acf52c41ade8914baebe59fd2bb4d8e0ddb61c57c344a833

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741128853-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 81d8ed8f4f4d97056eb61670b72823040fcaa6da41496a2fe7f2004a35402ddc
MD5 62d4fc30b761eafcab562669134c88ab
BLAKE2b-256 a0e6e35a8550071236f08e9af2676a5661604400f9433de44fdf6f319980609d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741128853-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 c29dc06f7cef868ba09fe0fc5109e32e5e96b6ea1eaa239a561ee5d7f52f92c0
MD5 1e60668f0e985728e0df7041ec3ccb02
BLAKE2b-256 2add659979f6841f9f2e30f0ff396e55b5275310b01f971395be246ba1109281

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741128853-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8236a0cf9d16e1532e7c95a4a964d900f77abaee6eb3a9420674bfdfd6a8cf89
MD5 bad34bc79bfc215faf1045921f15313d
BLAKE2b-256 72b9f2923b6bfe49923663d6f5e9c9bf2c81c3b4bcfcc4305a0c1150782e2c80

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741128853-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a6c339a33feb53f4240ff6c5e162bc6c2f258ad2123169e49510a5ca0aa1f86f
MD5 23cc6e0d5277a97f5d59b86c8ed0505a
BLAKE2b-256 1c365dcc3c9b4dfdfedbc418c820259aac856f673e613ad3250caab45f4d4484

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741128853-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3435607908aa2b280e524f84c77d89e266f55eb435e57b7df12ea029a66361aa
MD5 79d4e2d7283a6ad0ff1387df4001899d
BLAKE2b-256 a1b35afb98b886a2d60656cfb99f4122d750ba6c10d4fc54504de30acec20649

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741128853-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 4426780c252e4b09361e89e320eeccf177f617ffa7c6d34875525c9fe83065ae
MD5 8a6d9c816b78f4d25d68c7aeafcfb36c
BLAKE2b-256 0260e6ca6473a9659eaf0d66567e467ebbf3bdc4d25e01a4825b9c3f46163790

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741128853-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ae7762d4c7c0449786e71824a4427c610b98b53ed4a71cd0403100277ad10b5d
MD5 a151289cd0f41980551f7b548b883a67
BLAKE2b-256 ebaf0cebb21f9a16514d8d785a2fe1cd6b01d9e90470cfbb1f7644e08bd5b245

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741128853-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ebf76bca1f16cc333c41af33ea48bd0550d3055ccfe721e85b81fd05f728ec1c
MD5 a0084e13e9ab5408d91a0cc99191c1bb
BLAKE2b-256 e6dc6596d9bc438df0c1b9d675c9c6cfa124e9c2295e72fc1a35d6211288aeed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741128853-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f1f822bbfb9f07afbe06c0c07cadcead2f05c4345ef93ec7b2ef0769b46e566a
MD5 47d9e7a5d2190d7c855ccf3575349437
BLAKE2b-256 127d2ec0a441444060de6efe222aa8d7daebebabbc16f1b4174ec02f943f3313

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741128853-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 b16fff7157f792a86615989f5d9645672a0c67d7299fb27a70bc5ce167af930f
MD5 f2ff681bdb1cc639d08238c03cb5363e
BLAKE2b-256 10972afaf75e055625d5df706ab203aacc11777914c1c808e2432a3afc4c8a0a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741128853-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 e90e663e3f960ae3fe1eb41e7b7989bbf3c689836cf487b38d103bbaa10a8c40
MD5 18ae1a3bf4df597e3cec785e2268a0a3
BLAKE2b-256 b004c4891d18045ad7f6967b49c630268e826fc6355e8e36679fbaed82e8c42f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741128853-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8cd05724068b40fb4fb43c6a579387a5245b88168498f96d7c1bfac7e4155e81
MD5 a6f8bc3aaaef36e68efb8deb886325db
BLAKE2b-256 a1835d23a9d842eeebfa82fb2f650320f43d107306c0aa118e874b46002d20d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741128853-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 837e1dc9fb31a1916d4ac21ed1d41aad08dc0b7c923d74cdb87a2423ddfb3cc2
MD5 897535f33d5c2c9f9fee116e1bf2d9bb
BLAKE2b-256 6937a623abe9c80e92642c765d6bbae6aaa029fbf391f8fc983b1e44f2884151

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741128853-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ef7af3297655f0e3e05713803dbb5924966ecf89b8eacf677cd5d23efd9d1f46
MD5 204e93f2233e872f28501851d3b3a02d
BLAKE2b-256 44eafc60703fd708b271e6777777f723c201f0166fc35c43367280e48244e3a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741128853-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 fe708d38a7e7e3a1e72aabbeae0b8f5c37af55f926431cf357e45af4686f8188
MD5 0fb41652cd36c27f2b0ff821745d3afc
BLAKE2b-256 3a1aadae89e34752330ea45ba71b32613c15eb907703e349bfb0fbabaf059076

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741128853-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 da89fc626c9c1547369246d7ebc8585d37a6ebbfca74ca3fa79ad6e1aa77045f
MD5 9808525d58dbb2e0d7fb179d2cb7abfa
BLAKE2b-256 9f5027f6f8505237ad9073ece2a451d9fadd2934e577fd99027d824ba69000c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741128853-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 df91bbc8affa075a2f5a85ad87bfb761506757af3936a64ce509f0d7c71b64fb
MD5 55465e7782e438850e03d8fa0a1817de
BLAKE2b-256 06ee3e7ffbcfb082bfa85079f5a330674e14d7f3b32d803dae9f66ae453e0984

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741128853-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2794854da10f89b4f2f8975738292ae06db3401a1034709596c3e7b692d690c0
MD5 bc6a23a7140e0b3db1cb323e79177d17
BLAKE2b-256 4fce5336979cbdde9fdc7bbdab011b5ddc0fa0c8346005677a770c361a6fd6bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741128853-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e5dd3d82a3c9f0938647320a83ce9a59646267c1b773b4df80b4cba2d3ce472a
MD5 41b615969bf8daee4c9d8d8b5d6dee49
BLAKE2b-256 8a57fa7e5a4f052209c02c006d36e6f461903ec61e354064c4614b0c85e48303

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