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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.9+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

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

Uploaded CPython 3.8macOS 10.9+ x86-64

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

Uploaded CPython 3.7mWindows x86-64

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

Uploaded CPython 3.7mWindows x86

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

Uploaded CPython 3.7mmacOS 10.9+ x86-64

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

Uploaded CPython 3.6mWindows x86-64

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

Uploaded CPython 3.6mWindows x86

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

File metadata

  • Download URL: stim-1.15.dev1741040425.tar.gz
  • Upload date:
  • Size: 828.9 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.dev1741040425.tar.gz
Algorithm Hash digest
SHA256 9c9eb617fd7961ec92e8eba45bed76dc38673f0ab95c47ae7b8176bbd9a0cfb4
MD5 84ee462fb2358f82f726d31281bc4249
BLAKE2b-256 edc6abc60c4433cb41f0517059b34937921799eef1678bcbef7a7018e50f205a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741040425-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e1f2321a10672b3baf82ec791660706e5c6a8c0abe82c0cc07108c1b81b07d24
MD5 45937b9cdad5382faeb759d694bbb1a8
BLAKE2b-256 7b066b3988c6149e8a29c5a2ceae7fc5f767bcbc28fb6544ab8f512af533a3d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741040425-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b7eaa6100ec5333a51330e2e44facbd441ae308c008c949bb666ef5c86eb7ff1
MD5 2d0587b25e5a7f19ae694a622c2ea06d
BLAKE2b-256 6e0e29fd8f7687ddd067be02b98e9b8913b6e5cb363be3b0fc5593aa8211203d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741040425-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ff3884e5d624146e170571b8b7c8d898a7d43e832238e4f0b42b2996aef86e8a
MD5 f9ff7ef6f85e80686f5d1d3686e25df7
BLAKE2b-256 0062e7fc47d24def6bba299ef20b1112ea6dcdf44132e9c746ffe08b9dde32cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741040425-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 20e61238571ef0a54faefe8003a4decbdec332e457381ccfcf2bbb17ec3ea19a
MD5 6882aedd31e508f220c5df512ac0f070
BLAKE2b-256 53ea792e342aeefee075f3be8e0b010cc6a308c01b4cc9493cbc6e34a653d310

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741040425-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e9d202ae741c91137323ba8d1214693fac070cc62a10e8cb48b03692534dbfe4
MD5 d8ff82de95ac96aa2d9a207d8d1a3c6d
BLAKE2b-256 5291212d44342d92c798151455ee633cb70b41478d81c0b1ef25da0916a4d594

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741040425-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5a81ec6cebcc987cb91ad6394055c6e851061a0fc7fddaa67af9bbb9b3bbe0fd
MD5 acb18d1eeb2ad25ae224e9a12a9628a8
BLAKE2b-256 6301b53ef60f786723c61a58d7410ea9c6f098bf1e7e1c861cf3d3c46fd0c465

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741040425-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d6058af0ae57610020e7734e9bbbe10b4522ae79fd2acecbd3984a909fada0e9
MD5 ab94e50d01b325dbcd110278aefe707e
BLAKE2b-256 15b9ed848ae48c7725da3fc7612fc383be95f8b649785f930225fa0fd4554641

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741040425-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 249279c69e22e29de1f703c5493b551cf13d18dace2b5cdb96055cf44ac9c61e
MD5 6003cfe876c984144f75dac75c6ad72e
BLAKE2b-256 f6c8d74448266d29fbffe972fa665abadd83ee582597bf7e9790e04a75ab9269

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741040425-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b4917a4f03b40b6c235266f97c9f5610a2236fc277206e5d82ff5df1ae4cf786
MD5 826e17ff9ac02ecaa8a4d87f7d3cbe4f
BLAKE2b-256 6e7bf852a8477b902880eee72ca6601f91737333984362b37eb442934f034879

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741040425-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ebcf51c14c406318c5d9e7449517ebade7ed1270631beb9805545117f4bd30a2
MD5 43204c1246162dd943de45bf58f8d55f
BLAKE2b-256 c45b49f81b6a6f19fd83141774e2ddabf12b84d5a4cda7b6395bf461a49b3f4d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741040425-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 43db4462b820fa289463b0ea0c31570435d47765f659c33aff1500e5496fb565
MD5 6c5be186a4d21084e6cfc5086654e463
BLAKE2b-256 ebda336fa862c63bb965f506b2e03b5c8634e5cc80e1c71b9092b01623af1f44

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741040425-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3aa04b60f339f0c287f66a456146adf18ffbed78e74d5fde0889621ce1fa81ee
MD5 1294c5f8407f759a1e00e109f6ec32b8
BLAKE2b-256 4d712b42f487f8e7bda3514a1cffc2d8eef211a206fd56c5f9cae62699c16f73

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741040425-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 a5b9f64746c9c259f8b06a4de088eed555600e2c06436569d3b462d14bcbf83d
MD5 3d8c9c4704cf1e7cdf201dbfc85e33d3
BLAKE2b-256 a94a74588139ba8d4cd371c7c2dd54a09213d54356295e38ebd03e2c6d687461

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741040425-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e105c71abf551b26496cace1b2bdd8f8f870d0639661fb8216d41a5681d2574a
MD5 ec7815f6818e3c1b5520061e3fa038e4
BLAKE2b-256 d0f7f7483c54ad9c8e7b9a92381da082f2226d05bb2214f0c8a477970ecfa377

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741040425-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 52c0c0be0005a4bd8c24c24ae56bec4aef2c5adec9c0a022369f17aafd75f257
MD5 4e4e63ae9d839e759e8f473129d3e2ed
BLAKE2b-256 f38602f33d53398c9311fb9c5f40663b48ab30ae63e9b29daf19020e254e74ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741040425-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 09634deeaae066af9174a2086e6792cbd6ad4e4473dd5956fceb295f74a1f3d5
MD5 ddd610245efb19592c98a7769b1b59c5
BLAKE2b-256 4304206ae6e8b23be8212c42cd6cc6d4a39f7bf08cfb7d0551b446ece22fcf84

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741040425-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 6d34e5824fec23663fc40f2b7d988766dd908f54961d6da3d8a48f6070fb1885
MD5 8083665f819655588fc1f36c646279b5
BLAKE2b-256 06bee316a46efbe151eed30fa4c50b279f5c6c59b84143ec0072e5c5b19aa220

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741040425-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5ea5ff47153241184731784ae975d5ed7b0ee6b7b9966516f7431e715bad8a22
MD5 69bf87202bff0c86d39c5f614bfb78f9
BLAKE2b-256 3d026769f16a67668b313e465b77c89661b93fbb4879348fd2f30c03995ddc06

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741040425-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 84de6ffcbabe3a72ebaa13e824f88dd2c36e3011a2d90bf3f8ffa448e2c2d84a
MD5 a2812b7ed10e0d58b2f81799d4199f48
BLAKE2b-256 99e6c158f8cee16fe195fb2822812240ecfe57da102d79dab53bf26bd08858fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741040425-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c150b4a2df022beece77794602c5e5d408b2489cd7e8a8221415dbd484923c5d
MD5 dabbe88678a5bde4284f261573e000b3
BLAKE2b-256 cbbfc2f887c77b3d064811c2717732c6d6f50b1490b58c5e67acbbfb2d1ef850

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741040425-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 e812a2c827738be2ffa5715c96e1b8fe33d3a05d6ed130a402b6f6875dba0250
MD5 4963888ed75862b11514a8e4aee36540
BLAKE2b-256 06ff0d8402f1e027fb3c4c60c45f4c77bf57b6325a49d938b5e0be9201b75251

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741040425-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 487b0f1167198f65973153058bf887d1e1046b16c8b0c220d169c2bd98a58df7
MD5 15d63f6f19a5f594c202ae14ce9a5049
BLAKE2b-256 a80ddb64dcd76de77e9b31967e8c7a0c0d5d4ff1c844eaccf4161797b5313d21

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741040425-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 42d4ef238f7f88cc17d857f8e93514717fd292b9542662aeee1d03ca2ca87ae7
MD5 7af9bc1dcfd82342a0230b52a6853b75
BLAKE2b-256 b6bfa2186ffb4a323f0a3a1edb89f83b9d4a74ff786716c1f63753365ae3ece1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741040425-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a1a57318141789f0e039cf2bdb760f7103460672896e6beaedbff5978d0d2c7b
MD5 55a5e82f1805ec3131e7018161fe94c9
BLAKE2b-256 0ec1d37368b982377bcced5068d3c92fe327a262cdba607059d7622739a5c3bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741040425-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e649672108ff6c3ce78f8efb786e1396dca4ba33a383392314a5d539203a6205
MD5 ef957298c5e7ed801cf40bd99a37f6e7
BLAKE2b-256 8659bf1058f3150fa3e85f7c0ab21553f5c9e0260903607427e2b4822d535cde

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741040425-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 eaeecc0f424dc809daa25cddd547755890609cff25d8875a01875c6a438dac9c
MD5 854264f764e393cc3b08ee8070cfa63d
BLAKE2b-256 82eef498aeb3616df3fd626822a5b0caf751c2cc5de32ff924ec61a86c8022d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741040425-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 b8e94fcf37d35526d69854ca97b231c7e07c08392ed7601b842535e6e0ffa6cf
MD5 fdbee11f4c907073a9e330e4866e247e
BLAKE2b-256 33eace78b9a2e9f85776768c6c2c01533f2215500d1aac4652a20ec788f23dd2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741040425-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d1aa8acd9ef07a183c35091bca40ce89a51e3fcd2906ff8cc1b55bed3c3304a9
MD5 960f24f96a7d6c8baf6f95d2580030ea
BLAKE2b-256 5969550a6ce97fa2a6720397f38b963e2631bb1be34b72e886bbba66f78d115e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741040425-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9548186b1109433c56d69892109c71e7f4fd4afa22c46ed0e3a6a7d24fcf61c0
MD5 76370ce2ca72418172b533536b914ae3
BLAKE2b-256 0e545ef6df172b5a60234c358edd02a4ba4d1891b3f555fa68fb02e9fda6ed68

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741040425-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c7eca25967dab8f9313717674f7b0d032900f6f202545db93bb6b91749f3a362
MD5 10f58a4950d8f96d8c969a3553517418
BLAKE2b-256 3038c9f67ffe2d8ac858224662d8d31bf244747c4e92481e534583a9ffff41f2

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