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.15.dev1743894906.tar.gz (843.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.15.dev1743894906-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

stim-1.15.dev1743894906-cp313-cp313-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

stim-1.15.dev1743894906-cp313-cp313-macosx_10_13_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

stim-1.15.dev1743894906-cp312-cp312-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.12Windows x86-64

stim-1.15.dev1743894906-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

stim-1.15.dev1743894906-cp312-cp312-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

stim-1.15.dev1743894906-cp312-cp312-macosx_10_13_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

stim-1.15.dev1743894906-cp311-cp311-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.11Windows x86-64

stim-1.15.dev1743894906-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

stim-1.15.dev1743894906-cp311-cp311-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

stim-1.15.dev1743894906-cp311-cp311-macosx_10_9_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

stim-1.15.dev1743894906-cp310-cp310-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.10Windows x86-64

stim-1.15.dev1743894906-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

stim-1.15.dev1743894906-cp310-cp310-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

stim-1.15.dev1743894906-cp310-cp310-macosx_10_9_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

stim-1.15.dev1743894906-cp39-cp39-win_amd64.whl (2.7 MB view details)

Uploaded CPython 3.9Windows x86-64

stim-1.15.dev1743894906-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

stim-1.15.dev1743894906-cp39-cp39-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

stim-1.15.dev1743894906-cp39-cp39-macosx_10_9_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

stim-1.15.dev1743894906-cp38-cp38-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.8Windows x86-64

stim-1.15.dev1743894906-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

stim-1.15.dev1743894906-cp38-cp38-macosx_11_0_arm64.whl (3.5 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

stim-1.15.dev1743894906-cp38-cp38-macosx_10_9_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

stim-1.15.dev1743894906-cp37-cp37m-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.7mWindows x86-64

stim-1.15.dev1743894906-cp37-cp37m-win32.whl (2.4 MB view details)

Uploaded CPython 3.7mWindows x86

stim-1.15.dev1743894906-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.15.dev1743894906-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (5.2 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ i686

stim-1.15.dev1743894906-cp37-cp37m-macosx_10_9_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

stim-1.15.dev1743894906-cp36-cp36m-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.6mWindows x86-64

stim-1.15.dev1743894906-cp36-cp36m-win32.whl (2.4 MB view details)

Uploaded CPython 3.6mWindows x86

stim-1.15.dev1743894906-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.15.dev1743894906-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl (5.2 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ i686

stim-1.15.dev1743894906-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.15.dev1743894906.tar.gz.

File metadata

  • Download URL: stim-1.15.dev1743894906.tar.gz
  • Upload date:
  • Size: 843.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.15.dev1743894906.tar.gz
Algorithm Hash digest
SHA256 f05fd84216cb64bafc0997fd592baa4d1c0438e0e9d3a16759952f709240ffcd
MD5 f99b04bd06f5cc37ccb8e10c7ba514fa
BLAKE2b-256 33773fc518d16d63c6d80235f1bc9a0173a2d3777363ea29a919520b6e14dac5

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1743894906-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1743894906-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3fbb745b6de46e6c2dbcc323f00df79044696bf9937e9ce5ace81aad3eadc8ee
MD5 52d8465364f00641ca670555df7ff79c
BLAKE2b-256 709dbd0d39ea9b389b0b7d08c36c0f6c58af344b8ce8dac513cb35eddde2a253

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1743894906-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1743894906-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 595346abef6d93a76fe8ad225f55cebff11be74c6f444546e043327a548d56c8
MD5 3db4b33516f07490954b23e794f8d9cc
BLAKE2b-256 156b7a896fb59c7173a461368864155e04f4dbab0cb732227431dbaba8321256

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1743894906-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1743894906-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 1336f24d2baf53b709b35a9eff81a7983b1e5f8b994bd410455423de24b82965
MD5 42d6aec4664fd86fca6cfbd9ac303779
BLAKE2b-256 90f2c196454909321124dfaf4b90840f2698250315d1d7a6278c4b1fb83327fb

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1743894906-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1743894906-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a703d7a4acf4a75ba08affd7af33be53047ac14eba40d98b71cc725f2552f01b
MD5 4d102523ff78be3b6db34d41c4fc42c1
BLAKE2b-256 ce568b4499491dad3c8eee6e25d9572019796f59cd31149edd15912365cf5d11

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1743894906-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1743894906-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bf60aa6140114cb599277bb988a193388d3820c43fa25b434b75cf17da6a055d
MD5 585e3f4b6822df81c7e3b2ad23c88603
BLAKE2b-256 7c88921e152036198ee1106d2ef98e0efb33d9e80f7599a5fee27f266a0b0a39

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1743894906-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1743894906-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d52ac5507b42aef7863133e84fa7c29e668ef3acd5d00a84ffe5bc5b756ab443
MD5 947d448f6397233b833d6602312b743a
BLAKE2b-256 195e140c027930b08f38ae8a5372411bab76b282050dc8946b3cd1ee96750a08

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1743894906-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1743894906-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 be437c3ea777ca7e5adfb09b59a8613c07b21ca44302c46fa8556b34dd8f76fa
MD5 0d02f7948831325969f996aeba45c79b
BLAKE2b-256 be84a3ecba1ee7eb0666659d6c11ed54df0ac65137433bb9e82e3b2c89d8e0f2

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1743894906-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1743894906-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 aa9bfd58b9eaac01be43873a00674932f00e1bca54822a791ec375a415ce86a9
MD5 9fbc989ee351dfa527c784c04101dfd4
BLAKE2b-256 64393db40d6aff1bc33715f4d2517025a8f3b57a2bce7fc9692e0fa06f8f343d

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1743894906-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1743894906-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 24e469b833caeed5a78a26ba74c50533edbe0eb16b86dd1f1cae5cd9d074a54f
MD5 65dad401a47175c623b013ce5424cfe3
BLAKE2b-256 4549d48f151b7b9c5b04b8b12ccf21a51bbffc03c54209bedc1a64f1d1708c6f

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1743894906-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1743894906-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 78ca5542dc30f20d9cbf2131aadfb482e9d662dab057855df286a8dcaddab3bd
MD5 63c3ffa8ce8b77ee36150fa23daa1320
BLAKE2b-256 231c5944b3d95ed9dfd76d85b9ae1326a983b8778dc81a45fc5e0b563bf1ac84

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1743894906-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1743894906-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 81ee7445754088201060e49d6941da8182ba11c62690252d31b2565154033fb0
MD5 7b088a0160e31bb33b1451c97972f41a
BLAKE2b-256 578eb466660c4dcfe93ce771a0d100a126d75ffff26509a5a0ef8445c3f1a487

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1743894906-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1743894906-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f92185ac359531373860f3a0e1a5f8f755877bc482e70711225d34f3d46ed2a5
MD5 e4825dbae8e482a71dd85f17e958e90b
BLAKE2b-256 128272b5f46c0f9df3d8937518833793bb5bcbf3b1b6b4eb2b5976474663f4f3

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1743894906-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1743894906-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dffb70332490333b00d8a7edb7c75a6865a2cde56337b873c30b61efb6a870f8
MD5 ad435238c5ef0c3cf966fb9145f19698
BLAKE2b-256 8790ee5d6411d54f19a160b1a8211aa09fe222648e47a9988e3e5cc564cdbe44

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1743894906-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1743894906-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 61d4bf0c4836630b44ed3f505e7db3ef9b5209cc175519fdc39ca3c78ca54e9f
MD5 0ce786d15fd1ad448e428e7fffd86517
BLAKE2b-256 53c716699e151d3601d11d5e278acc5c799d5e167f3df79d33097a163b9d1250

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1743894906-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1743894906-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7c2397096adbf423320726194221b96c2708947dcc8264e32b16d9064a65e27a
MD5 4925af9d37a7f104e55ed0de4bc22497
BLAKE2b-256 f1728d0c5bfc07ebac569e4adcea98a52f86939c0a6ecff20d45690db39335a8

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1743894906-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1743894906-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 e8af88854defe98a3df21d50b880837f9f23b1a1976e44174ff815815015e71b
MD5 6d5bd8df88032afc2e35bcfe21d85627
BLAKE2b-256 e56260605ae210545c0c36830ecb890f7f4c5e778ad8c00b7c04b461635c6309

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1743894906-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1743894906-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 63220a0d41dc74d8f7c8ca7a9e4ed7d8c80d1bb9e29e47c516694339b6bb2648
MD5 cfd27ff169c962dc16556d8eaa3a7d66
BLAKE2b-256 14bfbec69af79ffbede4ebdd47b9e3b00ea0b6f33ddf79de4fd1862fd40a4388

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1743894906-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1743894906-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5d8b84d061ad49a95cb308e4e9004986f2f577dfee9bf0babb3b5d7cfa11283a
MD5 458c9456549b602ee99c897556c6f838
BLAKE2b-256 c0fa38dd056052ae2307ee93594e630027b4b7115dec3077e86eb1504bd3ed0b

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1743894906-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1743894906-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 03c6ca126b31540f287918afaf2b5b800f0c9f6c09568848aa71e5e33c51d181
MD5 ea4e0b7381f78b1d486f761a40613c5b
BLAKE2b-256 1c93e795fb6021212857ed3075902cfbbe5a9db56594ac0b3456d6ac161b9bad

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1743894906-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1743894906-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 56701507fcd35060da0897d280cff84cf47b1bc5189bf3112c663640d5444770
MD5 885ce6499c0fdf3f9d31a63a99b57eff
BLAKE2b-256 b8b164e63e1641eb60a914768b08b08511d96a6214beefdba6bd53d61edb8f2e

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1743894906-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1743894906-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e3f40353fdecc2a126f1a940617e6e76eb8ef634ad4c9cd9debe9d130964d377
MD5 e2d62b6a860f21f883cba1350e910216
BLAKE2b-256 fae3af9c7a7797aaa9e06fdd5fdbe7414bf5fb5958a2c63978f8bb6a42c1b59c

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1743894906-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1743894906-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ce8d1de891231047f12ff911f9cb8c302d5badeef3406645adb3764b957deb52
MD5 514fc80846c9f869a85849aee1590358
BLAKE2b-256 145232742b30f3e2a62665c13e7ab58fcfe718442c664b47fd7789e3c43a6d10

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1743894906-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1743894906-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c6c8a64bdda0a96afeea55240ce6b17ff42f99d0cd9c3883e826f49995bbee8f
MD5 f859cfe7dcddfd3a4133e6691f540e82
BLAKE2b-256 050f96ed631d03178ad12e544ab0dea7911a69e43f0eb7847e2ab79a88430666

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1743894906-cp37-cp37m-win_amd64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1743894906-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 20a32f82809a589150cadb6b8eb0840b9c4e3bec8dbd3a72c0f13f6933046fa2
MD5 193dbbe4f1e695f7db70decfa1ac8070
BLAKE2b-256 4e1be13f4a0fa3e4dfef27de3a6db09b2b8c5be2a5aa3525e35c8d50097bc331

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1743894906-cp37-cp37m-win32.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1743894906-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 8c5a7fd37f56251ab1a9d74e7f758ddbc9af2b98c05f18fe1f35ec937d97cae0
MD5 7ab16ba725e2a34b75bfbafb35ae01cb
BLAKE2b-256 23fea2cf8c28ca44ca75b07cd0fe07fd6a238dbf3e73285bb1173f441ccb5822

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1743894906-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1743894906-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8fca270360c281ee371f5e183f8cbd6641c616f6c193f041abf443d1d80603e8
MD5 335c5b2d7cfe9fa63c644dc2e93384f1
BLAKE2b-256 dd17c83aedce6ea17b12e695c6eea00eccb391a11a3134d8d1b2261e7587d6f8

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1743894906-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1743894906-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 adfcdfd18df2ac8b07787f1242117ce92c21e3c8616b56b515a30514d31dcde9
MD5 40a44bdd2a7eb426f99937a02ab9b396
BLAKE2b-256 13032cfab3e43070cc1e3b0d7bc7bddbc267111f30367e8cc2b53e978814e72c

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1743894906-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1743894906-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 60c42c0c8544dd9b4f5a9598e2ae9b67a287a751f1604f6f5b77edaf50f907fe
MD5 6ec0480974e651251f001b69fa1f46ad
BLAKE2b-256 e5868b24c3e72030f81c1e29bf5c5fc35950c72fffe69dcb6f9687c0cbdbf52c

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1743894906-cp36-cp36m-win_amd64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1743894906-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 d455546d530f2912439754b55e56c54d62df36f9629602135268a12e5dd82bcc
MD5 5d69115a91a89a5a43be734e7e5b2caa
BLAKE2b-256 9322859e86a1b7d1eb15d68aa1d08f8d2bfd25c23b82fdcf14e568e09eb30242

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1743894906-cp36-cp36m-win32.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1743894906-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 3400324b8cfbe5b28565243949522e3fc0ae3eeeb450c98fa61499d46dbb8375
MD5 ea295ac93ba58d9e69a7de03a17fb882
BLAKE2b-256 e815577c3bf8224b177ced81a0b8122ab6648fdaadcc10680088661f01a575c7

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1743894906-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1743894906-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 543a92a6f38e1daec0298fc86be14468170447a7d46235665e1cbcfae123c841
MD5 66d5ec91dce642ec2a3a305a6d87b715
BLAKE2b-256 b23948fbf03307e876014af88f681b09cb387a9f1f23c02413b200ffeb91e9a2

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1743894906-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1743894906-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 93d0a76e5480b1c19c48ad5fb94d6c9de038f961729eb450b0c0d90fe0ffdc1b
MD5 5d03358dff5a93b772e3def44e938990
BLAKE2b-256 ad7a780e351f7421fdb375c85f5a0006992cee8a0de069bcbe4cf8dc539dad55

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1743894906-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1743894906-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 387c90bdb14c0c592713dfc8527d3036884f3ef66c8672da2997f9a363469cd7
MD5 8a8af63828d10b1a19e86132cf297573
BLAKE2b-256 7c536c2d5a4cd277a19330854593e3cb28d1ead2f7c6e5321b67c7a9487620b1

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