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.dev1768461476.tar.gz (876.3 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.dev1768461476-cp314-cp314-win_amd64.whl (2.8 MB view details)

Uploaded CPython 3.14Windows x86-64

stim-1.16.dev1768461476-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (5.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

stim-1.16.dev1768461476-cp314-cp314-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

stim-1.16.dev1768461476-cp314-cp314-macosx_10_15_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

stim-1.16.dev1768461476-cp313-cp313-win_amd64.whl (2.7 MB view details)

Uploaded CPython 3.13Windows x86-64

stim-1.16.dev1768461476-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (5.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

stim-1.16.dev1768461476-cp313-cp313-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

stim-1.16.dev1768461476-cp313-cp313-macosx_10_13_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

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

Uploaded CPython 3.12Windows x86-64

stim-1.16.dev1768461476-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (5.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

stim-1.16.dev1768461476-cp312-cp312-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

stim-1.16.dev1768461476-cp312-cp312-macosx_10_13_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows x86-64

stim-1.16.dev1768461476-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

stim-1.16.dev1768461476-cp311-cp311-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

stim-1.16.dev1768461476-cp310-cp310-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.10Windows x86-64

stim-1.16.dev1768461476-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

stim-1.16.dev1768461476-cp310-cp310-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

stim-1.16.dev1768461476-cp39-cp39-win_amd64.whl (2.8 MB view details)

Uploaded CPython 3.9Windows x86-64

stim-1.16.dev1768461476-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

stim-1.16.dev1768461476-cp39-cp39-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

stim-1.16.dev1768461476-cp38-cp38-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.8Windows x86-64

stim-1.16.dev1768461476-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

stim-1.16.dev1768461476-cp38-cp38-macosx_11_0_arm64.whl (3.6 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

stim-1.16.dev1768461476-cp38-cp38-macosx_10_9_x86_64.whl (3.9 MB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

File details

Details for the file stim-1.16.dev1768461476.tar.gz.

File metadata

  • Download URL: stim-1.16.dev1768461476.tar.gz
  • Upload date:
  • Size: 876.3 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.dev1768461476.tar.gz
Algorithm Hash digest
SHA256 6634421541af94cced659b49e8814323849f90255980f6f88de097360e6415d7
MD5 0582ffada50493d2d18606acea97caec
BLAKE2b-256 34569189c0cac25d195d8f8f88c65ebdbc6b0fa0b6e7ba00c073f2ba4f26095e

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1768461476-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1768461476-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 493fc7251b44147c431c6b7467a1fd1d32a3959528a73bf3b3de23b5c7bfd95d
MD5 01fafead2bccdd6443ff18cbea6e7ecc
BLAKE2b-256 6142c2f5f5290c7e3fdf80af6f9d9df337a3fce94365c5b7d7204b4521b982df

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1768461476-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1768461476-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 820083c92c1126c3665204b8db0ef042ddf419a331060e6dccbe289bcc6197f8
MD5 0b006dc1bc5ee138575dea12f3896d09
BLAKE2b-256 bd4a6794ebe7801b0852d8ac8fc71f04f06f88d3edbb42ecfad3d71fb36ddd58

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1768461476-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1768461476-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 13e70803c7dbfe197605d19a75d75ce9bb77c8fb056f011f3c5e55cfce2969a8
MD5 12efdf6d2c9e51a40d6c28102765cd91
BLAKE2b-256 68f47114849159204b6887b54c685025c42bde30b8aff50e8b28bda4bbab8062

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1768461476-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1768461476-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 944ca788b016017f69e9e555659a4a27b039816b75f7ac4215c2333531cb5d54
MD5 8634407a96c2a0a37fc76d7b3265091d
BLAKE2b-256 842ec47f4be37209703b24ad7d2cceffff35c69c83fe1d210b505a7f352f5426

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1768461476-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1768461476-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 b926d532e119fbcc7765d102e1ac6f6e54f38adf756597375518c767b256fa1f
MD5 632e5a4ad3ac4b3b791f1d737ff14542
BLAKE2b-256 37f0c79513003df884fff26d720f773ca04eea404aba4a0416eb92d5472cfcdb

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1768461476-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1768461476-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 835732391ce9ac7c8244c0ff360ce9b020bd5d60de61aeec3b9c0c4871bc8093
MD5 119625e2867f4631c5203fe21ad5d7fc
BLAKE2b-256 5c307b386aa865f094db6f0a0c22d332bf076ab9d712a28279abc4fd27078c2f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768461476-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 15dc9064a95f195879a8619386de20c613944efb81281bab56e8bca46f993c72
MD5 08d5fa1f0de4fe1d582fa12a22cafa7b
BLAKE2b-256 ca8f2826e3ed7b5078db7304e679396c8c93f8d4f413ee07a8e81737cb94d391

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768461476-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 238a6c7c9cb87662744796e58ba4f3718996e07fcd68b4aa56ff0bddd0c78746
MD5 176e07069364ee8934ec86c39b40ccc2
BLAKE2b-256 167a641e9b381eb35085e84de28d2b1def2cc014bff0b4fd1a6383b5334abad9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768461476-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ac13e9036ddab1fc908d83b476de2a260bb1d1a9b07360f738d349391e684edd
MD5 7047fac66e63ee8dd299aa590dfbb17a
BLAKE2b-256 bdcd128fc8e295774d8d9a212e38821890c9e31ea60913b2bda5dc03d6d88e79

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1768461476-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1768461476-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 871f6479aefdd9c93864dc2c60dc725d2b5c3e9d600d6f3984d08fe2c3ff34df
MD5 183cf74f65292f0e3bf87f06683c131d
BLAKE2b-256 cdc1eb0c062232ed3f698d106f6cd8e82d8ca1f7fc5654040fb5bcbcf094ba38

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768461476-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4476b9d51c13bb56a3ef8030151513fedacfd4c3493fc0de64e5f963cf91c3a1
MD5 44ee9d889f431f5e33fa09704aa844ff
BLAKE2b-256 0076666b39dab1d0fd134fa025ca7c47b60d3db3355d20774f035c05b6eac7a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768461476-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 01ac474b53f1bd64a99e37fc8e127ff884bd302d8c78e1232d8886ed21e48602
MD5 6b09fdd979995e8cc209bcee1c72088a
BLAKE2b-256 352f0ac3d87ef0714cf6509ed7413d7b273282e8dcebb963fa96b1d22c95e095

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768461476-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b76354541ea922111f6c638b0c5015e2d18663948d33fccf95aea389b9f046a0
MD5 221e43d7fa0b8d07ce290ffeedb8e924
BLAKE2b-256 07eee2405fbdb72f83b82fb288ff65f3a5da3aed767ab391263d688545dd60cb

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1768461476-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1768461476-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 eee6382174fa196829cb0e34c380f65d091cbf149e0d901ef852dc7c044ab028
MD5 e7d5d58fe40b83a8d7056b5329aa28e2
BLAKE2b-256 8f6badf4a7c90d6cb999df74f70d5586f8dd9070ffb77e996a61c6fd6f09cc84

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768461476-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7e19a7f7830e9c718a4a3f8f33ab2c0f09f3172254dfe7768cc70100ea8851f5
MD5 a93baaa551cb248444e587a48f90a0f8
BLAKE2b-256 b6794b4b5b7a667e58bd591174baf5d9380844d7d41606c1ba9bd6daff13d3cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768461476-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 07d1dd013b8eeb7ae1c5edee27b068cca1b598ed3e46a951e3e444cd9b450156
MD5 436dbf567a77ed0416e351912fe87bf2
BLAKE2b-256 d22db457d1f60ee07796a93e949d3300c763916c48b6db819952ee64975087f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768461476-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 173049e0ad43095b356cefa59f3b000f3488b7100e454060fe38138db31ad9cd
MD5 0d26ae684c4393212251c23bb1d2918a
BLAKE2b-256 ca06efd20be52f642af0d8d5f90404435d7d4fee5ef89f103a976eb422bdb643

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1768461476-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1768461476-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 009d59fc33b2fe75349dfafe2e25034b3a89e24a7e0d0b1431339e7e71372934
MD5 6e56dc08248067d42283a288e577418f
BLAKE2b-256 1778e02275377de648a13cf94ec019ab3b4bad1faac355a9ca39e4d4338c845b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768461476-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9d3177c4705438d2e9179030b59f429370e1b7281935e9c84beef1be005ab3cd
MD5 2e28d309c2c58db874510fe078244748
BLAKE2b-256 be66e01d9d3e98b54d86ee0f9f31da005961ef114b897d6f716389f1fe5c2f7a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768461476-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ba39bf6776630a47f87f8e3b3c99e3e167ba6248c4f64facc39671c047086748
MD5 f3d02b6413f81236b9d4b5ad81b0c273
BLAKE2b-256 29cffd60928420591f72978d729cb24cdac4cfd8d69a2fd068b37ca8cc5b83fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768461476-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 6181d5f25867e9f144af9d860c8d1c118ad0fb6e9a84f1d18f52c025f88ca944
MD5 5ec78728ee39eb84a3cda86b4683026e
BLAKE2b-256 877f726de3a5cee4eb56d0ecc1dd96cd39f4481f7024776acf308fd483144192

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1768461476-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1768461476-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2559a55db00a3409b5d116b1292ded5308a81c0312133fef54cc395c88949acd
MD5 4b07a0f57fd852b346be98ec09f97c9c
BLAKE2b-256 964c325beb35cb3723a28ba84c3ccaebfa12aff41e8e5a21d8a25cfd152c7d05

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768461476-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1dc976f91818b059a86cb097d226aca0cfb69ab3c8e9f45a75db2374966d56cb
MD5 0f266264ed1f825e3b4b083dc54e936e
BLAKE2b-256 568a4d5b00053f24cae1258cc8ebc638c6ad1775305c6df323f12ba4cbe0643b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768461476-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 439500ebce1cfb605a5ce32d1c2285ad981e23f7e672d8cc9435cfc0ddb99b6b
MD5 dd1f931c953d17e7bafbaa0956b60863
BLAKE2b-256 785a18df19d7a6d45360e186ca5adb3d0816a2339ac840101d7f393c2c9a48ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768461476-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 9800415c802c86da4a0e47a2719549de68f7dbc0ca6507a11993c608e34948f3
MD5 438edbb0f53dd1dab859acbc72d16f42
BLAKE2b-256 f7491ef0dd84aaadc3554f3a7d644e2562a555dfdb5b7bcea87ca821e2e11725

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1768461476-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1768461476-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cbed3d15e48a3f7d4f7b3e43e593ca1858e25876f8d620b7007f1b5a2c2ab510
MD5 eab09911055e5f9e3b7dc22a12a19748
BLAKE2b-256 33914ffa0efe9f5b29f9cf87378de1a4b9960aa6020c79c0c04d1225de5eaacc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768461476-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f278f3393b7be750c5bd7f4b31061daa3fbd52d595e33e114713da964bb880a4
MD5 191ecad4b1b692ca742ad1a712cd030e
BLAKE2b-256 01a60cc23cc75843d0b4a0da36f4311b87e22ebb8dd73a14d67cf6ed347cc64a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768461476-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 86a055a3cbd643699582e1c3dfdcac02b23590024150b7d71b462206c0811ac7
MD5 4adf071b928bfec6ef82d4adbf229560
BLAKE2b-256 f133c90d71d32a1659ad3c26dd2033fed3cff390f33ea7cb13609a6e46c5c558

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