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.dev1776305483.tar.gz (882.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.dev1776305483-cp314-cp314-win_amd64.whl (2.8 MB view details)

Uploaded CPython 3.14Windows x86-64

stim-1.16.dev1776305483-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.dev1776305483-cp314-cp314-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.15+ x86-64

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

Uploaded CPython 3.13Windows x86-64

stim-1.16.dev1776305483-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.dev1776305483-cp313-cp313-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

stim-1.16.dev1776305483-cp310-cp310-win_amd64.whl (2.8 MB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

stim-1.16.dev1776305483-cp38-cp38-win_amd64.whl (2.8 MB view details)

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

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

File metadata

  • Download URL: stim-1.16.dev1776305483.tar.gz
  • Upload date:
  • Size: 882.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.dev1776305483.tar.gz
Algorithm Hash digest
SHA256 6a93e790edde095fd3c352f311af001df7bf0e2a284e89e8e00a666c16954522
MD5 d3532ccd1b4b5758b90d2db6c70bb8a4
BLAKE2b-256 ded099643594c5065c71452a456622ff7d333f9dde66704b3b7fc5f53eb8392f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776305483-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 fdde170b18fe0e5d9cda081d851a9e80222ae57808cbae74e4c1cd50dc7a90b5
MD5 c988635a2dd474b701aa23d20302dbe1
BLAKE2b-256 fac88f9682308a16d905c960024b3f682a057245edd2c61b08e417b7b22e76a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776305483-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 085beff2e66d68769d33ba963e56827a239f220a645852198db8dafde1c4fa92
MD5 6548c368f88ad00b158979a52a47991a
BLAKE2b-256 5805f0e201497396555a3204bd514afb970c68f0e481e9af794daeabccc14086

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776305483-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2369d32570f8d7f9f04f318987ceee7985086462cb320b2e3f38468a4e8be21f
MD5 4779b06cfaf68f18a3643ac1c68396e7
BLAKE2b-256 c653b9b2a560a4007582f0c2d70aa9a3df56fc6411ada63b09b809c00e2ae4c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776305483-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 9d2813d22124e849049f2f1d2c1b83e05c68eb99bbfc89cda85373a1a9772419
MD5 b738995dd0d3290f3eb35b25cd5eade4
BLAKE2b-256 d96770acb19843a631240156bd1f878edf502318abecd588c9e668991c65833c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776305483-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 12b122d7f2d6d04875cd301ebe5cf2591db34289268d79a3f7c51ab4b458e6af
MD5 98bf96c0b94b9aee769536580cc10394
BLAKE2b-256 b998edaae51982274345c93d7821e30b696e7d3d2af2e68546ba4882ed8cedb4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776305483-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3bba351b0c566c52808249bf50c081a2069f4c61c03e0f7c3a5025040573ac92
MD5 f5c183c3e18a27f8b0d665b6ac3a32d5
BLAKE2b-256 e0bb642b326fb5c8f06cb4cba93995ab84c9bd0628e14ef6f305f785a9f0df8c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776305483-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b222d94fb7220f5e6cdc02cf9d12de249a34a2b3c0f7e380f0db9b43b63bb29e
MD5 af3d35e064f5713f5314c8d9663b8155
BLAKE2b-256 9ff7813ebbe6f4b4cb23f060aaa7f6635ca81b67a341450c7a5178f6e8e576c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776305483-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 f3a28db0ece7128d4fae3d1ec5398a6a40fc5fed737eab4325bf9b85cb38c76b
MD5 a83388b95b4b591224c8185ed6c8f687
BLAKE2b-256 518fb20772866c55e04822ae460d2c68ae4321d8c80f3e06809d4973375d9fc7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776305483-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 04726a3fa770954c6cd08243f25a7fe3abb6c2908b0756812fc7faa9721cf27f
MD5 b51af0dfa939d5f02974c3e9bd7aeace
BLAKE2b-256 7df7e41e778f04a07e6e033f20cb8b10a25b5b60b2ffe698949571b320877daf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776305483-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b419a60f6609781e640f3f28487d9765effc412b9c35bfd38a9d39f86220865e
MD5 e7fee1a2adc86d826d668b622349723a
BLAKE2b-256 1920e8246b53cdb1420e831cf4e88f129062132da8a6c9a68db13f473648fddf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776305483-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6bf9313cd96ccebe879e1885b79ff1b1916d0119cb31f0566a04aca2b29da234
MD5 20d17f3b347d5b3da84a1c63eaa88de3
BLAKE2b-256 77f6215b78370e06274e629daa9d2bc90f620002ef52763358b15ddfb7fdb744

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776305483-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 56eea736398abf69d6ee175eb3c18ab854bcbc6140da46267a3451c274b6f09b
MD5 ba15df0ef5205d3d4c69b89db85ef07a
BLAKE2b-256 52cc19730e9384bc5a88fd6fc2a8283aee87939e83668f0d769c75681fdcec6c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776305483-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 be2b552d67b904f89fcdd7147bf886c40be4a360d71643fde7db81610b61a455
MD5 6da8e0f0ace1ded875905d9f4bc80a2c
BLAKE2b-256 bb88661937e7e3c3ae141202c0935f39a732d70945550ae42ebd8d8fd430a5c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776305483-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c368653933bdb09ea983edd6b491bdbde954c8d4fc2912de0c415672457e09c2
MD5 2901909913135728bfb445a838e248f3
BLAKE2b-256 515d690f9988d932ce8f6febffd6181730c4f19228a610e7267e4bdf92358332

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776305483-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e7a4c56c33a5eed2e4a85d2d6b0e3a677c390a27b0c08b11c211dd9603c3e38b
MD5 6f4438cfd7263f4122bf43a5b3fc2bdd
BLAKE2b-256 5e00a32624be0e19441923fa422a7a6e4ed2b145549f9ed754b5ce7ed1b79053

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776305483-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7561a3a2bd2999ac039c61f88311c5dc44bdea92ef54f648179aa5f2702ccee4
MD5 8b9e1eca49caa5a10be5bdf03f788ebe
BLAKE2b-256 c2882ac57448db88e0d5ada85479914a62f22e9d71c0bd214624a4a39b243553

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776305483-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 387955ac1635e07c7759217ef1bfbfad9c6917bf43a950543300d79048a1fa81
MD5 02f1e9958f55a5b9dfdf2aa532f654e2
BLAKE2b-256 ea23c779615d79e5524e99683fd2c2552b3e32765f213f490b8e1c58864e8e8a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776305483-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 faac7871d98ac77a99e715e20714f2023bf487d07fa2c8f4d1081d782d26c8d8
MD5 99164d6702c617661fbe8b6f72c14daa
BLAKE2b-256 84054f776214ed130b11b7ef42fe6eaf358cb18eeb39a311b0f3c13858b18d80

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776305483-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4f60d6995bce6901d5a32bb2bab9f10ac942716d5098629b88d4d1cbb0c11c3f
MD5 1362fab73df48aedaac28b62a1d05c02
BLAKE2b-256 a8ce242e22f30d285b5513bcb312ad39060fbcaadf96efcf3cfed32a4fa68a7f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776305483-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b614f764815e65c511c71edea4a64edf7db0a7f9f2cb43795297eaa922d08c4c
MD5 be6bbb8b98b79afc7852f986bb21ea3c
BLAKE2b-256 3b2afa006a2a39c7147586bf3c37d9c5a96dd7ca23cf0ceffa43a94f208f2767

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776305483-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 37bb74751de7fd5d96df412dda9836d1efb5a5e712c59b4d8c8e5782396342b2
MD5 7cdb02a99602efe0697b6b5cd5b336e8
BLAKE2b-256 9f8e2bc8e9271749857055df4d9222ef5119031d4a5edc77364a4dd24c9a1781

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776305483-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3ce072ffb731f0b16db3c80bd207b1047db91d1a44c05d85f3cde8de3ff80d2c
MD5 c80682c6a6f57bc9d3d760d178bae5a0
BLAKE2b-256 fb05c820846626b3cfea51c97ec1d37d9cdfd7dea84164374e51d1e446919864

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776305483-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4859c77c6707db8f403ebb317df184d329e07e407291ecc768f2df05780c01c6
MD5 2309c189fb91e67582ace093f27f1c40
BLAKE2b-256 0418f8941294d30a2a6134e9837711aa5c9ecbc208f9a0a94de35ee3def34bda

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776305483-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 babcd832493b8750a101bf0468b23d4be5c8a393b2326ad4b1f08423a5d8705a
MD5 ff70d7005d715529e826696f3e99c7d9
BLAKE2b-256 53c870fd93763ec83ed324dd7e4b8b509d7ada0e6f719e5c6c70cd5b8d1d2003

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776305483-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 11a2ca2e1a2abfadc0e077ef01bbcf6bd65a9fd56aec689836cd0f97a0152bc9
MD5 f5357c4dd06fcae00b9fd352eea63545
BLAKE2b-256 d1949047f5da8d985703a6221d96f50bb06d344d25c60be7559023553a8f69cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776305483-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 51d5bb983cf8c2b4263b848aa960423c85193dc76d7d96951c4b5923a30efe6f
MD5 66b856b7958cc59872189c0c4e5157c5
BLAKE2b-256 e1c09497effa64e1340d7a5cb31bed94778863fa8cf0a519a9d4a2aed047a410

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776305483-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 421c0ba33d7da110cbc9797433abd27c159fc235af56276a432ba77862e8675c
MD5 1431f49b7dad1e9f064deb99e90d5c53
BLAKE2b-256 36f48bc9f3bbc0aa9caecae74eb20d4d9cec77a01993a4b2f8c4e374e85d6a8e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1776305483-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6030d1dd5f47627e53a589ea3aa961f7c2ffde019933fbcb492888cb44f3c490
MD5 2fae6bc9581b893f111eda11a5bcb5b8
BLAKE2b-256 e4149b4308714ee3f0298b1fe440a3cf1f3d41630de2da481da3449d561786ba

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