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.dev1776288508.tar.gz (882.2 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.dev1776288508-cp314-cp314-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.14Windows x86-64

stim-1.16.dev1776288508-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (5.3 MB view details)

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

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

Uploaded CPython 3.14macOS 11.0+ ARM64

stim-1.16.dev1776288508-cp314-cp314-macosx_10_15_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

stim-1.16.dev1776288508-cp313-cp313-win_amd64.whl (2.8 MB view details)

Uploaded CPython 3.13Windows x86-64

stim-1.16.dev1776288508-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (5.3 MB view details)

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

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

Uploaded CPython 3.13macOS 11.0+ ARM64

stim-1.16.dev1776288508-cp313-cp313-macosx_10_13_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

stim-1.16.dev1776288508-cp312-cp312-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.12Windows x86-64

stim-1.16.dev1776288508-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (5.3 MB view details)

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

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

Uploaded CPython 3.12macOS 11.0+ ARM64

stim-1.16.dev1776288508-cp312-cp312-macosx_10_13_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

stim-1.16.dev1776288508-cp311-cp311-win_amd64.whl (2.8 MB view details)

Uploaded CPython 3.11Windows x86-64

stim-1.16.dev1776288508-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (5.2 MB view details)

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

stim-1.16.dev1776288508-cp311-cp311-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

stim-1.16.dev1776288508-cp310-cp310-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.10Windows x86-64

stim-1.16.dev1776288508-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (5.2 MB view details)

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

stim-1.16.dev1776288508-cp310-cp310-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows x86-64

stim-1.16.dev1776288508-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (5.2 MB view details)

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

stim-1.16.dev1776288508-cp39-cp39-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

stim-1.16.dev1776288508-cp38-cp38-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.8Windows x86-64

stim-1.16.dev1776288508-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (5.2 MB view details)

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

stim-1.16.dev1776288508-cp38-cp38-macosx_11_0_arm64.whl (3.6 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

stim-1.16.dev1776288508-cp38-cp38-macosx_10_9_x86_64.whl (3.9 MB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: stim-1.16.dev1776288508.tar.gz
  • Upload date:
  • Size: 882.2 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.dev1776288508.tar.gz
Algorithm Hash digest
SHA256 dcf11024cd6151be82559b1f585c0560a375c6a07d82f26ff09a456b5727791c
MD5 cd2e15e8b012721b28baafda6e0534e9
BLAKE2b-256 d3d13d86c69f7cd421821a522a711db4bd0d790daedfa9444fff02d59af517ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776288508-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 736078a809e5315ad13a71c805aeb43051d05fa382d1eee92780d030740921df
MD5 5dce9590a5fadc006b5e6a9fb6b66861
BLAKE2b-256 60cbe822ee6ec6cc1c2e3df59b96075672c6a72b25865edfc246a444cc08d2bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776288508-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a11bbfde3427fb667d593a1ad0054126d3ec3404a6e796450c651872c6a5b379
MD5 09c8611eaf7ba039a2431c6859198c98
BLAKE2b-256 e00d14f49e604fc739a023022021b4d2005c3c5887ea0b983cff936334ba80e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776288508-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 14109e94757142469ed97cc4b927934805ace2ffd052171acef0a0535f46baba
MD5 3aff79028090c8da6f1c0477384aadb6
BLAKE2b-256 f147d22a159e9a9d4b8d376b976a4524e866cce022829762d5c910c60e7e5721

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776288508-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 36a21e230bba47048b187ac88424d2487a2a7d07aafdc93915b37c3ae4f868bc
MD5 b976b61e4a0316f33bb53053b7b73414
BLAKE2b-256 1c6b113539a31369ed9ba25f067bb69058bed2e56e5325974478623918b64edc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776288508-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 85cca7b6ca62759aa9995e5cf6320005274bee3d8015d80100ea8a4e47dde646
MD5 b63ae6e4c72153c46d4b2f36c7882a3f
BLAKE2b-256 4d34220766773b45a4470bd834d28d7f8e1e9b3895304502b498a3554fa3abc7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776288508-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 094dc7a3aafa0941b2678a0ed49654f901e824505f95901e64ef8aa4077858c2
MD5 73fe6e98c1de451a9d5880f641b833bc
BLAKE2b-256 fd89151a63f7a9de05d13bc72d0b120ef001877d88cb8019514726c1c7beb46c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776288508-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 71cf2ea9f2d5bcf810ff1277bbe754ee3dfa4284b79f73b40852f95b4cd70709
MD5 fb4d88cd475b69234ed59978349efd8d
BLAKE2b-256 e6777818a68cbe6231480dcf39281ccf2012727f4c095109061398a3bd5c2fe7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776288508-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 c935da8b45dcde9573c009b07ef0eb21d07817f302f26525b09df304b9e288ff
MD5 15654ed81470b7bb6209ebb20adf61d5
BLAKE2b-256 d97d415889470df4a0d51f36d157c50e58179e9e86d08091d15676d23abe9cdc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776288508-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 bde421ee96978b51039e1fa068ede16914201318f08e64aea11e85b0842b238f
MD5 c6532daa0e8d074e0962751f4b295252
BLAKE2b-256 4354a7f95261f7aa7b2465382df779f1fb7a7ca925470fda8bc6d6f3ac59f836

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776288508-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8eebd868f851e1e852bd93ec65d6cb4a7ba79fb6bfad4a7fc4f27cd83cb03007
MD5 decaaa373802c87017aa764eec9d82f3
BLAKE2b-256 1dcebde1a2d905938361c03b75b35021f6684567fb6213c7d4551c3668973921

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776288508-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 69796462df736eaae49dde5e1d3bc432bccfd8ed3cb56e4b86c2c824d96d9389
MD5 55c4fd42b1916ce4a70085aae5b6c102
BLAKE2b-256 b5f0d5ab29b61f2890e11e2a7c1fff5fa119700041a0bd3bc9a12eaef7459c81

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776288508-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 14ccd83f6282ca46f808b7774b4cfa2050b9f20e047569833ff67c6a3536021e
MD5 feda7b643451732ce7fe650e5a534b54
BLAKE2b-256 5ea174078c6f70846d4d5fe106bb3b9f9d82948f9035aa9088b7eea49589a55a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776288508-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ca4c67c8cd58cc3622722fbd6ebef2f144b60441464d90ae71d994f3c1c7920a
MD5 8dc763f3ebcd67559aa183384283fe97
BLAKE2b-256 3a8a970dcd770ca9d1cd48224a21ccce6d0e2d271ff932291bd09d9a5ef274a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776288508-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 23d88b366985cc2bcfaae5133359d6c368cdb6044daf44cbb5d977125aadaf38
MD5 b561e5e88fd11be18e09f8a4ea13d6e2
BLAKE2b-256 e0e651aba0c0e608eab08b3af192223c4f031d0c67a6ec84aff6754e069b8769

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776288508-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1c4bfbb5735346e6ea55fc2c8e3432aadf0a3c11037b14da56d200e9a407f77a
MD5 2ffe90c9b90349e16d6d3b6155cc83e1
BLAKE2b-256 c09936eb56d488952e2807393d8d215c8bd8ef3c7b6d98b3658527c6bab1d325

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776288508-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d5e1bfd4ae711fa524e756c4b0d22eeeb2a16f89d2b44729d365df825396abf9
MD5 30224447b0caadcece0ba9c53fa77411
BLAKE2b-256 e6cd5bfa3bc9ba01b76516ade890ce3300829432a17fdbc9e3fb63d26a768aff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776288508-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 c88d69a77fd895864364ca91cfe87035cd7c7ee369e0c532bedc341cc4e44a44
MD5 381afd2f9559780184872acd84fa075c
BLAKE2b-256 9d749105058e1555bafefee1282d5b4b9c7c368ababbb922980d88feb79f2553

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776288508-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 69c7a93a3c9ad201ea3c453750087553833ad6f45b872493130d368ed579005c
MD5 e1b004b5a8bd713c0357cb0ffa0e6b90
BLAKE2b-256 97629f5dcf5aa78fa7b9f074d2281427f8c2795e36b261358a6182db752c9265

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776288508-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1e3d95d9a2158f9838975bb87eda71cb64d3498d7910e5ca5c6d07533ce594af
MD5 8eeee4d30bbeb2613dec38267da24fd7
BLAKE2b-256 15a4dcc7a9b2ae1ec39d0d99c19a8fbc898743d73692dd633cf6b3b4d959d29c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776288508-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f1fcd8a69ec7c24714a086aade4e16dc36616a6a512d0273598d947067cf30ae
MD5 b94900a0b29eaf33fc4087ba331b9781
BLAKE2b-256 2265313e014d776eae473b4dbd450411491962a51ab549c704b702b4b50cf234

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776288508-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 7935bde32c466abff052547b7c27486dd0b2d0548ccef1ad9fb71b05a9f18bc0
MD5 f2284a07d0c431250b572573dd1536fc
BLAKE2b-256 55fc3216274d456a43443cf5f7ab339ca5bed9601e782069551e9f990fff896a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776288508-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b217a8faacd11a94d208983135ad0850d798f4e67acc8f8be8316415f952a0b7
MD5 028c82cc0e3c215ecf428b03af3d62aa
BLAKE2b-256 39acf0e89546a664db5d36c6e11a0b3806c03b60892dc233454cd556b61452b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776288508-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2567eaf908db2bdc265c673566e75d3c35a690afbb46744c9377937535415769
MD5 83544dee1a284bb7e47de500e9002886
BLAKE2b-256 aaa047ec5c1834c1cd4908f229452fff9e02a30a25c789912e7fa3968ec35dc8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776288508-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1145e913e58b2b72d0f3bffdb5b952acc9e90474b45c89ee79d290b4ac1e7161
MD5 854da6182b474a1d2fa7479d075964b9
BLAKE2b-256 0d76963ef7faadf7d09cfbb4309a13f374c53b6bfd9aa79edd313f6c3acc7559

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776288508-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 7ea88a955975f1a7f97832a83df2e27a19751d876125e583b5ce8c124ae33e6f
MD5 a14cd0a7667c2f141f870b2dbb884c14
BLAKE2b-256 1645ccae41253e5997ac8ad464de0040a56e3eca7a0a2ac2f3329b392a439441

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776288508-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c952559618c5350df911203a5216ea599f7605099db015bc6c8e250bb5a665c0
MD5 7137d9cca8f8057173e58ea6c23469da
BLAKE2b-256 143502cac56fe71f29310f7200db6dce99d7a864618a491ba690f88972dba349

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776288508-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ed449c6c3a324f9d70aee799dd5953d2d7af95205136fea58934d3693aa6ac6c
MD5 b932c6ea51fa2817cb9c5a146a12a072
BLAKE2b-256 c187d60383d1243d1721c19aaca229cea9354e6a482afcf31053f4a635e6e246

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776288508-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7a36a8f6df1491836886a1aaabd602e259ee0b15e74e8739a61abdec01c8b54f
MD5 aab6cecf34ea4b7a791efa7fd9a15e79
BLAKE2b-256 e3c7723ee573a39c48764f1d883fc41ff020392fb1dae7721c72a0791c3d09d7

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