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.dev1743900324.tar.gz (843.3 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.dev1743900324-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.dev1743900324-cp313-cp313-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

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

Uploaded CPython 3.12Windows x86-64

stim-1.15.dev1743900324-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.dev1743900324-cp312-cp312-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows x86-64

stim-1.15.dev1743900324-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.dev1743900324-cp311-cp311-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows x86-64

stim-1.15.dev1743900324-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.dev1743900324-cp310-cp310-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows x86-64

stim-1.15.dev1743900324-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.dev1743900324-cp39-cp39-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

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

Uploaded CPython 3.8Windows x86-64

stim-1.15.dev1743900324-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.dev1743900324-cp38-cp38-macosx_11_0_arm64.whl (3.5 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

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

Uploaded CPython 3.8macOS 10.9+ x86-64

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

Uploaded CPython 3.7mWindows x86-64

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

Uploaded CPython 3.7mWindows x86

stim-1.15.dev1743900324-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.dev1743900324-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.dev1743900324-cp37-cp37m-macosx_10_9_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

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

Uploaded CPython 3.6mWindows x86-64

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

Uploaded CPython 3.6mWindows x86

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

File metadata

  • Download URL: stim-1.15.dev1743900324.tar.gz
  • Upload date:
  • Size: 843.3 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.dev1743900324.tar.gz
Algorithm Hash digest
SHA256 25856c401c0977bc472e33c1ddec6bb1027371040c17bad9290237deabfdc4c6
MD5 3ed2fdb995cf6be9bcfabc2bf4c3015a
BLAKE2b-256 3260fb0c317e41a7234bc400aadf78fc1900d71d2c3acefe4edead0f4b12eb4b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743900324-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ff8f7794bb78db1e9909042a526c606aad527ad0f82af80ad4c9f08b7d0f4e12
MD5 edd29ae07cd40a3da245a5a003f0a4c3
BLAKE2b-256 bf3964c03b20e0ae245d568a88651f1649b1fc58bfc76a7f9db8ff2abdfe21b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743900324-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 99862d8a5de56f31e4cdc4496a1edd9576d562f3daa55a501fc5f47c1fe50011
MD5 b9227acd26a3148e8b3e1589c4ece136
BLAKE2b-256 1a4637d0845733794fc37873a041010e8396ad52c3c7dba1f7d6b46ce9041c12

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743900324-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 a70a1db077c85d0bc418f99b73e3120d589512b2fddfb6c4aaaa72c992282031
MD5 a7a39600ded8835552e218e7290c8aca
BLAKE2b-256 3bc85e3d0d61fb878a90d72b0e0d81406ae7dfdbf2c064f4e27a3bfac8fb3559

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743900324-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a4704df59bca7b630cb4189c1b0096d9a56d0fdb17e6f30867cb773e9119636d
MD5 e38dfde13150ec2ad25a4a477aaf9b42
BLAKE2b-256 6957392843704372ebbf56186bd9c972008bc4bd8c68128ba592f62dc5b7c0e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743900324-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f1df71a6485b01f627d5fe84609cdaf966a066700e983e2f726356130cf35288
MD5 3e43ebb8dbdac0259331dc8fa4184add
BLAKE2b-256 c1c5fdbde04c0ace9f0a53856c67b392b8ea9070781eee9dfdbdfdb97240d61b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743900324-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2665be04eb3336589282a5470f0353d392aa54c57db6c51104894edf7df1c69c
MD5 4577affe39887085b4b079250fb1a54d
BLAKE2b-256 0018c98e8ecb6220320255965a3385e7e6b3bc1fcc7f8d08c69c3cec3b75fc7f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743900324-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 3860ad09266989f9d98f58e457b3f15a638856ade679ff01e866689cc66228b2
MD5 fa3e1601becd543e39bfa01ac74eac1f
BLAKE2b-256 cb9cf2075906cc44612c9183d7ad1b01b98908530476b18dd5d6485c7a630c80

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743900324-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 2e43ddca2ca377db46595864cee9a6e7c166baac794a42303179c00fec2f293d
MD5 a8c47caa58cbbb6c1a9c313bd14b1ad4
BLAKE2b-256 2da87d8d9cb8d42bf00c8854f9f2677cbc54f14673e357d120b376a412e86d70

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743900324-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8cee11506dc37e0252f4c07dc76765a3cfa6aca8df8d2298cd9cfb75b691a899
MD5 580d2163d2b98af5d6a77a030e86d158
BLAKE2b-256 f13d9987862389cd0f630d2b29d83f74a14f5876c8f927a7fdfb7c7c9dcc8eca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743900324-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 39bea86ef17163072a77d859af7bc784412cfc92ed0d837ef314df5116455a59
MD5 bb186f9d83128be6c51edd5b49dba9f2
BLAKE2b-256 83439ef84fc3f51cb4a89fc8ac344e268ecc1a79e530b99b13faae4b5de19f05

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743900324-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5a1a61cb66609b73497af5823ef9f029f04b2d13699612f85ad3a9a3ea14fb4c
MD5 cdb0d064a13c1f31b2121ff6f037fef1
BLAKE2b-256 9cda14d6ad127f559eb86e3199bbfb1c27f1c5d9886de4149eff96a692124c47

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743900324-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 22f1a2766ca9d5d62f6a2e69e10b30d9fceb837720ca888a51a5dfb305f43996
MD5 08b614226060a70c95d346834f5d5412
BLAKE2b-256 070e095e94e3846398d762f56903b582598227b61fb2b24a07e321bccd07324b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743900324-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 150f693428e911ada86c7684ab5baaa8c53e83f285878f9d975de06d07831789
MD5 ac287904c2ad594f88fda1abb042ecda
BLAKE2b-256 57365feadd6a237a970f9d665a15eb23ddbcd4143135090b540a1668b0c5f50f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743900324-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 31e61be41c63a64795f772e051a95bce0f6289d10f16f6fe2e4922187a75c3b4
MD5 61791c5f30afe659f6b3ce20af33c81d
BLAKE2b-256 51f15af4e83f51b1b287e71cd204c1904d0c38ace65ad6666ceaad98a3eb79f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743900324-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1501328b5d9502cca314b88919e070e9fa3600202af624ea60370ff5c1d05d9c
MD5 2107d3f9a09e945e2b7449c711ce696f
BLAKE2b-256 1251398ed6802bcd761bec7fd693869dfe691443bee611e4ec9950a5167b35c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743900324-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 3f55a8515f5f5afa9a1bccad9050a489f98d7e862088d4b71f0882ae9efd21d5
MD5 b52758dde5eb058e6a1d6a0e825790fe
BLAKE2b-256 917e317961c9a9b4fad4743e379180385a5fafd4be578ad9ca3c334be3785b99

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743900324-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0199f99a97651a6053ac458d7e2cb4233f11c09f6bf0c69bb86e1b4826900b0e
MD5 b92d99163b07cb903cadf9bb3f2f70df
BLAKE2b-256 d3a395339ba125c2f6e8cdf172dbf89461050d791a27dd1926187563536b2757

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743900324-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d9e06f33d3d0a21d368d45318f7f84e890be71e14934adcc490d1039251ff344
MD5 2ed89eabbb3960caf29af5d334d1cad2
BLAKE2b-256 0e588b1e028a801896d079e3a2f22bc89ed37134d69ca5cac987e5141cd61b1b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743900324-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 50035ddcd3f73336ad0bed72dbf825f3f579f7f2f329c61c462b41fb929c6e22
MD5 8fa45e5cfab0b137c4840581863c6658
BLAKE2b-256 f3e1109c18503ea04963fb1ef1d689b684ff898b271e59dce600571840d6683f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743900324-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 fd80e6a8449a4d22713d1c7b1602172022290ba285abd7bf0f3417f055653aec
MD5 2e9ce3a3f4397111dad29d53789905fd
BLAKE2b-256 b3dc9471af24777863a389282c25f52a04a6115f6e1869208e86b7c37e0e1f37

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743900324-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e9d31aa5a7745967fa1e0f6795b279fdfae017b94915c4962cbe7cab618f75d8
MD5 bc5d652fc97475284cca9ea35f584567
BLAKE2b-256 49dd67e73195bf7ab909464c514a360f03b0b243c381625c71cecd08d5248d7f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743900324-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d572114cdde149e39e5e56c05f53d2b0474de98d66c8d5f3c213f8a4f408838e
MD5 2352fd248704b9dbba4d4d1b5552c266
BLAKE2b-256 1c5fe9130ea8e3f4c6585d03c144b5d222543a63282e3d131ad739a9d55acfa3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743900324-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 95104a524512b41563e60a37d00c9aad8ab0edce7321572522e052535ebfd7de
MD5 b45c27f04488dbd6d1082433efc92f21
BLAKE2b-256 522ba711d8a4433a25be6d3865b420e7d595a8f641c6c933c9f6d140f515c4da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743900324-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 1f1e933c8bdd0cd0b829fa6ee0b3fdfbf4b272c2ab91af5ea38959da041e620c
MD5 02aad8dda76579febedf566f744eccf0
BLAKE2b-256 5a9a1eaf9a0170b04c2d42b426539623143c3bb92d2683575c61ce9978e9c9b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743900324-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 65380f44be515c26c906463fe079c7db1161825aec467c5b0d7ed3d9c48e7fcb
MD5 5e720ac3a400377c067c1057ad048ad0
BLAKE2b-256 238c4e9d5292e623a9c8ec5344ccdd3fcfe15247bee3e7aae6b32913ace72be0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743900324-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d3d45efa74026cfda794129d08724aaa2d3cebb8ec1ed19f3aa32e331eefdcd6
MD5 9aef4c6735d8d912e7af78919e12d146
BLAKE2b-256 09ce649126f93f9f41793f8f24cfb7a79de85621766df5470d567e1f1d3d2172

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743900324-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5a0219952a2e0228f7dba1b6b03d96706aed2dd613f74d4ff314819178318d87
MD5 33d2e0bd0a5a606894e7848989e6b9ee
BLAKE2b-256 a2ce40db0becafa274193ce3f38ef517f1b1fddc91b892b57cf52cb9f2dd64f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743900324-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5dbe9c599f3da3254542e9242e2d6cab3aafa6cc04a40ad7a492cbbd58a68916
MD5 e1c89222baa1cff383d7fc4e3a9cb2f2
BLAKE2b-256 cf70a755a50ff4ef21cd4dbd1954004f638841d9a58e639152f25b951ae5cdc7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743900324-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 60b062d13519cba2bed9af3d8ec1f68870bde41587ffeb35ee7f6a0c819e1e48
MD5 bd5fbcb2d96d86ea4c9881dea4dcae09
BLAKE2b-256 b550a27fddffe7422aa23cce241f09d74edfee2f13e4de71077e422ce5d9c883

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743900324-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 8b43bc04b168f0d8ff46ae8ff32f7f00cab6ecddd37729e32177e9e2d511d825
MD5 bc99919eb198f2108c04fef56e3aa7b4
BLAKE2b-256 b43df814f175b2f9fcbc81be348347300c5d40ca2ff491a096303365b84b46c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743900324-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a5da3144e8d3bf05996f76f1ac18a3cecbf3762d9f91120458a6e2d4009a4185
MD5 3d00d2683cc08012abc013a819b7c1e7
BLAKE2b-256 bfd2828b33168869df21495cceddac414436c41963d52c25872eb7a71bd29f39

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743900324-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7588d3c1ecc2627c0bc948f5e6d369e80cb3276c962f28b8ce571592a10c5890
MD5 337c64ac1dd43f799934817b554f3889
BLAKE2b-256 f7bee39fe206125c3e66166af44bae14b1d3d683557462af126dd380fa283205

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743900324-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3c23e455fc5ca44e4afe6044e809903abd5b3e68e0ad1486874664a97522d554
MD5 1f6c0679c043bbf5abfebfe294419406
BLAKE2b-256 b748b364f7700fa71680888c04c882007481dc577c0f7abaa24de6741d2899f7

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