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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.12 Windows x86-64

stim-1.15.dev1727166840-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.7 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.12 macOS 11.0+ ARM64

stim-1.15.dev1727166840-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.dev1727166840-cp311-cp311-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.11 Windows x86-64

stim-1.15.dev1727166840-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.7 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

stim-1.15.dev1727166840-cp311-cp311-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

stim-1.15.dev1727166840-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.dev1727166840-cp310-cp310-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.10 Windows x86-64

stim-1.15.dev1727166840-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.7 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

stim-1.15.dev1727166840-cp310-cp310-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

stim-1.15.dev1727166840-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.dev1727166840-cp39-cp39-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.9 Windows x86-64

stim-1.15.dev1727166840-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.7 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

stim-1.15.dev1727166840-cp39-cp39-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

stim-1.15.dev1727166840-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.dev1727166840-cp38-cp38-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.8 Windows x86-64

stim-1.15.dev1727166840-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.7 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

stim-1.15.dev1727166840-cp38-cp38-macosx_11_0_arm64.whl (3.3 MB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

stim-1.15.dev1727166840-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.dev1727166840-cp37-cp37m-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

stim-1.15.dev1727166840-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.7 MB view details)

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

stim-1.15.dev1727166840-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.dev1727166840-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.dev1727166840-cp36-cp36m-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.6m Windows x86

stim-1.15.dev1727166840-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.7 MB view details)

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

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

File metadata

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

File hashes

Hashes for stim-1.15.dev1727166840.tar.gz
Algorithm Hash digest
SHA256 fdb0e48a0f55855788af232cbc53648047a0c65478d2dbbaeec624d4a4cd3fbb
MD5 242ac97b6a7e8c6bfb6e261ab4a5000d
BLAKE2b-256 70f739e83e3d1f65164dfee511bb31cb7ab337a9ce74578a9111f7f80862d300

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1727166840-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 7e3e3766540f8d2c4c413f2de1523a9311813238e92c5f8f19c8da3f6dea6a5a
MD5 2a61a88d532013f3de3d82028701ebbe
BLAKE2b-256 111299bc0179c086c931fbf836295857ebb15546656e8eed3a15018d2770a006

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1727166840-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7eb1264e64c2a6b4acabab72bb94874d8f9345d5b4e8c6c4748e9a0838fe4c01
MD5 392234ef12dade1810cb9d1b5604b284
BLAKE2b-256 dadc1125ab5b6e3d71f3f3f59c53f5ea017627861ae885b3c2e8aea7e251e7a7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1727166840-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d859a5a563b7469b92bd672a283249b79c4b4a978c40fde451c4656af6d96449
MD5 534690faecd75d5f4792bfb5df47ff49
BLAKE2b-256 40853bdf744dfbde25c7104692ae4f48c6cbd8afa5104edc4677766782afbadf

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1727166840-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a6231609c3e3b5449767e30ce398330daa158ec36d68cf584b80de85d69b40f1
MD5 35a51a7857396e23f4f1156bdde0a59a
BLAKE2b-256 8ddb59da18004f72e619a6a2d1d8abb8c8b4459b7ea07c781f495415278d8bf1

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1727166840-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c789637910398b4289d811fcf7330299c0d2e68c5433a1ba41ce9ef7c33047dc
MD5 33c13ff8d0cd86f649c18323047a2eb6
BLAKE2b-256 0f99845cde6a03e0b9dab1e681bf2ac864a6589f2542c4252a206cc998cf1b52

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1727166840-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bce44c5bfd6e2d76bb7572a02b924c9104978c02e9400c612c8c854c3ae4242f
MD5 69dd2759b1ae4b2bf8d55d84c25fb396
BLAKE2b-256 5e48663a83b8684dd9c01edadfdff2e7ab1ec6088e0ac93fece9da295c12f95b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1727166840-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 06bf0979243c98ef7f4b91cb910ac3f609ad32c76c459810b704c88591048c4e
MD5 b3dd57d331ef4464a62190ff71d8ea75
BLAKE2b-256 ea7e70400d4baa913b2f5613690fc2af53aeb4a29848b74cba3c1c5192dc0aa2

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1727166840-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 074b19c9c27b0c8ea48a1408e6d1993d1981842886e648db60d10cef2747b60c
MD5 b091b3a4272ffd0cec90cf61ffa5b317
BLAKE2b-256 41b84eddddde2e423e7f4e237f93be2a06405c95eb0c87e587037c70dc893520

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1727166840-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e4995ffcb28b82c293812ee239722e0f74b5d615db6c1518303be8a25c7466c7
MD5 380c08c632c778952c6e78ef5112c2a3
BLAKE2b-256 1296f6b69030a60982ae8d16be3b69fe14681142a03096de5e104ee3c9385fc7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1727166840-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 254c74e69f57f6080472c15295d62e172b938a31bfa86d84cd3fcfd564ecc8a9
MD5 de46f4dff23144320f8cb1a73c6c4f83
BLAKE2b-256 175d8389b34267ba9262a1cf874383ba3f2a7f6799b359f6bed0b4904391fc89

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1727166840-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c4ad02f742febcc1359de9e041f43b2601f4dd7cd87aed0d65e18d5decdff434
MD5 b8eb71f5222a544b0906854faa8e4d65
BLAKE2b-256 bfd16cbe17e9cdb5dad7f309eec79287ef67ad8e8b5cfcb7461f2a691966b983

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1727166840-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 57a3f37b9edced5d0607f4d058b193582691eeb0f8c0056e35e97d594e6b5f21
MD5 816f95278fb7d77de935550c7a4d67a7
BLAKE2b-256 c66b47a50d8c550d7b2cd1cb5ad45b205f870a51e631c61ba789fb7feab45cca

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1727166840-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 0bd8f28e8cfbeddcc08ef929b1c37de2438caf67dcb40227caf5ec916bdcaadd
MD5 a98093ede82a209deb6cf580d34a6982
BLAKE2b-256 af8b490a898471540765bdc6eba7339aed9d3083433ca93836d121745a0060e5

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1727166840-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4384916eb240286040de98fd870f1ceba878c5015806c3a0d21aca66a760672e
MD5 94828b87faa1cd228736230c6c514ecf
BLAKE2b-256 1a5607251e75c42d51b9b6b9d821455614771184b53f881635510d0222089748

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1727166840-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4e304570b227fcce1124c22cc826a97d931faf51f11202a11c4000c27dd949ad
MD5 53ea522d59e0509565c4836e6b2ae3a7
BLAKE2b-256 1fb2a2bd627b2dc12338f5a06e4f18ae1443837000820dd3154e61d6ba2614be

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1727166840-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 37332c0d1ca05a5274bed3da652005a8987dbbed991f28bedf3bf9c14118d8a8
MD5 8ba15f8b06af6294f2c32ad9ec1a978c
BLAKE2b-256 f6d2c06378b35ae85b83c9626474be6a6a14f5170716b4ca9871b2a9e5816a4c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1727166840-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 78309e854f872d02e69ce18ed462dcf79565e1adfa68876f20d318b4325df33d
MD5 3f4f0718154caa7f5c16384c48e3f4e8
BLAKE2b-256 993b2087b52ab23589d33ec002674301e79069e38d274c0fdd340930aa06f29b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1727166840-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 09e9fa37907899cc53712e5db4b57a881be1af11b95b46dcc05c6c3594c437ad
MD5 11d6d452d29056beb75c074c90254af9
BLAKE2b-256 9b48b5e0a99f7012060d922f98ec9161cb3d9410b108e6e7a49221b15a49184a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1727166840-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8641c454e130bcf22578c4c8f3f26d616467ae27a206b18778a397075d0fc628
MD5 3d72433c881b601ff2c2aca36ef889f4
BLAKE2b-256 e937b32d506f933fc55e15360339d1c78196b3e2e423482ebd9234f1c6f4fb84

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1727166840-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e7920b0ad03a3b44aead6e3bd78cf92cb51bd739c7ae4ba3a71ed1b830310a2c
MD5 55120526286ae72b86da739b61fe8990
BLAKE2b-256 044e8564232312285afb8e6e80c038c2e5e567025b75a1e2b7cb9254282ba53d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1727166840-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 e965fbc38653c7a9f45ea6fa08f2ac3fcc0e8cc3d542747645fed0d8d2b47151
MD5 4b88f33b569d091d82a4d2588ece6499
BLAKE2b-256 2dddfb11cfbcc630ed6bad50a8f00e1c17c55ad2b6bc33e3e92a3524c5085e3a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1727166840-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 5e7eaf8f5cf9f869b9e955524ca132c4d263893fdea6c24f1a61cfb551b81b9f
MD5 072e3ef521a96e8e98b6e291aedce8c8
BLAKE2b-256 9d4719ea8fb8beb587f4643d1e1ef04d91a76f36a37cfea7018fcb43827891b3

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1727166840-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 73da25234a2933bc656e90e228cb3264a188e28c46006153184fbcaf70d60d69
MD5 97a9585b5108cf3f09d473ac7ebf2057
BLAKE2b-256 55621ccab8e47508be96df3ab318a7beac9d3f152cee242bc02dd1e8cfd8effb

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1727166840-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a927089637cb70216ebb84d969f14804c1f398e189c5f90371f03289e6d2196b
MD5 484341b7a608151cbd02b38dfd7fa540
BLAKE2b-256 5699ecc12f880da56427da7fe064d45def0a26a7079e8ee6d48aea74c51e29d0

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1727166840-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 db60ca0811e13c5a1fc9eaa51214647baef9b65d87d2e04dc628120a3d5ec826
MD5 08fffcf9ba3fb419681afe50274da946
BLAKE2b-256 8a91b612e770b34dac43fd3ad24236c2aa1da4a65e80e642337abc1edd5ab180

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1727166840-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 179f4dfa439edb5b1acd05ce2f0e65d441746ee99fb8c48dc3aec3c75284cfd2
MD5 8cfe9332f1e5b8c0a82f852c2cd6ba82
BLAKE2b-256 9de640164f86c857c14437d64a073501f8eae3d1ed548d6cb45f542f3b6fc76e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1727166840-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 1fc59a268ee87d716adc9e5bcab0900a4cfefa20f9c39c5cd724863a4a3de348
MD5 92fdacf64ff79608cfef44f705f8d8b0
BLAKE2b-256 5657a9b150e32df7ed1b0b6d3c4017b1d03ba6ff035272be92cb441b1e199efd

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1727166840-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b5259389c7f7423be64b9aad5325b3cb2a8bd6b6f165a380ac9607c8d685c400
MD5 fb49aa7a18c2169b398e339dc1c1a4d4
BLAKE2b-256 b1c4620004929f329179f79998f464a2e21649d7773f339b1e0287ea8249baa3

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1727166840-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 346545ef7d5681f03fe564d0be51f7642a18d3a5c6b9da9f517f21cdfa3c2609
MD5 ef9f288b9eaab5fa08473b1d0d2e6921
BLAKE2b-256 8465ff868910d6b4946ee777fcbaf70b78633983e45450d053d54761cbfcb4d0

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1727166840-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 72290b5720724e0de3a8f4aa1cea2dda166d187b1f7bb46f0875decb931ebb5f
MD5 19565c3dbf2343bbd936e34f7b4bdd0b
BLAKE2b-256 b8066ff7970ace0985b5850df22940fc1f988733d49389f3cb1048dad3820e42

See more details on using hashes here.

Provenance

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