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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.15+ x86-64

stim-1.16.dev1773248378-cp313-cp313-win_amd64.whl (2.8 MB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

stim-1.16.dev1773248378-cp312-cp312-win_amd64.whl (2.8 MB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

stim-1.16.dev1773248378-cp311-cp311-win_amd64.whl (2.8 MB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

stim-1.16.dev1773248378-cp310-cp310-win_amd64.whl (2.8 MB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

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

File metadata

  • Download URL: stim-1.16.dev1773248378.tar.gz
  • Upload date:
  • Size: 881.9 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.dev1773248378.tar.gz
Algorithm Hash digest
SHA256 1bf2bfb9bb1da6d300c588ae67a3881d4bd8193a0af8749b45e4aafb127668f2
MD5 b27c767f2cdb1a23ee19bdba5f970ea6
BLAKE2b-256 42edfad46583bb1a44a0da6075c451923475392095379f827d7a65400e62723e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1773248378-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 e58c5bb826ceb5cf0b799d055083ed1f7b48678a03de52a6f5137c5c866c1254
MD5 9c2ec585f281bb71ca5ba451f29797cb
BLAKE2b-256 7b76c38f431fab2b73b400ba61e54100af9b087e8d50df93e4048f376e459b8c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1773248378-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 42461a063b2f795e64b7be836770687d3e2baff9b3efc862275f674ee1915d8f
MD5 ab628e4a21d83c77a7cf6e0cb2fbdee0
BLAKE2b-256 33ef1f8ea2550e10ec79771cfeaf802fe2782644fc0a1611cb73bdc64865dc72

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1773248378-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d4cd22687560cf8e606b1f04ccc96176f706ad805c9cf39304b838d9f5fbf462
MD5 b76bac68083a47108147a7916c6374a8
BLAKE2b-256 b4eff5d32dc8a8969ed33c83cb803606016af73d9e557187f486e917161aa5c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1773248378-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 e1c3adc3ae43e30d364b82f71c263e8a5eb75de8b85777545a3e1d5f33dd298e
MD5 3a7a87862a4ca27c4e0399ffa4ca2bae
BLAKE2b-256 a509a9b24917bff0613af4fd4893ca6a540e043935d2a7888ba1d8ac19247e3d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1773248378-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 61f5aa237431c8ca236eac6a93827495842e970b2c22e5ff66edc66146909b3b
MD5 fbfae431d2b4e0fb30d6db607e89c940
BLAKE2b-256 3ab976d4b797d80a0c49e223772b045360878e27e3433b2bc3b8eefdcd305ceb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1773248378-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c97115da04032a47c0e9b5c7314b80bfd5656f26a722a7b2ccb2a70638e4ccc1
MD5 eda53eef074865384bfde8f82a5a0253
BLAKE2b-256 1bbf4b66caa1fc704f1dd0367e846f3e005a54680431c17b10f045f78363410c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1773248378-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d0d542df98fdeba00b963a2be6eda443238b53eed93e942787897b77ae765ce5
MD5 03cad8eba70516d8be2d59d30c6cbaaa
BLAKE2b-256 ba971e075b60dd706978abfd6725cefd8439ced1a8090793f1a6610c5d0b6953

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1773248378-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 5e87745f21a51b7db9dd065f09d223fcf47788c1c00dff2b8e99307f64339bf1
MD5 7bb4909cc8f91d70946963917e1b351a
BLAKE2b-256 14375064d2560a7454e4d4618bd75d889fe4a1e896057e7892f8439361b4221a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1773248378-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 7168ab1eaa616f23167e51164a3e643d85b75b2f087feb1867fa670dda72b681
MD5 767b285bb61a787fc2468fdc0636a596
BLAKE2b-256 2605c70d306536e2d8dfd673b1bfeddf4de6047864e480fdc8c02c1b7dd5f1ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1773248378-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a2acff662d239342d9eb9465cb0af49b9e1e8be675266f0772dc1d217ca65a8f
MD5 760cb15996423269ab945985fa15c026
BLAKE2b-256 7edce46a92a674555a37722503c01d859de75c6f0ff91f0f3335ce9d0f54bd69

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1773248378-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 966504fe553f3767469257218792970a5e0966947b5f074d2f66642049662abf
MD5 d5b0a06d20d6a6e4fd593268e46b881c
BLAKE2b-256 2f28cccbdcce427bbd5412e72481ad51b28d443b9a7bcc75e7262d2bc97812ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1773248378-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 afe15697fb93f5e9ef5ebefa2746dd29b6b7af76610fa615bd154dc4c33842a6
MD5 cdf6629d15a8fdc7a373ec23719aa934
BLAKE2b-256 367497d1c2f925b7743516e4c38ca3f3660c5e5a9b78f125688582ec7736ed61

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1773248378-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 75b3118529b6c14c0e8efe7b168d86cbfe015f19a7f37aa210ad0c0b2dfb1803
MD5 2a4ae42eeece8a905125419d89e7b779
BLAKE2b-256 055f73a903e28845879af60f51f2cfb433cc298a800c1742bf4527767409c09f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1773248378-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9e892b512b76a25f2e409db420d1e1f44c2f0440995b0601c351d919204f065e
MD5 b1d05612f797327233e3a3fd551ff67d
BLAKE2b-256 948d641da4ff7de408e33d89e9c877ee478ccfaef5687701cd3a2a0e4981bba9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1773248378-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 01d591118fc4db0ec8d0f3e36e5f95f87a0fbe694981d0feaf9eb524727868c3
MD5 b6a80607f4b6665f1b9105dc01585760
BLAKE2b-256 7c60211027c749b2ac7adf9417ac4833de343c7ca4ff8bb25a082783fc55dbed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1773248378-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d55c6def412ee612eb35b3826bd91352282e5907e607ce64ac6882772488e490
MD5 5bac0d958d29b6d0795014896faed57b
BLAKE2b-256 523e51862cec7bbbddff5f1a6cf62434890bd4985e6e826f0723b270d1b12f22

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1773248378-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 abb776b2db2778f11a80a9f222b010d06bf68fac97274c667fd150da685bf933
MD5 c2c5670c863dae62de71d74b18c961ff
BLAKE2b-256 20dc3a0b05a23c8db8a433dbd2e2ceb105fb9f7adaa383624ff03855188decbe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1773248378-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 83e4da5ca6b86bbbf58d0ead9f3df0fdef0617cf860a5e2a6aa24e399cbc5a78
MD5 9f4e3462fbf451e15216eeb1d00a410c
BLAKE2b-256 9c32da3d633b4f9b355fd2c0118a3ebde4612bdca08321c5b1ba22cea8d6fb09

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1773248378-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c0a765f29d6160369704ed33ff966644e158e9fafa45aa85964aeec4c7f00257
MD5 7a618cf587ca465d3771d70814bacdea
BLAKE2b-256 af427540bc36b943981944a38b0e2690b6ed627ebad0620926802b4e6c3ad9be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1773248378-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c03c17a2546cee659ffb9e810231f83c4f69dc5869bd8334a4744a6a93fa37c2
MD5 7b53f1ebd22db017579670dd0eb0a2a5
BLAKE2b-256 871568dfd364662d4e200e2f22220ecadcaacf500616a797b6764d796f0a8dcc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1773248378-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 fd413ff3cdc9a483fd72e2cb4a597cc0d3c1cd61271cee19883eefa523fcc1ea
MD5 abed304f56270b3551def844b0d0305d
BLAKE2b-256 634ac343e4f101d33aa18d957d7cae12e12c5d388736701f676fa27497d3f851

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1773248378-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7af1762d78809f60de4fe17c7d3fdbbd04ac625765def114ed5ce8c1d315cadc
MD5 54bb541d6bfff103bc738d98e3169733
BLAKE2b-256 2a5ac77b335ff54280c686a3791239b6a99d2f946d9aea5cb6d6545fdb034d4b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1773248378-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d40f6914fb94f621ff3ab9d335a8c2eb916efde58363093f47fd1757bde657aa
MD5 a8234d81e969bcdb2bc1a98d8ab033eb
BLAKE2b-256 c246a5c4d2472c884fdc36e21f7c3f5d1844881580d8e1bf881a6e8c5d202716

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1773248378-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 db6743403ff9fac771356aec0d6cf380b4600cdbb58bda426745e954af16116a
MD5 f0a14523628d9facc5c5fa09f05f29d2
BLAKE2b-256 984658e5f45d213f2de424e172319fdd4bcb96660c316d0c824db4fbd869c7d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1773248378-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 beec8e4ab2688a62f6ee770ea15c4b2398b778daf43d4fdf34da2dc239772e63
MD5 98c1c54a6116916ba1f080c1b3f7b765
BLAKE2b-256 5092e520a92d2c19b6441a1665c42dce61a2250c377a226862ac53f7293c4af6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1773248378-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0de8a5023c326f3889858c5710d6fed98611384a2c9fcf1bd5b76c028ffd72a7
MD5 ca3d6b0678b9be9815585195a2723d9e
BLAKE2b-256 282194bb61747de199a1522884e040b3343ecc90f3e2bc096075509ef09bb61c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1773248378-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 aeb5eb683a62ac3cd3e6be0f4368b34bb5c5255ddb88034cfcd138171833569a
MD5 3e9e31bbc0935e6697ce3a20c1b31a29
BLAKE2b-256 1daf258ea1bc06e5e56d3da942e04902fa4db53e4064003701765c8fcfb58923

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1773248378-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 75acb62d56fa6289dbac79046922c315529c74c97f8652ec9184ed301830335d
MD5 d37be6b1107694c97e0ca57803bf489f
BLAKE2b-256 101f23215fd1bdf5915cc94399cc6bd0df97fb9fa88bc15b855f941c4ab79bc1

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