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

Uploaded CPython 3.14Windows x86-64

stim-1.16.dev1768340014-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (5.2 MB view details)

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

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.15+ x86-64

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

Uploaded CPython 3.13Windows x86-64

stim-1.16.dev1768340014-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (5.2 MB view details)

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

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

Uploaded CPython 3.13macOS 11.0+ ARM64

stim-1.16.dev1768340014-cp313-cp313-macosx_10_13_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

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

Uploaded CPython 3.12Windows x86-64

stim-1.16.dev1768340014-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (5.2 MB view details)

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

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

Uploaded CPython 3.12macOS 11.0+ ARM64

stim-1.16.dev1768340014-cp312-cp312-macosx_10_13_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows x86-64

stim-1.16.dev1768340014-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (5.1 MB view details)

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

stim-1.16.dev1768340014-cp311-cp311-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows x86-64

stim-1.16.dev1768340014-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (5.1 MB view details)

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

stim-1.16.dev1768340014-cp310-cp310-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows x86-64

stim-1.16.dev1768340014-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (5.1 MB view details)

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

stim-1.16.dev1768340014-cp39-cp39-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

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

Uploaded CPython 3.8Windows x86-64

stim-1.16.dev1768340014-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (5.1 MB view details)

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

stim-1.16.dev1768340014-cp38-cp38-macosx_11_0_arm64.whl (3.5 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

stim-1.16.dev1768340014-cp38-cp38-macosx_10_9_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: stim-1.16.dev1768340014.tar.gz
  • Upload date:
  • Size: 865.6 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.dev1768340014.tar.gz
Algorithm Hash digest
SHA256 b2c926732db327a6446ec92828d9403b53d06b5d77c87a44392fd034eb3d7a14
MD5 1ac517b24ef22b6ee88cf04307e6302d
BLAKE2b-256 c6d785a6aa92a848dd5d641065a3acbbec390973094b1a856bda0108079e6c67

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768340014-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 a79c99a070941c2edfa8b5d67979ebb0d33cefa8090de1a06bb4523c1025ae89
MD5 e5b6284603f6ea15be52a657451e8656
BLAKE2b-256 d13b4b491b1af26986413b5852494eae1c938f9aa2ca34594a22c0e1bb393292

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768340014-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d0994a1519113597dd7ba457ec91d1291d27f5addef4177c52eeab7ea6b23cc3
MD5 12554d209cb1089412ab0733345c77e3
BLAKE2b-256 992adcfd9ccd21943f1230deb50ac430a57857c1a80d65101062577adb144df3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768340014-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8bf122ee9f9c5bdee883cf709903aa8283b1bc18791bf6297e4a3611469c8fea
MD5 6e1fea31a37f69f72dcf006dd670fd9e
BLAKE2b-256 7697b8a069b48af39467f2a70035cf18727ef6d7e5bf5fcd01535360896e9701

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768340014-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 2dd11cb22448a765723399bd55b1c7ac9203ca08182339bbc2855825922d63ab
MD5 cb3639e5cf3b294c022cbad96a64a9b2
BLAKE2b-256 efa88ef0a7c5c541945e4a790669413f5e1593190bf01ff0ab942f21f048a37b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768340014-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 2d87f44eae6d08793bbf3247bbba81625c3e18972e6c44803ba748d2c2453831
MD5 d56d2856354896c4c87851f7fdadcd3c
BLAKE2b-256 4b8939ff42c5caac1cf56b54ca0b47d97ca1e8f30fdcb0f965ad6f0974fc3764

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768340014-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6743e4e21cd62ebd59b3aa406ca2003ae2165230141658b9ed9972f6d01aed30
MD5 fc3e25f9295fff03385d00ba8517a211
BLAKE2b-256 3a1d9da046a0f5bf1d06f3733fa62ff994f6c96137a50a5421218350d7e757cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768340014-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c0440dbec6be977298f1891ef1f250b76b43221e82eddf1f5ca8197d50a6d963
MD5 d5cea234060627d53702a1ad667ec210
BLAKE2b-256 a1c60a5f6d628335346d20ac186eb742b9547b2f9c7a368647f43ec0b5509b07

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768340014-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 65644fb191d55fc05e94b88e83d7ddbc2fa8d9785458a49dc9c26ef7ddcbf272
MD5 bbe2138851ee2049323c250adf172642
BLAKE2b-256 4c3aee41c36f0e1926630d04b94a40186e2ade1f6f3f1682c77732278f2e3492

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768340014-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 688717117154dc5b2af831fef649164b0dd4fcec7708f5c9e4cb01352f2fec08
MD5 e4129a75740f1797f0f0d2d7b982bc17
BLAKE2b-256 8e89c5eafdf4d64b11744b92b9c943aa24febac898ab8fb1fead0b0b2cd79f32

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768340014-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 159570f61774822a20725cd8378cd50a396dca3e21890ff1b10d1df574832c9e
MD5 e1172cfd4aefb67845011d00708c3b27
BLAKE2b-256 517c1d24b2099845066eb9cac1bf90389895d1a478c37c59c9ad987adbf7ae23

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768340014-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b979b687a2dd6cf2b2ca2aa3a06495622a4b79672655cd41671824e07b4f5227
MD5 8db6d016d59764f9e0e1e324edf55b56
BLAKE2b-256 5804d7d878733e0ae38f74b565192488f3019cafee15cbfeb8252b26dbcb7df5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768340014-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 d371b7e64312c317d6986519336edac648246d56bf2a058e01b477696d250712
MD5 4914b5cda86a801b6ddf581c32d8486b
BLAKE2b-256 f1c76c21e11e71c8f6163201b736b429689953993ed14350b2e1c25959ff99ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768340014-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 1fd895d9c132fc3c2fe7c2f18e01d49055c03c7ebdbc1c3bb909e13f60e5bcbc
MD5 cf6de39a6ad802cdb687412284acb99b
BLAKE2b-256 774c00b97bd9da1029a26001fb7059b5e3fe63b7fac7542c2999b217723b267d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768340014-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bb70d1bf6faade5203e4f1bd9e6d9da8a0b82d3e0bea0f4f149e099fc7a60153
MD5 b3cd1ad9b1f775f4c9c22e8457bf5148
BLAKE2b-256 16b1550574013b4a2b47fa7eaa127f33cec697660abdca41b95008ed12e6f69a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768340014-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7de482312c1c60e9458432d21c8cfd282f2a38b9d4cb70dda181b5ed392c0443
MD5 89dfe12b89e5a0bdb8432e954c88dca0
BLAKE2b-256 b479322c3e2f6617d4b38d2ae4c89c16fda0ab8b5276ee6e1c35ce159d2e7aa3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768340014-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4a3252517228fca4a70747d9351704cb0a66cb4348b4dc15802b76d6c1bdd10f
MD5 1872e3ee5a4f354c86bc09851790d57a
BLAKE2b-256 35a192e3874dfd5811b0d5eb4e6186d3d41deb2969a355646f8de0986e8f9d20

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768340014-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 2b4f33f1c266c936eabbebd78e4d4e30ca11e090ee8a70239119ad78acb5a137
MD5 fdc6ae565512d54c67839aad652e2805
BLAKE2b-256 d1feed836793a4bcdc333e73e7d03fa97ec24dbf8a4b6a476ed875a450680539

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768340014-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ebf0d5b40baf5f8bdbf685e78216ff2a0fe9cd83f34fbc3cf745b9bbcd22f99a
MD5 2b42c730a306eda2f00c61cda23d724b
BLAKE2b-256 3f817e41e40bede0c4533c16bcf57f7452ea1dd041ba5eb3cfdfd9a4f2c1dca9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768340014-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 53b36e5fd204b44d92482f425f5966158dfb57911f7b2bc2aaa10ee0f55523e5
MD5 3a61055933f35af00346f506c5bd1b0c
BLAKE2b-256 65919d657d3198c5f62e7262d604d441a7ec3f469ca10d8244c2907cdd7c0240

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768340014-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d0d4e032c7f1a7ec4189889fa9523c6c360769aee44d85eb6451cf2e6737e792
MD5 5f065b6fe3b7454ab56e89f213cc9b94
BLAKE2b-256 f0154fa70914f6a2e1b82483f719c73633548572e6c7f261ff09753528257e17

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768340014-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 c01e02bf2a8510cafb610ab3cd01b72b99c4e068f8d2d0062954b924294c877e
MD5 f15715622be346cc97a5a99d2d020824
BLAKE2b-256 92061bb84391aea9c3d02349ead4d6d62ea0060cac11ad2d4159e4ecec9eb814

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768340014-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7dbac5cb6b0f609e1f44d92aabfb55213ee7905010b9360344f44c7b3f07be1a
MD5 765ac863f93558358b596e5d8475ef1c
BLAKE2b-256 6f0d116a1241766ff39e8b10112c05f993750e44f542571cc0bd7a39d7a00218

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768340014-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 07b569b281ce6551989fe5fe058770648eec26f4d41747813618c933469fe4d8
MD5 655991b62d2970cc8d7d84b2a19409ab
BLAKE2b-256 2cbd3f4f902c7b7a1fc06dd30611bc6da63cc6882487ce22ddeda8dacf0b8df8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768340014-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 531c179c6ab110a3041a057dfad027c5f7e7d91877dd27700b7ab4c10b661f91
MD5 e22816414900f68a48c84c8f7c900ca5
BLAKE2b-256 fcae439055b311f8974c9f52116f94ecf31e74b6d7c34ad4cc4a1de85d617cbe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768340014-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 9c21fa0893f681af3a34e0991aad2ed75190f57448a7135aa7cf268e70d330a7
MD5 e430eb9da11d5d8d3dd8b45853793737
BLAKE2b-256 5d125ce7a3d33a739de8281640757c651478f35cc3ab061f68e7b7ba6226a7df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768340014-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7033a383aeacc900693cdeef4f54bc4bff43f8f7f79313a2aab341836cbc7967
MD5 c34c4bb8c5cb50daac1e3d625baf2e9a
BLAKE2b-256 cb7a144bfe9164d9bf6416fc95073df82aa527b51cd3b22dc3accfbadb9efc65

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768340014-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4c14e32a220fa0d55b205ef6d722b807ada16ba4824f9a26d9d441d36ae4b17b
MD5 fecd8b99629f59aea7e3abc2e2f93549
BLAKE2b-256 a72b9228f2f000f64cec2457c6eaf8c1919fb954c81fbf61e8c5c034f8ed4097

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768340014-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9d053e994e2a451cdc83c22cc55e36c9d6f1424eb9be06b2eef0a293c118e0b1
MD5 daa670a698c1e84b82a62c944499be29
BLAKE2b-256 12a9e67f23300031333e0b457089aab23a3cb9652bdfe32f52bdd5c466cce144

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