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.16.dev1753867049.tar.gz (854.2 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.16.dev1753867049-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

stim-1.16.dev1753867049-cp313-cp313-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

stim-1.16.dev1753867049-cp313-cp313-macosx_10_13_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

stim-1.16.dev1753867049-cp312-cp312-win_amd64.whl (2.7 MB view details)

Uploaded CPython 3.12Windows x86-64

stim-1.16.dev1753867049-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

stim-1.16.dev1753867049-cp312-cp312-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

stim-1.16.dev1753867049-cp312-cp312-macosx_10_13_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

stim-1.16.dev1753867049-cp311-cp311-win_amd64.whl (2.7 MB view details)

Uploaded CPython 3.11Windows x86-64

stim-1.16.dev1753867049-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

stim-1.16.dev1753867049-cp311-cp311-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

stim-1.16.dev1753867049-cp311-cp311-macosx_10_9_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

stim-1.16.dev1753867049-cp310-cp310-win_amd64.whl (2.7 MB view details)

Uploaded CPython 3.10Windows x86-64

stim-1.16.dev1753867049-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

stim-1.16.dev1753867049-cp310-cp310-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

stim-1.16.dev1753867049-cp310-cp310-macosx_10_9_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

stim-1.16.dev1753867049-cp39-cp39-win_amd64.whl (2.7 MB view details)

Uploaded CPython 3.9Windows x86-64

stim-1.16.dev1753867049-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

stim-1.16.dev1753867049-cp39-cp39-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

stim-1.16.dev1753867049-cp39-cp39-macosx_10_9_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

stim-1.16.dev1753867049-cp38-cp38-win_amd64.whl (2.7 MB view details)

Uploaded CPython 3.8Windows x86-64

stim-1.16.dev1753867049-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

stim-1.16.dev1753867049-cp38-cp38-macosx_11_0_arm64.whl (3.5 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

stim-1.16.dev1753867049-cp38-cp38-macosx_10_9_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

stim-1.16.dev1753867049-cp37-cp37m-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.7mWindows x86-64

stim-1.16.dev1753867049-cp37-cp37m-win32.whl (2.4 MB view details)

Uploaded CPython 3.7mWindows x86

stim-1.16.dev1753867049-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

stim-1.16.dev1753867049-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (5.2 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ i686

stim-1.16.dev1753867049-cp37-cp37m-macosx_10_9_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

stim-1.16.dev1753867049-cp36-cp36m-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.6mWindows x86-64

stim-1.16.dev1753867049-cp36-cp36m-win32.whl (2.4 MB view details)

Uploaded CPython 3.6mWindows x86

stim-1.16.dev1753867049-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ x86-64

stim-1.16.dev1753867049-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl (5.2 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ i686

stim-1.16.dev1753867049-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.16.dev1753867049.tar.gz.

File metadata

  • Download URL: stim-1.16.dev1753867049.tar.gz
  • Upload date:
  • Size: 854.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for stim-1.16.dev1753867049.tar.gz
Algorithm Hash digest
SHA256 5f95c28feebd931331ee7791fa503aa91b7cb9556be76d577a5d289be692dd30
MD5 690e333c0e010c1bb04b3ad8f3aa4568
BLAKE2b-256 fcf10c214205a1bded44359c7c23423ddce044c84e830df5b05b695faaf02b5a

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1753867049-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1753867049-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ba06f25324bf8c030738038b225100908c897aab99b86b80f2011412b8809f58
MD5 e8fe8e3f7d5c74a4926b161e8b48b8b5
BLAKE2b-256 19ca8ff1dfa4e6da0eb0cbfdb9072da6e80cbf0f31b02bd90cacd92956fa4824

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1753867049-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1753867049-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8997278de9f6b65e869be5cfe6f2ea295689dbcb7df29b236d73036b9cc5c3c4
MD5 ca7ffb8538d25f06b1a74f83738393d1
BLAKE2b-256 205f754980fb85b6a610fb369dfe37c403664774ff7c6b77f724e86d72412549

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1753867049-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1753867049-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 5d8be5155415c661431acaefa759b848496415b7ab9732e5545c09ce09389581
MD5 fd1c89d5d5c66938a409ca2898669d71
BLAKE2b-256 d563e6f7c4e10367954dcfc3bf0bff41f8d9bff1e15a903b795a9289228e03da

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1753867049-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1753867049-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a7f808e34573effdb30afa474bbd14e0be6e4f92c97237337b06e699998dbefc
MD5 caa0d8cf36363b6719237f2f18e561a8
BLAKE2b-256 14467d8911864d468c2790420309deaeb8db203385ad1ddd4b474b8b20baf29a

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1753867049-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1753867049-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f0b850017478eed1758cb73233755b803d4e5dfc0d03a47a466c344ac51f3b38
MD5 f28ff1247b2fad2a0fa7bc27c4bd4c48
BLAKE2b-256 ad987d5a37d73d72d1351f3712de60093524124fa5913db0b97b0db6ad73f040

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1753867049-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1753867049-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8affaea1d0a5e862666da81a0cbfb144d49a7a9244635ed325d4edabd9f9efab
MD5 1db635ba242d7ffca88180172033160e
BLAKE2b-256 8c0eb4f7d8828ba67017997805977d4b40c225113769b2d24697058d5a8b77fa

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1753867049-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1753867049-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 0ce32f834061e42960577b5569cf54e268cc759d24bfc20811e73aa7136b1e67
MD5 1b972ca3e97fd237f94c6f944f3fc17a
BLAKE2b-256 62f838f8fa7eb8753399ecaa401d5e6bfd3f5d06c33031f7b87242fc49efc281

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1753867049-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1753867049-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 46af9c2476b353c962bbb0ae6f80a34bf2d406010c38ac4c421ddbf96f0e7eed
MD5 4b9092e95b46b1063867defc60296aa7
BLAKE2b-256 1ce8d05eba708317658bc7dacaa54efc8d84c2406ce76ca33f79c8643a88e5f9

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1753867049-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1753867049-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e2157a112ea30a6243125b75114c06e077f9c422be3ad47150d1294a0b4cba49
MD5 127e62bffac7d9d7d9779c86cbc8d82b
BLAKE2b-256 f76a8b107f1dad2a8d12cd899491ba37de712fb385f99269dfeaa05bc021f34c

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1753867049-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1753867049-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f38a93c2ecf8e8a139a8f572c7eb5b2a15bb6f2528c3ebf80690f4c84846ae3f
MD5 6731c41da66b6897b09c25618d9c3427
BLAKE2b-256 294f415bd69c57e22df2fa5cc4d885d13a953e1fe99555f28b84c228b38670bc

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1753867049-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1753867049-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 046ea7b17213a6c15b60f55f8ba5d2df6080547aebf5fef89fea56908cc0f549
MD5 864de1b081855f8909f9390691188d83
BLAKE2b-256 27e7b88383ad3f5192435eae9781656d2e9b733421b5e629d3277eccdd15fd38

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1753867049-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1753867049-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 8ccce359afd397a3af52b25600d488917e72d307d856cf9bc550e696b141b380
MD5 a06be8b17c6275c149f8709629686f1f
BLAKE2b-256 7dbcf3153c01e6cac31a3e35320d4dfa34304ae0308a650fd0305112324b7818

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1753867049-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1753867049-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 39b4d0da5fb534dab4102dc3b22e8e1ce57d8782780938ed4e9984f7c259df07
MD5 b2ac3954050a91aacd2cdfb4eb7400b0
BLAKE2b-256 da2b5f5d79db8c5028eacfb0ba23e0b78a9a2670b04f5a5f7c8c477b599132e1

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1753867049-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1753867049-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 21747d486c313066a2f3895cee0493f02eeaaedd7ce1cb4b19c88f45f72d4a7b
MD5 dcee53f9f95d6752c8e30010f6540903
BLAKE2b-256 f2bce67400cff2ef5c77b34c9c7e94759b56c86e8eb913abde3542e188645e92

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1753867049-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1753867049-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e3e5394414c0a8ba585e2064075e05e7917c725c60222b88301256241ee6506f
MD5 f79135f1fc435701aef149eee81abfbd
BLAKE2b-256 14db02fa881ce013171cd8d81d96a3f89d9e407075b703b614f8831277cf89de

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1753867049-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1753867049-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 d1c16b8edf876a19360c72439b73cb6ec4c4a43cd4974befdcff9e99e501c097
MD5 8aa63f74729c17308e0f4b14f590a2d0
BLAKE2b-256 ee1271926168f73d106f211fbef8f5425a2237ec8fc0ae6d446033b64bacc7bc

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1753867049-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1753867049-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b1b90948df3a3122f8f9e0a1af37367b163a38290feb9a6bb4415f6c7b8582bb
MD5 1f43b308588f0eddc0160968098c20fb
BLAKE2b-256 1b63d22ff1621ea6dca544189ef30e6d589bb3ebb655042034b91bad235ffef2

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1753867049-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1753867049-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7b345f4b6fbc7ba2296aea2b6f95d13dc9ac328aeee85121eb62c4ef9c8d926e
MD5 d38737dc67218448fb7966b71d9c1eef
BLAKE2b-256 bf58cd4fa19e5d8e7523c4dc5a1ba41550a708d50e1ecc320c721f05d9daa51f

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1753867049-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1753867049-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 92dc970020264cd6288203ae05241f95de9e2db6e1b7664111e95a9593eeb1b2
MD5 3ddd428603ef50491b002fe3aa602e4b
BLAKE2b-256 d1f2076987d14d82a30f5708ea96f3f6e76cc8ebe0b6beceeeab6b17a38f5a61

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1753867049-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1753867049-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 541934a7dd60964765f356c2b85055e58d9cdc983ccee4d4457beb4b05de4db3
MD5 b0bff7202d3b9a7854b1dc4310b52dd5
BLAKE2b-256 a5d14fa5be921b2e01c95f789df8566c7bf555f777a77ef54c2d81fed3f4a152

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1753867049-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1753867049-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 006c8e20049fd7e1367fd46e6fac647ec2f283dc3dc912a4cb88a49df13676b2
MD5 6799690481c00ddf7b8aaa5fac388870
BLAKE2b-256 1262cf754ca9cdca754986bdc3c8e3540b2664c1a3fd34b0f22ea55884f3d26a

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1753867049-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1753867049-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 689bdf06d1b2e47ae7c7874851ddba211ef7f1a02798f9c5db8f33dd2e089d55
MD5 98bb56e2f80fd0486aaa8839bcabf79d
BLAKE2b-256 5a96936b06472b4967df9169392f0024e0593fdd2e9bf9ede0717ea8197a0a94

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1753867049-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1753867049-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 af174e76d897f6efe16941b0c8be23b6af56342093a3ceaeab02640777c3992d
MD5 a5f94fd0fd1770c9ceb4b63ad1099708
BLAKE2b-256 859afb4479b4867521fd59ce4dd0d17361dc96ba356fb8a98d10fc29f7801f32

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1753867049-cp37-cp37m-win_amd64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1753867049-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 007e661d4b0f7f9805c36be0b147b8449061932059721d7231591ddf14a37112
MD5 3c4bb42f90c4a9db77c195330ed320ce
BLAKE2b-256 552a3863623a7b08dae31de561fbd6655c3c7170e88ed9eeef64652de1f057d0

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1753867049-cp37-cp37m-win32.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1753867049-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 eae19cb92fe0a6d77fa7963aaab15990efe18d4b844fd2e60213c123e7ed8ce6
MD5 8c7715562a2324dba022ca70c16bfdbb
BLAKE2b-256 7a4f3b9bfd8f9207e6be0ad57066692a92bd04435461eefcae5e2257a12efc8d

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1753867049-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1753867049-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9df727d438f6b3e1417a4e2311980086ae999f5804d6dd64bc57dd25d3127af6
MD5 3f40e172195a18231f2a2dfb32e027f9
BLAKE2b-256 4cba3f83f0103b98862ba7b584a23e44b220c05d0b16294437d7f5e2b22a0e1e

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1753867049-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1753867049-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2f70fe492da289c2e5a48e4c36e939701bb4ce8029383ac2c0621e22280ea05f
MD5 0d68875b0d557c6ab26b44fd87410e1d
BLAKE2b-256 75c1693d386183fa0e08a4397c9bff72be86fcacb57d1671a3cf7a5e70636b4b

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1753867049-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1753867049-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9ce3d6dbccb8f92ce11cfbdfdfe774337d327b7ac00e7815bbc6aa9d71bf5505
MD5 422da785c0c6ef39543fd907f988be7c
BLAKE2b-256 39fb7c97b97a62fefac40fee88f8aae92305d25860f56ae165d4b3b2a0cce3b0

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1753867049-cp36-cp36m-win_amd64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1753867049-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 d8db64e2f880106f1feec3cfda4feb991c60e33d6fec4f3a50365fe5711afc76
MD5 42515a8658bbf72c3fced82a22698731
BLAKE2b-256 418d54bcee4eb68bb0835cceab4feeb4ed0baab7dc4f33b596e29b372958df06

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1753867049-cp36-cp36m-win32.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1753867049-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 864c425f7b48c59d6f38965c9ed8cac04a8a6be1340c58fca2fb809b09e9a096
MD5 a5d29198b6d33120a4e60c41fcb900dc
BLAKE2b-256 c98d9ca7a00ac25c7915ad2fc740136ffa01f38f6a82e695aa0b2ffc5d833966

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1753867049-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1753867049-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 13abb5232ef7b416fcde4dcac048d20ad8beb21296d49bcc9a4c9f998368e858
MD5 4aadc5fa52cbb34fea9fce9ed6a12980
BLAKE2b-256 1f2ccadc4ff9b4f7bb7015af7f514b44983da85fc3cbd2245d6b1cc919e22481

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1753867049-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1753867049-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4e5081533f9a787bc84b429dc0bfdaee58f2cfd754bf1e9ea8ef808655a311d3
MD5 cd18b89b19c2f18a72f3f147e4864533
BLAKE2b-256 d8a558f105c2cd094a205c896f47fd20fc5e54f7f9b5b38a6a443b40e192b436

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1753867049-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1753867049-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fd91fc8e71b036bd17769bb60c41dae520a4f17a719447f482aca4af1b34f373
MD5 ce8abf01821ceaee7ccf14a0db6b3616
BLAKE2b-256 8aeea5fff9d10e6c153e56e1b0e5ca92b4b11f8d17b73826b09e9f1a5650ebcb

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