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.dev1745883134.tar.gz (853.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.dev1745883134-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.15.dev1745883134-cp313-cp313-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

stim-1.15.dev1745883134-cp313-cp313-macosx_10_13_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

stim-1.15.dev1745883134-cp312-cp312-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

stim-1.15.dev1745883134-cp312-cp312-macosx_10_13_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

stim-1.15.dev1745883134-cp311-cp311-macosx_10_9_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

stim-1.15.dev1745883134-cp310-cp310-macosx_10_9_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

stim-1.15.dev1745883134-cp39-cp39-macosx_10_9_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

stim-1.15.dev1745883134-cp38-cp38-macosx_10_9_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

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

Uploaded CPython 3.7mWindows x86-64

stim-1.15.dev1745883134-cp37-cp37m-win32.whl (2.4 MB view details)

Uploaded CPython 3.7mWindows x86

stim-1.15.dev1745883134-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.15.dev1745883134-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (5.2 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ i686

stim-1.15.dev1745883134-cp37-cp37m-macosx_10_9_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

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

Uploaded CPython 3.6mWindows x86-64

stim-1.15.dev1745883134-cp36-cp36m-win32.whl (2.4 MB view details)

Uploaded CPython 3.6mWindows x86

stim-1.15.dev1745883134-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.15.dev1745883134-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl (5.2 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ i686

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

File metadata

  • Download URL: stim-1.15.dev1745883134.tar.gz
  • Upload date:
  • Size: 853.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.dev1745883134.tar.gz
Algorithm Hash digest
SHA256 98402bf8b1324df1acef7f8b4f94bc1b6be0e15d92116a393c2c834c7e53e4d3
MD5 4fc91e4583a277a460dbb81a19a521b2
BLAKE2b-256 1177b7cae980b1214b20684926ce9ef8b11604ddc159afcd7f211ee4698dec9e

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1745883134-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1745883134-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3c2ef7ace66f9a238d50e0a2019a86d0c7cdf78a8e0b9ddb61db95764c002f9a
MD5 7d80951d30e3ef0a311271dc4f96071f
BLAKE2b-256 d6ca926b9cb583bcf448b3c4bc7af00273b817665dcd9ba9915160a4f92e1546

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1745883134-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1745883134-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f3043632ccabbfa526e413593751b7233c830d99e8162c1a38c3aca10aca2b46
MD5 ca37e8cc270532ef4cb8cb9fb88410c1
BLAKE2b-256 7fbbe5b2d586ff2d0b16de7aa7b051a215156dbf674de4ed41d68a3aefa93e65

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1745883134-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1745883134-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 edf5fb8cd89f9b69f16877c7f3e94172661fc6763e389a7dd94649d0e34c03d6
MD5 a41ee1aed10e373f0cfaed4903c64bc8
BLAKE2b-256 8ea0a66a1cf8f77528eeee6eec787ec4bcb6d8cc2cbe24e35190d83e617987b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745883134-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 8961be18e6f59d76eae3fa49b757efb419af911a8b2c8ec570cc78b9cc420981
MD5 d7a01eef7772a32082463c67a628e87e
BLAKE2b-256 f8f5bceec12902cea6400f661d9fa37344ce5eeb6640a9728ad9fa6f1fcc1e79

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745883134-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b4e7aa82d656f29b1d3e23d69e8b2a68dcbf99386c5a9bdbc591d79ab63bc787
MD5 00571f8b9bbfde4c4a7fcb02527f184c
BLAKE2b-256 d3afaf4a008febce9699b82436062867bae1ac4378deba14845945423b2b60bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745883134-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 31096e9aa6fa85fead73aca9273f96a637df5a907e7fb7d8a0f35f7ec9a8becd
MD5 361bb8ac8c25abdc887f804664ca6ec3
BLAKE2b-256 2c5565fc3b9532ca01907e507f34330d10ecb20766c062f8f1f08a7e7d439fb5

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1745883134-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1745883134-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 9c06eca54f642e89516bf855996032c0efeac326c1021fffd8fb7b47faa494e1
MD5 c54fddd4c8e3017ba74179a22938835b
BLAKE2b-256 3c732e7516016565c3c135332067475d34d9705172bc4e625c54849909a15c31

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745883134-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 9b89dd141336c03bc422a12b6bc8cd8da67f69429d14daef0074dd566319ffb4
MD5 f4f7dbbb152d010b3460cc1e36f291c4
BLAKE2b-256 b693e640959edb036b4d0c3a6819a52f79e22cef23a32043945eef85733e2495

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745883134-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 850c7c2a6039f9221cf368e5654a6c246bc3722fed3256beeb060afb63b014b4
MD5 371545e2279b386ae8357251b7efa613
BLAKE2b-256 6d51e72e09ff1626accd156d6445fd850d5f0373d322fc7ef3c45e68994e4169

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745883134-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3a82e5f93bdf3967e49052c72846f090d40f21c8ec2450d122a430f51e90e21c
MD5 4500a60163c14f5ad5a012474da48232
BLAKE2b-256 9cbf62670a3488151445bbe10c50f11d8770d3a79227f5089c3a0232309953cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745883134-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c2be5c91a8456f7e0401795dd2652eab78d2b3f32e9768a5bb30c142c3fcdf97
MD5 37f854a3c32ad0626f1491a7e96e1f41
BLAKE2b-256 cfc49021dc1e66a2339945ac5f3250353a3bc606dc10455d1d1c26987fb016af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745883134-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 4ae0bc791659f505fd170f5cf5eac82078bf68b7f32719ea74d35e8cc2547201
MD5 5c1cb3943379a081e796f08a633be220
BLAKE2b-256 0068c818b1fab44facd0a1bc7b41ff135c1c579714f1012107108bc62a8ace01

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745883134-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dbb5ed8449bc7f7c80e09ea7033ceb0241624a3dffff0cfce6af44fdd387af91
MD5 e45cb88b452886383182e899749a35f4
BLAKE2b-256 de5cfa443be9d86b8a9017655b7fa67a2740cb421e6aae8ce1d8bee0edf558e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745883134-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 de2e901d41638251f29f902e70c446d0ad0f7ba86b065482c0def709003f60a5
MD5 bc820fcbe4674446c8ce99260bae73be
BLAKE2b-256 984762799c6b1b8bcee900502afdec427f7eff395a2a355d2b5c9bfb4bad98a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745883134-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 81bb212a6f25c899d2ec6b26883565a11c5102e426405b84a7d5572d1ec62e92
MD5 edf5752c7fca59e8f47224539511d08a
BLAKE2b-256 81f114288db799e841acd1aeab3943000daadad4be020abfc1585f7ff34bdc88

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745883134-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 7ee7a86935b025f62a7123c031244ff80b7d621c2eb9d7419857d2c467bd8b1b
MD5 69f9bf8b0c1108c97b6b5dfaf80052f6
BLAKE2b-256 f4ffe54ee6c8debf1c775badc18a59811174105bac81b1c6576152c39eb76eda

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745883134-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ba556810ec37b54e7bdcbc1876a5b8cbc492e14048c66ca2641ef14020b465a7
MD5 b4aad8d99286f606efea57666c4e41dc
BLAKE2b-256 0a50857a5f01bd53255f4ebba369baefc92ea552157de3bef99cc6d801f195cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745883134-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 867b78dd7b30c21c272d507b4ef42bccd6f05da0aaaea0007d3f62852c834d67
MD5 5ddd4a69ff0330129e8cc9387fa69944
BLAKE2b-256 cd70364889fdf6da8540e239ecbf7fedd0228b0cf53927971ada588893d43cdf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745883134-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9215be6cd0fca3e5173c92f095927907c6ea91d0c3d3619948dae9ab652630eb
MD5 ccf0b9d069748ba3d2bbce571c362d51
BLAKE2b-256 92bfde32a27101c2c9bda355e70e41616ea6f6f17620b6ce9d0c300803b32342

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745883134-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 cd9617741d8331a94c6fbf8cc2fefde35f7f1dbd5917fbb21f3551a32af5fbab
MD5 827db3cf7cc6bc0fc760cd71aab9f089
BLAKE2b-256 f24ae300b56d7c08398a78070c867a52969386a1210a54e30f08807b472758d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745883134-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 32101350fe87d3fed4579f6f78c7b0cd178208ab187cb09120f98394171181b5
MD5 fee6e3c8aa2ee02d0ac21e2b00948f99
BLAKE2b-256 6b51cdb2b81d747c0ee5e5f52df67896f426f54a3e8eb1c49395e45b9ac394a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745883134-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ec7368696e1141058385890427477596e94ec9ecf30bc916369271830d3154f8
MD5 8af7e32e9e9ff7bd46ec072364196157
BLAKE2b-256 a7e58b5ec488db7df174ec966d772813d90211c188b590a978039f365acfae09

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745883134-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 dbb86c4429ef0a969086c5fa0210285c2ef0f2bc306d8758d4ed3ae0029f1f21
MD5 3cc6aa875983de851a182ca26eec61a9
BLAKE2b-256 03cc6dd2835790ad37929811c31e60d7f8ce5fef2d5ae0d5bd3b3c04ce3693c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745883134-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 04d4c55b5bd28d5e0ab406cbc7f004d2fbd1fbeed742177bde77393962ba6fa1
MD5 03342ea2a8d69d8b6659da20154163ff
BLAKE2b-256 7297f9b92c6c639771ba435751a924a93b8ba00fd9716a92d79c98a4aee2e2f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745883134-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 65601f16102ef90c6f9a95413e12ed72de4d2162515d17eb794a8babaa1f8dfb
MD5 4a7841e095ff0b61d1efdb3279486483
BLAKE2b-256 95fe190dc291d761b8ea337f363ea501a343165bdc15f4dd36b177b9fcd9fa13

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745883134-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ade3907d02748f8214f328be50f2d68b84c07c09cd2602526eff98407ad92f72
MD5 71c0436b3459748b06683bfb16cdfbd3
BLAKE2b-256 1cda89e83dd991a66b85a1727d2bfb12e7fbfae43dfc006fd7313aa942e788e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745883134-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 388da482e05e51980db0fe0cad1fd10d26259a4c431d977153487827d83e7fca
MD5 0b453719acec68c186d863b889098db6
BLAKE2b-256 52b8f5bc46a9b3367dd9d3debd78e91142df4fa0c564368df69a39f497be3c6a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745883134-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d8383e8dc485b8dcf7a18b5347bdeef71d9db02cc6f291b147e1fef760ff2184
MD5 55ca029433a1f38ed349bdfdbea83fb7
BLAKE2b-256 2e5ac31af16ae4e2d473c8edd984a48afe28a577c7c984f5a1689f5e57ffcd1e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745883134-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 e9133bd447d6477b89244e119eade9eda2471ac472cf0f774b74fd65228963f6
MD5 9a48039baed70a5e62b8c2c1d72e92bd
BLAKE2b-256 acf1a12b44d03fa24883631611c3cffccb77ee91eb7510cc3e27c9496759951d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745883134-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 8dd25788d1026170f985175010ec650a596e3180b1fd0d5ac20dfa7fbe54a9a5
MD5 561a1efa423a73694d3016f372e3ff47
BLAKE2b-256 5294a068f678d473aace67cc45f0e4e51db417ec8605eab33bc10dc1cdc8a455

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745883134-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 76f586bf2afb130c2c110087b6206d417217fb3789f8317764629608c544213c
MD5 7680ec0a33f53250c6d210018710115b
BLAKE2b-256 9723b311f42bece03cc42bac2f405b4ebc99bdf342bfe3d16b16a16b30c64034

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745883134-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0261f5a8f89e990a138a10dea9309e884406b07e264c039c5ba8ec497e074ecc
MD5 bf495949c0ad56b5f06d7d6be900aff9
BLAKE2b-256 4cc5478cd8ccac7feaab0d01c66c582cae4d4dc24dabaa24ff8d9f4bb5a721dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745883134-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4d696ffe9b8cbe148dba792988a62b3cd2143fd51a4c145a50c1cccef6afda54
MD5 2beee37cacd3873c442b6ceb33ec695a
BLAKE2b-256 0763d9fb6c66a16ccdeac62863b4e5f4c653026c2368e7aa906e176fc8adcc92

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