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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

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

Uploaded CPython 3.8macOS 10.9+ x86-64

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

Uploaded CPython 3.7mWindows x86-64

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

Uploaded CPython 3.7mWindows x86

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

Uploaded CPython 3.7mmacOS 10.9+ x86-64

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

Uploaded CPython 3.6mWindows x86-64

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

Uploaded CPython 3.6mWindows x86

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

File metadata

  • Download URL: stim-1.16.dev1755812119.tar.gz
  • Upload date:
  • Size: 855.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.dev1755812119.tar.gz
Algorithm Hash digest
SHA256 5448baf1a30328c9cad3bea401b88a0106a389308a7c45b0c23e7a23dc5cf11d
MD5 bf5d04f132e512e8060a1089082eed89
BLAKE2b-256 c96425178f34dd5fb9c303778a494044ef3293c765359af595644b839f0521a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1755812119-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1d022ac7a9310ab0fc24192d325fcf09eda39f583b0bc50a32c07b94d00af0cc
MD5 ab63da2aff1cd326dca65ab0b2fca25a
BLAKE2b-256 74dc72442e2ad30bb50c9e3b067b3a564ba91eb3b0a537e5612a42dbc2b28fd4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1755812119-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bfed0463dd61bf4a3561aa72350506406e0910087360645e660855999768b401
MD5 90085f81370be7012f85c0be3ed2f141
BLAKE2b-256 34cb8307e7c47c60fcdc739568582124d96e8b8064befc7dab877d2329a569b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1755812119-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 870de989451b17a7bdf63112aa6853f24d976b7d97e6930e0ef55e9fdef67d47
MD5 1785ecf48b3fb849dcaa93aeee973c25
BLAKE2b-256 217c96ec5c4446bb901daf3b4b7d02d1a2cb34151840654f3931ba656d32f21e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1755812119-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 055425822b865b2d4c31593aa8adaa9c89bf74b593971965d62afeceb98dc23a
MD5 050be275ebe79368d12c04a2c281866a
BLAKE2b-256 5c0ffa9aa41fab046dbca421eac027f8a835e49c0e62f27253047982daa5b0be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1755812119-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1ce98f5d5607f393eeb201acbcd282a2d2571140a3f1173d1ace0403b26d552d
MD5 49e562964c4e496273a358c9c6a2f9a7
BLAKE2b-256 2b33ce85e2c6a1a91e183d277d83c1057083ea786dff7650f8937794118cbfec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1755812119-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c1e94df3533f8b10032ed7e599926a8748445b5264bc3436b35cd928683c8aa3
MD5 f3edff113fd9c5ea6d4f49c1bcbff068
BLAKE2b-256 bcdeeadecc926b32e193722410b304be78a97820b5bc76c45581a7abaf6976fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1755812119-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 9251f0d0409f9a37640db660bcbc432cb0fd9fd5c810a057a5f609c70debe35d
MD5 acdf2bdbec790d09cc42efece82abe1f
BLAKE2b-256 33561ccd3d9ac7fbfaf26e3e7f5dc5dd6106c7799cb9e6c6e6bc60dc88d8e03f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1755812119-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c3411b42d454c5cc95ddd76b9db10eee7e1f90c89c060aa96d2513c0e09c03e0
MD5 fbb5e7b149c1c69f58d931b564fcb81c
BLAKE2b-256 6ecad672f57bcb6fbcb8659950460d91a47ae776b8522a93154e5e4599a18732

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1755812119-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2af33e9d118c24e5524a60ed7a2bd2b6f773f5eea0639fc197238879d4d42141
MD5 8614ece04c3ad43efcb20dfedd3d5611
BLAKE2b-256 71cd0944c2d57bdbd042bffa96847c3a90c2305c9d503d7d503d4ceee0f93e2a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1755812119-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 af6802adec9e2f0f553f5305d684a83c9cd31dd8fd69e01f37dfa44f33313e91
MD5 87e6865774c77c636560ca58eb362c85
BLAKE2b-256 34402a1932cc708f7061a2f5f8ccc21a1f75459f2d83622b0890b4569cac548e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1755812119-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e8ba5b00d308cadd288760fe4f137a730754b73be0524b46db64315c38e62a73
MD5 e56a68d9db2ea43a9c6750e915cb7f8a
BLAKE2b-256 ef7f490e10f88099ebfa06a0f1906c6da8429f18119c3946fb60b620c1ba38ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1755812119-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 67af18d12f3fac3d788b9a09eb9992b8825a29c32d4f1ce340faada5cfae0848
MD5 181e18a70e3d6f0e5087bf4d094060dc
BLAKE2b-256 05c336190e9ff4225d81e9bd5dc382339789f3d9f60204dc2f195c4fcce3465f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1755812119-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e8c851cd4784592a8727925709b51602d16e6fa667956fee25faa71fea19e2f0
MD5 d1a9fc9c2031d6090f94b4b67885f6a6
BLAKE2b-256 3977a8a543995d1e6bce0603927bb4e174a781bef0484c13e1c8404681a5ed5f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1755812119-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8e5c69c556898393b0cea9fdee8bf9b45bc5133c006a0e86fc178fe3b974bca8
MD5 7f9fb722db5d4ea06504de9bdc8e33ae
BLAKE2b-256 b7851cccd71b2563d5c501d6a3ec1363d771c2d5fdc876211374411fd2820e75

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1755812119-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b22913bdc33b6f2b1a53971519ba4d90babb29226751a6e51faacdeefef6c23f
MD5 45667b1ec1967c6dfbf204eeb2c8ccad
BLAKE2b-256 634c3c3bf628765ac33e8b8c2d8ad5684416768bdeba2ec67e18b71a1ccec54f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1755812119-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 c104928da469aca751477ea79fe6297afbf6e0c84fab072b5ad4f5d761ac105e
MD5 4ceebca0018da4e386813bbe763a9562
BLAKE2b-256 7375d08c52dd177b8750ab1111dc1ffdd8dc99a056077c5c3de89faa2ef0f8cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1755812119-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5555af1a5a979e727a9a42736b964ea8d72e296e3f77313f02261c2edad023d8
MD5 170f8d27497ebd5f3cc773809c9be342
BLAKE2b-256 5999b81e17857f5150b5c5af698c36a9165b6fc4470a7b6c779171750224952a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1755812119-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a204e274536d6369320eb599315d9bd372594f8a45f7ada56eef20ad2876a5e9
MD5 f4726fddcfd28d2570015024a98800b8
BLAKE2b-256 5e04101dbc0ae027b1e083d96a307f16c331f9041d5e33152be36e35ca96a448

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1755812119-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ad651868aafee50cef6f7bf4e85138dbf62623ef54d4c36e055bb05824a02699
MD5 df15b07d748ad2d5c16e4579b09db2b5
BLAKE2b-256 ef0fa4d97ae4fd52c1d6bb1e855ed491f54ab8841cbeed9747fad783b23eda26

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1755812119-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 f3eca94b3f9320977b2d15d8c42eee523ea1201416d24b8f6b73e300dc7a87f1
MD5 db0ad365efb91079a1745224678bc8eb
BLAKE2b-256 c8d4b1be3f82bbdd3a5042bfe29d6b8b36613a620d08a9684da2355b94d80fac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1755812119-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b47286e9323428687146ad56211ad3714b1f8e215f8ad50f076cb942606c505c
MD5 e59de4add052232125219b5993787db5
BLAKE2b-256 19685f6d7c7fbee72a3470f17107fabc71ad8078138e33e09e03cbffda26033c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1755812119-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 15ec356b00ab6c0800e68121245c8a399f7601798420c5aef8a2f8331aed577d
MD5 f8bce37072024e84f94ccf75eaae625d
BLAKE2b-256 5e4736f1e1d0b4a1efee19423870e26c3fbde45acdf6ddf360531956cef37917

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1755812119-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 efeeda920a623289eaff8709f373535a77ae09634c2a809124ee18bd9147230f
MD5 b42357a2e47bbe60ef969f89dbba67a3
BLAKE2b-256 f4dbd1efbef230344431e5cf30f8cc474418f085454390c46f58c9555b1c7c8c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1755812119-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 98c15ef545344e572ff2d7ffbc5400e87b2d31220e7e68c5edb0cada8325c2c3
MD5 759cb7d5679b04236abf76e78dd10ea3
BLAKE2b-256 e0782a593a6516fc2770de444a4410de5d6e6b8897bb28f855c05cacbe54bff6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1755812119-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 74799feb01a5ed236b884433a699be48cc771278226a943464d1dbb9b6a68bdd
MD5 3a1247f977f6eb4842d413d7f59d43e5
BLAKE2b-256 3e871a0f3ba1fbb4037f5392852cfb9986d83c8876ac9b120da8306e0c85f208

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1755812119-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4914c76a13ab6a29e82c17f6efe3a8ddeb4cc0fdaeaec07e8b0ac14466ebda37
MD5 e6fba1557d4d4b90801b855ce511d7c5
BLAKE2b-256 a69506c8136ab4ff7b42691d7d9dc9fb1d790f86a08f12a12755c099beb0986c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1755812119-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5db4d013ca0d9a8cedcb6148d83336b7fa9fed925e2cf49f145606a05f3fb201
MD5 a617182a9637ce71fdf32bd29b927bab
BLAKE2b-256 1f9768bfa401b317c88421606fb838fb6d4eefb00a15afe5834d1560aa775f77

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1755812119-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ca4228c62368543eaa53f031911e32171e0b32eab86124a4b802981f4e282248
MD5 99c9a229ec37db15c2230ca9619f82ff
BLAKE2b-256 152bc06c864820ee802b43cb9a638e17db3d7af4db4eaad0237d94fbc410a324

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1755812119-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 343c10705c137f2e3b7d5744502a32c714b1ebebbd8d56c1d932bf536d74be4d
MD5 cbe08d97b66c0424426309e9301a6da8
BLAKE2b-256 e447b5c8845c8a25d2d0efd5a51390e52488b9cee9e7c27169048816db526d3c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1755812119-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 a42d1d650904603b715c706a5b6fc741938eba30c85ed164f08f333561ad4548
MD5 1f153473ceb5cfbe15ef37edd83f9862
BLAKE2b-256 1d12382c2a1b96c273f82735eb4599e7298f2551803071f597cba44b1e37422d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1755812119-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bbfe500947338cdb0c4f20f4bb99fa6bf1afade13e728e6eb5768d48cad8ae96
MD5 3728855092ac90fc57fe4c2fc4c32242
BLAKE2b-256 7026763f1c9cde368c84085c1a49e46d49048b76576be4e2c235b13305b6665f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1755812119-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e92d33fffd9f3d4de861cc576ab3ac3fc3eeacf7e677463c34e75bde9c6985f8
MD5 379dbbf516396160c355fb9cadc89400
BLAKE2b-256 db4ed1b2cbda68afebc8201284e1dbf950234b94ee00b107109b8850e13d1476

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1755812119-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7a400bceb811782e93d637ba4a35c461cdeba3df42ca79e661bd86253066a822
MD5 8ad4763b16ce13aa409380ed8f7123fb
BLAKE2b-256 2b274507a956804fb0955016eb62e13adc534c88f081a10b80a201948328d0ef

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