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.dev1745383124.tar.gz (846.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.dev1745383124-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

stim-1.15.dev1745383124-cp313-cp313-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

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

Uploaded CPython 3.12Windows x86-64

stim-1.15.dev1745383124-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

stim-1.15.dev1745383124-cp38-cp38-macosx_10_9_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

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

Uploaded CPython 3.7mWindows x86-64

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

Uploaded CPython 3.7mWindows x86

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

Uploaded CPython 3.7mmacOS 10.9+ x86-64

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

Uploaded CPython 3.6mWindows x86-64

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

Uploaded CPython 3.6mWindows x86

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

File metadata

  • Download URL: stim-1.15.dev1745383124.tar.gz
  • Upload date:
  • Size: 846.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.dev1745383124.tar.gz
Algorithm Hash digest
SHA256 2c467d5ce1c683ea8d2078fb5b120296ecfebca802173a6d955c6d44a2b561bb
MD5 d95d14df4307fe2e55af12ff5e688227
BLAKE2b-256 762d81ba4e2d0760a074fbd91ad77be120ff65b5d196d1563bb1cc865f6e95cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745383124-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 51decabc50d5003e0d5500f619a976d30f79e33eae0a32143fcdab29c0a56a19
MD5 c8d96ae9220b4030d0740f662dc8d33f
BLAKE2b-256 47e882d98d2864e20cd7a1088120d91315e6aca288338f1fbe760487168d6fd0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745383124-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8a78014038687ed351e9f586a83581bd6285d2bf571d3e3ff40f0c98280b1def
MD5 80ad4c43a1972e5ff13e91da26632cf6
BLAKE2b-256 b9de98b75da9b414fe37ab6c1de2e1501d35a15b002369b80a10124b316b6acf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745383124-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 7c13281e055a0e99a4d3b7dff96a3535ec674444911c5867450d80cb9b68c3d9
MD5 05a7c87d8c4832bfd7a930246cbd0786
BLAKE2b-256 cd60ab5a1625b60b458f457cfa46ac40a665abb9194c0d7d2cc9b98971da17d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745383124-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b38e9bcac5afd24903f5c3970ebd9743188c2f55790ac0c9217332b5250d07dd
MD5 de2e08c251f8724f8fd40bb0a552611b
BLAKE2b-256 af2206055ce1a6e908b9ccc2df1599fb8c5a7b83add3885d2df192b44c5d2aba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745383124-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 699308a3bd6242af2bfbe945225d8c5400069f5f757c2a8dad70e752a71d145b
MD5 9d0f9248de74668e09f2a24eda6de535
BLAKE2b-256 db44643681e25e2afa164527a7abc18965e50b2a459e2cee6478fc59b681e92b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745383124-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 32867b808c98f2e2a989306c1b847db7000fb679f240be5d9c91d86134ba7b48
MD5 f34caee882859eef3abc655bef1a7017
BLAKE2b-256 9b209d1a7ab2dd63ff37f3efb9fbc834de3fe2f2f35ba495fd57e0e2b97da09b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745383124-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 1420a5781c50d3cd61af2ba273a037f7a716f91ec9ccd6313d3c8d7392276b57
MD5 0dfcce3fab39feb759bb174b9ccb2978
BLAKE2b-256 b76ba35ae0206580baec82dd5fa96992fd2c73c7ece62e03e35a727f5bb37e63

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745383124-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 6af9d0a19487d76beea19134041b177b8d5a81887e73da66892c3064adb11ae9
MD5 b0d662a3c67d2667e7360cfbf4bac781
BLAKE2b-256 c035f075c4db9a1cc7466923f7e625d8c943a9dcb12ecf21b6eedd8dc6169480

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745383124-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 500586b861f97ead7fed3a85f2f9adce50eee9754c3e016c75f72952281c3dac
MD5 d9ae4c59dbbe437dc95c65f043c52853
BLAKE2b-256 90df07c2597c420fe3750ccda76ef81fc2fc4ddf560e316e8aa619be3542a52a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745383124-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7d69f3e073aa688564518eb49893b68a8a2f1d8f3bafff76b454a6dc52dc4774
MD5 0b98414f98513470624f2bf0139f230e
BLAKE2b-256 9ba15c327435605706740c162b1bb174ea1150101962183b8bf1f95e557f89a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745383124-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9e0b9b34a8459a87f3f1bf2ec9e959c23e7b8fac269925694561765e1e43dadf
MD5 d96ced55c639371ce276586ecc2729f7
BLAKE2b-256 e86b53a71f7c419de69e623dffe4f78e263311dca99c61d3242a080fb5d27778

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745383124-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 862c72b4062b58c1591d11b74d2c1d69ae61c1fd92426c0369c257aaa8dd7498
MD5 64b742714f426742748ab91c0a0fab2a
BLAKE2b-256 b5942c00faa571a59f5a796fb0a1845631908526fb0d870b137a5a5b6b111b9f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745383124-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 22fb29347e86a513bca1e42fd2aac9fd57716cb80628a01a0613a5b9e195fc3b
MD5 5b77e83d707aa8c68c99da305b969324
BLAKE2b-256 52d2663f7af12580f4a4a0de59266f2165f651566d27acc6bbf0a388b3f0a926

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745383124-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 07ca4e701927a1f31bdafd27d721809c0bd1ae8b33782f1ceb74030ac86ad4c2
MD5 bfce6d7c39d852dd7a75a09d583c1b1a
BLAKE2b-256 4ba4cbef5ff2ea4c53fa38b7949e622af16f8ca76616f72616c41cd220411865

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745383124-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ca6386a61d63f2db2ded71167432335efd6c0946eb3d63be65ac716a8b29c311
MD5 da200b2cfbb43a5914e2dfbfd1107a74
BLAKE2b-256 fdb576497c1bf3497b7ebe29520edd41231ade742b49a29fa2f041e678828ab2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745383124-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 85c75e105becc5a09a45dba7a656e961d6945787b9123132b9550fd15194e91d
MD5 203305e5aca753df6f64343b442f04e3
BLAKE2b-256 69da6a677b7a6ba49e4f4241a8d15931d6f43fc7be008bdc65d1053270e29b7d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745383124-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 db8f095aa14f80b288926eca375c7882ae50e8a8db1b36221ed53e08fca25eb5
MD5 9239014d50e659be843b0b5a10c6b0b6
BLAKE2b-256 1395865e6d1175217a8b0548b377378235f3bfdaa9b7a57d269e8f36727a3580

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745383124-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 49f54322e97a9623b1f6b1f3986ed21f6766d1105065b94e59faeffad8024a16
MD5 d9286bd337b8cdf0b5192b4274e91672
BLAKE2b-256 b4a1b09bf36293f5b565221faf8a4537ad2528d875d6e7df8a611f28353ab397

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745383124-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3a889f7d5a9df193c6fcd8871e08c1af49a7ee101d9c8549cf2069efa7781006
MD5 5d6e40ac27f062dd27a037c9a6e73e7b
BLAKE2b-256 e9b894ebb6540132c583b9e13374b3dbb8060a9dc78242d32d045a2f1a15163b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745383124-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 daeb3e840fe51eb30039ce3f93b3c77f456bebe62126ed9557bfefe35ec7c579
MD5 61bf6eb4705b44d9a310df0ead13a5b4
BLAKE2b-256 c37cb9ceb3479c0544f990bb2c313e7030a11735085665ab8a825b5bda738944

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745383124-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c2febd9d041189190a11c5fda5049d060f8a40b5da1c45677f4a6dff6f61794c
MD5 938b56a4e0440adf7e5a438b0b3b1231
BLAKE2b-256 500a0d6e6747c1a18f7bb88619b16c497e2dd6520d67778f7b7958b682df5c72

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745383124-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6d68969a531824327b5a8e95fee3ed622e58c4caa8aa2dc5e570fbd9c5f7e4df
MD5 f16e701cff9a32ab98abdfe6cdb264ee
BLAKE2b-256 bab210c375585aa60a053d9ce00bc106fe42514f1cd5e8370be8e4c1585f0065

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745383124-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 063f27629e209acf49edccea8174baba395e994fe038b38b7442c8ac899cc41a
MD5 aff1580d699a27c293ff72910cf311f1
BLAKE2b-256 635d8bab641a84f786c9d4aed72923ed651b59b8cb782adcc2c653ec6652d7f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745383124-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 b1c006de45ada8cfd4ade00e48e63330b764212b9651d7d5d3318b064f5a3768
MD5 b937efcae03f873b43899da41cd50061
BLAKE2b-256 bd6aa7395a694ef5765b225d351e068d82cff4c66e5e67b2d6312ccedd5af465

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745383124-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 7fb99d5fef1344a9592576915d21aac0f2358438a02db76037356b12dcae0432
MD5 f50230cedc95f7e8b6b887f9ce56e848
BLAKE2b-256 d3ad1c3f5eb3523226e6b3597e30697e760434402b6ddcec64fd06bacc153971

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745383124-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ac6ee3d3a15a8ad5b8dee292e31a10247847f772a0a2030cd961b439b2def657
MD5 dc002741c46027a88257643c77f4586e
BLAKE2b-256 b7e13da743b528855854657b1d5c475340dd703a87eb16b19e3caceef34b81c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745383124-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b940127c47e7b4acc0f5f02878ab8e32dc678967f91cdc5afa414ec15a9dca3f
MD5 3e6a03194d05c93e443248af7946a54b
BLAKE2b-256 4d7e45fafd9a7d48a8ce5c6f1823776a0b612c0eb2ec77d06d9e6bdde2c362c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745383124-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c1e11b9cf40e238acd5f072ceb36668199872f20cbb1a7e550e3a75adedbf066
MD5 86801e6cf7f39394f14632e5ead4eb6d
BLAKE2b-256 f37dd0e492a5c5d84109ae54dda947308eb7afeb1151c2388216637b99d9149d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745383124-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 7d5818aa5f1b10500c164a1a3132ddaaad18059e6cac22c89b27c85db1114ca9
MD5 cb0ac8b57b1cc70c117af8642408e1c9
BLAKE2b-256 a6be76848a33219a68e454b24c926fc16be3b4729a5269d84f9caa7609566ee9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745383124-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 0ddb2f1316ef44fac1662bda78e9113054a3db285cd470546fb83084bf1aeaf8
MD5 d6d6d6dbc4d6f68260b1b82d46bcdbaf
BLAKE2b-256 3f570cbabd39f60bfa844770296149421603ae8f65b938d0def17a57485ce260

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745383124-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2d148c26d64142ae6e205e09ccec0735f746e8666a55a2cc233d58a6bc255ff9
MD5 8e1d21cea98142e63a71df40f89e11a6
BLAKE2b-256 f672f155a8e42a4622bb3b4196fb1e71037713acd0ae34a242ec8de095abd2c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745383124-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ecc0ece1b23e31fbefd18443563150dd0040b6e75d68858c71838bea47e45147
MD5 dfc708ec8dd1aadd750b11f3b31eedd1
BLAKE2b-256 6f24a469392c8fab9d9b33bc1047dfd1c9b8b1e2e3be42f3456f69a67cadb309

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745383124-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f21f189ada0c651615a665ce1ab351804365e27d6e4c5b15a67924eaf3549890
MD5 a46b1a4312eada9224186cb23ffbf4f4
BLAKE2b-256 2184f587c325b396cdc51f158f5895cdf7f1feae2a6f76cb94b9677a7d049f6a

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