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

Uploaded CPython 3.14Windows x86-64

stim-1.16.dev1768963940-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.dev1768963940-cp314-cp314-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

stim-1.16.dev1768963940-cp314-cp314-macosx_10_15_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

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

Uploaded CPython 3.13Windows x86-64

stim-1.16.dev1768963940-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.dev1768963940-cp313-cp313-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

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

Uploaded CPython 3.12Windows x86-64

stim-1.16.dev1768963940-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.dev1768963940-cp312-cp312-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows x86-64

stim-1.16.dev1768963940-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.dev1768963940-cp311-cp311-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows x86-64

stim-1.16.dev1768963940-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.dev1768963940-cp310-cp310-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows x86-64

stim-1.16.dev1768963940-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.dev1768963940-cp39-cp39-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

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

Uploaded CPython 3.8Windows x86-64

stim-1.16.dev1768963940-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.dev1768963940-cp38-cp38-macosx_11_0_arm64.whl (3.6 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

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

File metadata

  • Download URL: stim-1.16.dev1768963940.tar.gz
  • Upload date:
  • Size: 881.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.dev1768963940.tar.gz
Algorithm Hash digest
SHA256 4568d18d5e720811627c40aeaaf1cab32528e70a5974b5e2cc0a959e6c01617f
MD5 525b25272779c0c5cec47f93df754559
BLAKE2b-256 c658869cdcfaf297fcd40e98283c0a51ef19a32ad517a79efd127724ad15e15f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768963940-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 ed4656f6a0168e49511e31fc27a46991a5b4021ff558f138df5ad67855dc8eb4
MD5 3dbf23e0c06c548a4788aad4d0ce6e97
BLAKE2b-256 f607d6d62b3f814d6e17b66016bf4b2f30b9f0d277aec22615fb4041cbb5a75c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768963940-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9e77bcd1c1e5db2f4049508fc0407eb4f9e5641962780d96d9334d42fbfd7e54
MD5 c12e11f8d00dfd3730d07f636e9ac570
BLAKE2b-256 2b0a59dc987497fc0581e3410fdfafb45e7260814cc39b5a9013ea3329f4fa1b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768963940-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5204e809d439dc7a048b2bd6229f120d04cf31ac8f35b68cee9e74c6e4622ba8
MD5 8cf3225d6e3df0281fead34b41076d48
BLAKE2b-256 ee071445e6631d6ab40bf19eeafafd82ce5f0f78572bc3d3584c5943dc57b6d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768963940-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 191280e8e746045c283f16153aa0f8e82e20a0c8ed5b5878639b2990e1f1c105
MD5 3e88241096fc62523da317823b34b9d1
BLAKE2b-256 df1c19dd827d223eaad779a8688cef923019612f10d18fe9629eecc79a6483c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768963940-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 46cec92a6aa92aae21da5f4f5ccae02a190b5126a58e77c04a7a7bc613e6b551
MD5 a06ab46f0b16871b14740a3aef76587c
BLAKE2b-256 1d369bdbc8c3891896d70a7a902908a9e73427cd92737253204e724dc3d7e925

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768963940-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4fd9ce30e4ecedc5180ba9d69727007e401a21b4f1c72036bad63599ad9ae733
MD5 6fd7893cfcea8abc5822d55e7561bd73
BLAKE2b-256 be63d5321e231522588d6725b3da54721eebf0fe1e691332b53532f8f657d6e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768963940-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f69b10142a6fdb5cebdb0daa7cfb89690891238580156710f233c58571673547
MD5 a45b8719a1169025cbab417dafdd4d95
BLAKE2b-256 8976638c9f8b94b94793b6c7e0d6fd0dc9f0456ed2533573d4feacba11663303

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768963940-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 1b444afd368fbeddec1cd44f86f2e98f3f86b1b31bc82c27c43d553436ab9216
MD5 d37fd3c8509c65520bfdc2c3b19c416c
BLAKE2b-256 e56ccfc419770840bf113c26188aa28e0ee6f9248529d1619483b1445fe0fb47

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768963940-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 18dd75ddc98cc61a3efaeb8c497d94f8b66e3f75e148fc49938ae389d295762c
MD5 4e25a5020663156dcdcd9a6dc413ccc3
BLAKE2b-256 4e689dd008864be652073917179b247de1939482e218dca2ee66b1ee4e132c33

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768963940-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0e3f480ec29129cca13b1d7f03b6387b9aa0f6f7201331c90c754a7c37e1960f
MD5 5819ff0713b8946a8c55c82574e3d9fd
BLAKE2b-256 454a2aafde91901fc8348a42bd48964b8d794dfdd8f9162a94e49e0038c65241

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768963940-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7984c3d2602709f171cfe07c33ffc144967de2442c7c4ca6b579da74618c3a2a
MD5 1dcb75b298debb9007ccb88006d8cd62
BLAKE2b-256 9952589e3c4ff5ed1b75cbf4c1a7e4232da7d0252da132ea80af01aca217cf8d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768963940-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 bbbfeff1f83a2e8c7f89e4c2bbd3f171c8cdc0ff7c7d7433ba8ef69850e8f74c
MD5 e62e713a5e1448fbfc7da9f30dcf6b6c
BLAKE2b-256 2bbbea9978081ea094e09880b5149ee9e5df17d69ec6a311d3b4ad4819eb9cde

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768963940-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 4bcc4ad1904e8d584d176b3cba49a73c347ba7aa178965d501f870aa47fc6332
MD5 f35a28a94f88a330b088d819ab98eb8a
BLAKE2b-256 ba816fee1f99f6b450394c3dee5763b598b637d5fbd7549f79986d1c33bc4a37

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768963940-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d5d7739f48c0cc8d8d0390c185431ed51999961783dba6dfe699087a20d8ec2b
MD5 d35f618de0da25c72087135115a49671
BLAKE2b-256 3740766354f6851149f81ef1e9720e926382c82cce887c91714d3cb2d3cab701

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768963940-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dd02688b72da8e544e620cadd299689530324af1d245bfcf8f9cbfcbd2897548
MD5 03710bd91c05d0e786d6cce036f2d426
BLAKE2b-256 e60a7e84b77d8f1f5fc9651c1912a16580a15dd5fe518f8587cd92ea646cbe19

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768963940-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cb390dba91ce2d1f44cc9bc62987a3fb8184ab04a63c859b149b7e5c6217a97b
MD5 e65dd9b6b85f4c5b0591a524874113fa
BLAKE2b-256 f9b737e9f8a1c54e8a4ecdaf87973705d0a782e9871386e61e67260955bae02e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768963940-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d0217e6e818f68dccc5535242d1ac8eed93f7eb4d5f9c40c462bb3fe74c49321
MD5 c7cfb5e1fed682d7d0f5e5244e825520
BLAKE2b-256 5ac0107d0fb739e3e0c4eb350c296cead21c80b68f76eeff99df2037bf955849

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768963940-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a6d641adfc186b227ca15277fb61c078b04a9fb15db507567fc3313ab83572b7
MD5 a0f27d1fa66f3c11a7175c26a9a93cf8
BLAKE2b-256 01efe7fbb657e5106badb1f018a7779185aaad4f4f1f62b4063058b77feb5f34

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768963940-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 88ca747c62796415bb07252252132addd3ee85519342b8defd18698c96c9ba17
MD5 fbab3a953d676924f8fac026c6f39b0f
BLAKE2b-256 2e3d7b27adaa4010f748ffcad20d16ff8c0528f19e29789ff73b7cac34ad2fd9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768963940-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f356c8ed3aa6d5f55294947bdf242a0678e4b7d00f8ad20cc3fe6acbba3da62c
MD5 0fa171d93775dd4fd013f6597d3b63fb
BLAKE2b-256 84d056dcda8485b25ca8b01129bfac11924110591fc3d60e82f89715ddf76806

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768963940-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 2cb2b69b4b0e4b5769d48ecc1b2dd5472c469cb5b9a0aacce27ffd595f2e83bc
MD5 3a27dfc9d09e711430474f668713f11d
BLAKE2b-256 61d5ac2e0b6f81bac3aa4178f795d698f2b4d9b0f7452481c5b359f23eab4e95

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768963940-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8509b05c10e1b0b6921803dc082c59a70708532a42921cd126c06a5197b15ea7
MD5 575557113830aebff4f56eed36a0f88c
BLAKE2b-256 41def0bf12680697c636c9de1c7d08c68a6fddad1bf41e592548e629f4d2c8e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768963940-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0ad619709befb55fd3fb7e0b5a4336dc4566490d83dbd4e3a4c4bfdab18775ff
MD5 a233ee142d9a4c90abb20ee0585e1637
BLAKE2b-256 bfd1fd725dcb0fe31f66a3775619ca3a480213310a8182b4b4dee88f9e664d7f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768963940-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 932616c46c9da8e05277ceb72e20a453d96b9b5273abd012e5127f7cd5199776
MD5 59e64481941125253095365df6e32234
BLAKE2b-256 7c92a74365c16547245937384b4d928c698fb9700e9673dc976c3e852025931c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768963940-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 c3925cf87fdde1ecf257a461a16d58028981992f7ef88fb2938c7961ae688b87
MD5 2d8e8dfecd5dc541cefd8b772cd42d68
BLAKE2b-256 9cbe672f50fb066ea48ada031540884ddb5812f0b8ddd72778c16f773befc5a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768963940-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8eacdfd19c467ef101a83ef7fe64c2db7e94b1ef3b76b922ae73b4f437f8caa9
MD5 5ad0e3b5389f4f9f5575c0bccc165527
BLAKE2b-256 f12c10e2a672a2cd2ff9065b417f99957cae148a7a9ef7dc0cc354c175ec0598

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768963940-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d7c836d0ea574ea3aaa6e9d6ad260b979b9a07c734278753555e38020a5901dd
MD5 d9ae40970d1727772d20f234b7b2932b
BLAKE2b-256 e5ae8f7713ff62a0eb0eb9366e474a6b8d4fafee5e63bf7ef67fcb750e649acf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768963940-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8bb6d6cc0615752cb44fe5ab2a52d8e3f0d6ecbc493264fb13c31df27b452f74
MD5 35e82628b926144e68ceee8b7dc20583
BLAKE2b-256 740b30777e5ecaa1b044aaae5b994f8fec44713d2c4a52e2ab64a7d0b3eb9f92

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