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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.15+ x86-64

stim-1.16.dev1768520142-cp313-cp313-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

stim-1.16.dev1768520142-cp311-cp311-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

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

File metadata

  • Download URL: stim-1.16.dev1768520142.tar.gz
  • Upload date:
  • Size: 877.0 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.dev1768520142.tar.gz
Algorithm Hash digest
SHA256 90b9ad9b700a52046b78ed69b7792029d19eb98eac14298449718adc112e021b
MD5 bfec164fc45d925062a52f5844b07259
BLAKE2b-256 e5c40bdf166ace5814a9574b43c09c6fdfc95559ed2d619709222442303a8ac0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768520142-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 2cf2d4f7cd04a91a50b388993c1cbce083fe82e78fd9ef65d90a7ce90eeb07d0
MD5 b963063562770c47671514acd47b0293
BLAKE2b-256 a9795b9e78e05624c0cb6f6e9874ad76e2e5d4d0dbde972dd6555c679c923d33

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768520142-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 063be92c9f4b8baa8e3f71a93aee135926b71793b3c9c56d9526e112fd8dd2f6
MD5 60d86388e6908c54722de0c820490b00
BLAKE2b-256 47057587010ce60b4d4b941d5fa51d029b929306171386ffaed98584ff315354

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768520142-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 99b82e19e8932e15954cfa8cd0e742cb30d0cde29e66751a1573302bdd764b75
MD5 0ad9a246885987d5d5bdb93b60fff01f
BLAKE2b-256 6ab67a9c067f6c2dbe74e610b1d412cef79fac4765f507a51a74708122c822d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768520142-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 f9e6d7a3bde59f417ab75a57438860574a2b9f3b4f54caaf5005d9735d363cec
MD5 3bdddc93ad86deae5ff317ae22e4fe18
BLAKE2b-256 56500b30c09ae1f6d5598a48d0c3a1558a8ac345da9a72e4c045afb50c2e61a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768520142-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 be01b0050b32b61958220e1b997007f8ffbcd3f582e2dfdeefc0f3343dbd19bd
MD5 1fd42a44173a38e872a906bd5dbaf48b
BLAKE2b-256 e3fd19fe612e1f1c5ba231a6f7e165677e6f5b099572873dd631ce018f4f75e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768520142-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a28d3cc071edd2ffd0ee3c4f1c21de7daab8cddf39be4a22f016c1baefce20b4
MD5 9a070fb82de2f7985224ed47eebb56b1
BLAKE2b-256 0156ab544a1ec964085e7f7016d78ca79fc8c1b37bc5140a7089eacc3891b246

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768520142-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 74b31b614a3511cf85185cded11260cb171cdce51efd4298377f2b770d068227
MD5 7daa775f21162efe521103adf9a41825
BLAKE2b-256 221e6241d1e4b1c4de0b4bc24ec02f27e28fcf3bfb11505788ec002bbd70389d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768520142-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 f867f97ff7d8e31ffd5e5129ef05785d3273bf7d11930b6eb35956fb1e556ba6
MD5 c68d95ff217a1c7b2b46804c9b7740c3
BLAKE2b-256 7f4dd9e1ee819dae30490043cf9e9aea359462e46a468502658b0c5481473d2d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768520142-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 64f62f33147095548a56fb581972ef6e672da2c05b50806d1a7b91556bbdb1cc
MD5 ec4d166936ebf573121df8e29273c725
BLAKE2b-256 ee107df6f8f5efac94f3814c723a405b30b6a83b47f45383bbb985e28af0beec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768520142-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e4830163c1865e84a4a58e2dcadaaf6e606ae3decb0d76d65a4de73c774d608d
MD5 032d040dba9f18691c0d8b774ece15b2
BLAKE2b-256 ff93505a5070706a7006e91edc72dbfb3541f340220cbfe2c723ec04b0ac5e89

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768520142-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 85102db7cd8b3c1133a9a7429f9adda5e1e6c7f6b84b7973a5b4248348bf9239
MD5 d8e0243e0adad7d8b7307fb7d248d38a
BLAKE2b-256 0c2144ceea69244c3065c64d3f3eabaf90c480eecc55484a176cce1ec8032073

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768520142-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 134ece9b4721f710587ab45ed611c6764d477ef87876062631bcf4a642beadbc
MD5 a86d42e9124b4d6b9c3aed808b4427c5
BLAKE2b-256 d94cb3464e8da0b2d986a4a3ce04b62b10231087352c680c406b442aad13c2ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768520142-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 4cac76df9428f8f259f836e7f519c050b159dfcb147b427b4b779eb0cbe8056c
MD5 22e5f1105d803d72fa44129a25744215
BLAKE2b-256 95647c04686742a05a7965a248f01aa1e5e5f8188ff1fec941e1a37c26545d3a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768520142-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d49572b51b6dbb4bf1b325d999eb3fd446006547530c1bf9e72679ca730886cb
MD5 98743dad42aaac8bd1df7206ff20d078
BLAKE2b-256 057cc0d8b5bc25648d2517abb4fbf5bed5de960230a671079bdfacdf033144cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768520142-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6d62f75ff3fecbebe667b93f52b6af89f48ec145f9ba2733a59772086801db96
MD5 4c4602160838b30f805a1ec4db9a8630
BLAKE2b-256 d070ebdd4beb114e105f68c1cc85f51e66a61537f60ff59227977ba78ba3dc73

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768520142-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9985febcfa4a4e95a29f9f520b050fcfa916fc05188384c468492eae15c7fd88
MD5 8dca85fe97150b30b0800c7375ebeb58
BLAKE2b-256 a0275a07695d619b9d6d48d9378e84c6224f45f004d06d253da44b92756e2ffc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768520142-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 9c1aa44f0096dbe3252774960fc9b8544a9db8e917a773f47b9a844d0f7cb2bb
MD5 f78c5993631d067607318e85fe1b0ae9
BLAKE2b-256 c17114fca868c8af955a69c7b96f039f07b4cc2e1afcf26639df49c84bc7e779

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768520142-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 67ece6f4022a114bd97c991b0024af3f932fa112cea772119719920c1a2acf72
MD5 faa338d8598fbc89a57aa50df6e0faec
BLAKE2b-256 b302fae24dd6452744d252c5b6309a5733b85159a1a6cb652eda0073aac4f48e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768520142-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9a8064760df72c70ae3e98ffb24c7839667b9a926570322c7ae2a1394ce1a1ce
MD5 285e717becab27430aff71cdadd4396c
BLAKE2b-256 dcf231df8f1e1faa972406674be6858588bd0518bc5e7296c9aa150f6f36f7ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768520142-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8f538564a365681f6284a8f3b76b86e3f714529053794d3af8e576e9019544a6
MD5 5dc5f4f1d36d591a88afe50873b4d704
BLAKE2b-256 0d0adb3e7aa7f8fe5694fcba20471a57d7bcb496fd76c438de35018a6cc09447

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768520142-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 5fb19ff987a49fedae809ae11e3c44eb96d7285b262062410a322ed709be708a
MD5 c649ee462f2caac09ab1755fece68d67
BLAKE2b-256 690d8fe7c9afce9911692750b8989e758436b42f047a65d0de76e88647b5a875

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768520142-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a889ac9f6dd71ff481c83c745cf5b99d3245e411aa08a57a22f6ebb08b9fc470
MD5 ae4904fb48cd818cfa39780f1de53736
BLAKE2b-256 73f556783e2c150583fa0e8e0a88b763134750a3fc59a96156ee5c92a223677c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768520142-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 683d0af265c2a6f90747174ba33c09e2d1d62a2805b005829f576bc872faa24a
MD5 99e91f3d048ac357ba7c495edc824414
BLAKE2b-256 5769e82901bba2840c96dcaa7fdc8d3dd2c0321ac83818745035a64576d38872

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768520142-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a55c5c2b02a7faa51c59e9557934d4dc280c3f15cbd8544dd57248d96c7bc885
MD5 b6add6cd308fdc747036456846589656
BLAKE2b-256 7364c150902fc162c696e0e099e34f1b5a3ad2fc085797c8c070e04517452564

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768520142-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 8d163d5371c737b95a20b40565135e5a8fe201cd765720b0c00eeb00ad80899e
MD5 d94c8f7c5aedc424e5bf3857eb6cb2a7
BLAKE2b-256 cda31805e141cc886fb0f4b35e8797e9c33f2a834b1b663abbe61b5ea49787c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768520142-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a052d28ec2a8ea228823fa86c82af2ce54cab6ebe02e431844973e0a52a464ee
MD5 d37bb08e18cfc56d01f607788c3984a7
BLAKE2b-256 8596512bdc6cb2e104479b151b98ca863188a80a08ca1527c3b7f72ea406a1e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768520142-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7656cf2bdac6b7337a097f76f750d2168f8bcf4c775fe6bf2dd2e57e59f4c08b
MD5 d41445dbdd8ab15d7a6392d84a49158a
BLAKE2b-256 71db251ff03d0dbd3ea4e51c02522e6e0f8da44872aa982a395884b23c96b3cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768520142-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9ad117697b0f8441862462cd7a9cb8db572d2b16c84c26a5c0b0b4bf5d87fe4c
MD5 928b230bd92d34fa98b96841da63b9f7
BLAKE2b-256 aad6598600b3b8a902955656cfbae7b6896da2e64b965985ed2fd494aaf4ed7c

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