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.dev1753811344.tar.gz (854.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.16.dev1753811344-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

stim-1.16.dev1753811344-cp313-cp313-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

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

Uploaded CPython 3.12Windows x86-64

stim-1.16.dev1753811344-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

stim-1.16.dev1753811344-cp312-cp312-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows x86-64

stim-1.16.dev1753811344-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.16.dev1753811344-cp311-cp311-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows x86-64

stim-1.16.dev1753811344-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.16.dev1753811344-cp310-cp310-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

stim-1.16.dev1753811344-cp39-cp39-win_amd64.whl (2.7 MB view details)

Uploaded CPython 3.9Windows x86-64

stim-1.16.dev1753811344-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.16.dev1753811344-cp39-cp39-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

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

Uploaded CPython 3.8Windows x86-64

stim-1.16.dev1753811344-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.16.dev1753811344-cp38-cp38-macosx_11_0_arm64.whl (3.5 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

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

Uploaded CPython 3.8macOS 10.9+ x86-64

stim-1.16.dev1753811344-cp37-cp37m-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.7mWindows x86-64

stim-1.16.dev1753811344-cp37-cp37m-win32.whl (2.4 MB view details)

Uploaded CPython 3.7mWindows x86

stim-1.16.dev1753811344-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.16.dev1753811344-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (5.2 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ i686

stim-1.16.dev1753811344-cp37-cp37m-macosx_10_9_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

stim-1.16.dev1753811344-cp36-cp36m-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.6mWindows x86-64

stim-1.16.dev1753811344-cp36-cp36m-win32.whl (2.4 MB view details)

Uploaded CPython 3.6mWindows x86

stim-1.16.dev1753811344-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.16.dev1753811344-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl (5.2 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ i686

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

File metadata

  • Download URL: stim-1.16.dev1753811344.tar.gz
  • Upload date:
  • Size: 854.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.16.dev1753811344.tar.gz
Algorithm Hash digest
SHA256 ae7d7578163a339b51d1a88a162ca8a1359358db879e4f494a4f99f5361e2d1d
MD5 ae807ad57ac668d8bf558e257a423852
BLAKE2b-256 7a22499db1093385a438699781e7c411a052fb3b12e2da5f11f18a9b2f78172a

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1753811344-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1753811344-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d484f1f6d9968530ebd28d20fe871c45455865ea67061aadc9d4d52be3cc7237
MD5 646056652fedecc1d39301f526199402
BLAKE2b-256 6b097eb7d21241a79749eb3f7f91ab28b2e69c8c9684b1dfc669f4d38cc72f79

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1753811344-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bacf2f6352e1f96b9d45d4266e53793f5c7b301588842b18cc71706d759a73e5
MD5 12ec50fbe77128a177320b91f890e124
BLAKE2b-256 cb9373ba833bc65ac777a741d505203f3ea6a4d6d8bdb25cbbbb564280c4d410

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1753811344-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 0ce9b918eeac91d83e29d4f05edabd25915d566bf908a1797ad7d571b75e84cb
MD5 d0b37d514b1421844878c0feab012cf1
BLAKE2b-256 bcf6b7b4d99683054b0fd8e3dca4555fcba6d544d9c81811b62422877668e194

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1753811344-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 8dfa6878aa18fb0d9e07a7b33d45da18b8664ca74bed6b781f942e97a2aa3101
MD5 d28879264c658121b44285fa332d3979
BLAKE2b-256 9ea525737c95665186b197bd0687da62beff43db98daf142c08af4034924f4a4

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1753811344-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1753811344-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9877dd3d80c81d56c1d9178c9b51f5d59f4209d25adbfad4d444dca80f2cc451
MD5 58d2ce0830ae822ffb4b03f7c4ecf407
BLAKE2b-256 46106e9781f6da908ee637e7ac04b2ed0791dcd75799733abb630baca8210623

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1753811344-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 97d70dd0d83fbb5621e56a9a31470f76e43068b9c999c02c6b81ada249005ad3
MD5 58b745c251081956c240ee3b28fac841
BLAKE2b-256 0b8c436320e736425810ae6c1b598794289f86d18c28d8c15a97ec9892705fb2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1753811344-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 a67704b0bfcd83f3a3934a9a1cf0fd446e5e96e4b367980e56e7ab421f874fbc
MD5 89303c2f6b8927d02a7646bfa0404145
BLAKE2b-256 319dbbf38ad5724e18845c43a2213b85a7aa4350fe0881bc115a0e829c50680a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1753811344-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b34ed7040600f10086915100221b7f37558825737b4214c3716e39ac6be9d449
MD5 3c8dc21d9f3e3842f01e3a7fd147021b
BLAKE2b-256 0f8a64f113ab5d67fbcafa5ce6a0a8fd3201a554633c5715c17d0aec72475487

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1753811344-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1753811344-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bcae8a7d739b158bf55927705f98014b7a1c34a5f84ae7093e396d837ac61754
MD5 3b268c2ab3a9a71c20ee64d5f2138c28
BLAKE2b-256 89989b5bad86bf5468f111a0a152500746f081552eae381571c4e7419510dddc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1753811344-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 05b8cf0fcc73794ddee739f457061b73b85ca8bdf53f45d99ed4d120fe071da2
MD5 762582e25ca11180ee023d4747c0fe0e
BLAKE2b-256 a891c995c0766ebe235afab93031f34390315842988d527b734bb0cab48cc7d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1753811344-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 061418e2de654951d200475e116b7423deb800d88b95e02f865c1c393ebae905
MD5 f8367ba782115a80ca77778a379fc907
BLAKE2b-256 0a80998f5646623bda4a825ede59c15cb125d72208862585682d1bac191c8e74

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1753811344-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a7ba115d7de173efd87df2a2e51eac4c1ca74a4e4a21e1673a5dd01e1a7fd2f3
MD5 2cfbc659f396eb1f2ef2e4e479bd7e6a
BLAKE2b-256 0cb4feb7ef19670fe609f47b7777d1441d31f99fff7189df80e5005919cdd261

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1753811344-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1753811344-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 19ef508f746400ede7076b749ee3f21495c2c1b826158d3f2eff5b281b9414ff
MD5 11e86d2126693fe5d22ef0749bedef6b
BLAKE2b-256 31931df299c9a9ca77ffd42144725721efbbcb71128621688d27ed5a5d331a57

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1753811344-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1bf8ac387928c9f9ca85ef65034f69c3bbeedf0d3212a64d6dc68cad6498dac2
MD5 e089288146dab0d197a198c044f729f5
BLAKE2b-256 856752b015053f8c58fb849f5607457ef5c57d8bd3ca78469d38470da83c8fd4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1753811344-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2c8a0e3f50ceed1f4359575c1477652f6639dd67a2e5edd40306cec38ab02286
MD5 1b18a4f8c9ad97887fea0e15df429f97
BLAKE2b-256 df444ce85c77041101ebb6bbb4efd8ff3834353d8551fd5aa7106ac59ddddf8a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1753811344-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 b471047e907f1faf45ec1fa22cedec5245b9e38cf385735805bf335eab979b16
MD5 68c711ea3ede84e3e1d351635d0fee78
BLAKE2b-256 d682d0a4a21987d4e43e6a35890143c2bb54a26375e8314f9ed117ef5d7558c0

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1753811344-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1753811344-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 67d1a07f753448d981d353e55287a733f233e15fd88586d6a820cd93dc0f8c72
MD5 4d26dc4fdcd1f93e420e964ca77aa719
BLAKE2b-256 8512c436cc5667440e4f4d70738e9af63bf6e92ea02a35a665273296c1f3e772

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1753811344-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 42a22c3bbb3b52e17cede6825fcac862760252c1afde82ffbedf324fba8bb20b
MD5 60d28922162d7227f28cefe603809bde
BLAKE2b-256 5b7b49c4aedebb3994db8216bc732802a7c46feb49ae62f143b85ec277c2aa92

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1753811344-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a8589893d2912a841a88db816320e07258bb49cb02a9b0db3ef2a65350bf14a3
MD5 c3c1c0bc8dcff5083945faccffaf8414
BLAKE2b-256 b5d0bf7a5df3191d456180d7d0bb7fb9cb964a9a6fb6dc5ae5aac5c6bf7972ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1753811344-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 59c39b6f1161bc56b0b1d36164769362220f84a78a6eeee8234415e3f7600168
MD5 5adea514eaa22b8df30238a9c1a2599b
BLAKE2b-256 d8be65988cabd2734897f6ac023c065028d73090bfacdf2e16eacae98017bb79

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1753811344-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1753811344-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8d41ac9157763c4c65ef2558a432ce678362018f10d4bca141dc8fbf8b210752
MD5 77809e12191d6c3aae722a6cb5ca71a5
BLAKE2b-256 33856dfa4f1afa8abdf653760469c3f067b3a41590abc0ad5ee3432807970c3f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1753811344-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5a125599c057160137db5d1e543c8b98a55cb02b9fe9f2f7df4b77fea10b4594
MD5 b30fce1135099be02cc055005a1fd8e4
BLAKE2b-256 1352e75d45a60375857b1c29734777e6251eccc0fea968d19be8ffbe0e168fe9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1753811344-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 37b242fd151b7b87227c07fbfcb880f79bf3a4526733c8674edb7b08561c4063
MD5 776437bf9d78b33829b6b620d1222e56
BLAKE2b-256 ea53f1117c0342c9e4690bde9388894c6cfecec96fb1d826ae4500db7e338eb8

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1753811344-cp37-cp37m-win_amd64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1753811344-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 9f429049dad57d5007959c7a2c4c73ef55ef5cf8ff27a3dc4a08b18e9bbe6511
MD5 3fe7b121b3d8978164153f02eb0752cc
BLAKE2b-256 94b76c386c21b5febb602e157733ca4cf14376886a11f04e34ca2a074ed7fc9a

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1753811344-cp37-cp37m-win32.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1753811344-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 e40769ae907c286510bb850929e9b727efb995e0c1e3f8184b4313dcc057ab2f
MD5 65bdae25f702d327c5dd0570ede2f784
BLAKE2b-256 ad71289f2e41cb24a389c5840a3890201fa064621b15e5944603cdef4b0662fd

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1753811344-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1753811344-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ad8c57228efa27fe3d24ab78dd6d17bad48eead33d6e7a332a7ec263b75a0d3c
MD5 54ed4338c20574e5bfa6d61b42f6e0b8
BLAKE2b-256 217bb3280e8aa3a35d240e43718fe1d1bbe35071c56deca8dd21f4db747d80c5

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1753811344-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1753811344-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 42a6f0ffb630ebfd59416adcfe436bbea76cbd1a4bba1b82c796f28d5aef1687
MD5 f5b2b63cd8a15cec5502243efe6b047c
BLAKE2b-256 baf2e09c870f1d06a87280461f21b788930fc8ff1252d0f20fa274242285b556

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1753811344-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1753811344-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 72e6869e758523d7950f194217d5b40263ab47840855795896763c7b874544e0
MD5 30b10e059174286db617d2a47ebcecba
BLAKE2b-256 087ce482a41bdbb9c83b35555635b0da07bd0ac37e2b4db6769c62210226dd11

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1753811344-cp36-cp36m-win_amd64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1753811344-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 df60e44738cf2954e12b5bacf59061380db9532bc96e2378f945707615daf8c8
MD5 cabbbe7b52a79b91af68bfd71ad5c17f
BLAKE2b-256 8b51b867ce79e83a35da413b4f9111941006410877ab04a9d35ebcc03df140a5

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1753811344-cp36-cp36m-win32.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1753811344-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 a5f932b4f04ca6a1d8d1fc180825628496145fa105625665e9d40668010c9a88
MD5 99393edc3b3e04ed8e5c4d7e47f50306
BLAKE2b-256 c14b5f7326e3b2d4775571eca0fe5024ae8fa5fb100d5c954da0e95a41909347

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1753811344-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1753811344-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 98a326611b7adee53de6d5fcd01091cce4f48c9ef4b2177ad0992579e32b7999
MD5 a7922ba525371afde6e17980046e100e
BLAKE2b-256 1c26c62628ca4edaa71115a968a0a50634973747c10775ad78ce1bec95d3ccb2

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1753811344-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1753811344-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 606250da930070baf04420126b690e12dca5e25329b0c271e080b899651c7309
MD5 e62aa14803cd515c3a50be6defdf4970
BLAKE2b-256 b5090bfd70e05a3025d8e6032baf082d6de212804759fa6e3d8aabd463957933

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1753811344-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1753811344-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7fc05b9d4a855eb7ebde5f00f931dc3c007f3373cadbbd32072107fabbd40edb
MD5 3428435a46373863738eb3e00f478db1
BLAKE2b-256 2740c2e9fea71017fc5dd37ef23913d1712eed3afb3689c3b71baa6fa9358c08

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