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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.15+ x86-64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

stim-1.16.dev1779419638-cp312-cp312-win_amd64.whl (2.8 MB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

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

File metadata

  • Download URL: stim-1.16.dev1779419638.tar.gz
  • Upload date:
  • Size: 882.8 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.dev1779419638.tar.gz
Algorithm Hash digest
SHA256 290a85f36e3a7e8eb180cb372d7ed491a5802454e19a072983596a5ef4e1c997
MD5 249ed5bb71e9cb68c45405edf4723b5c
BLAKE2b-256 f781a945849293472a41049158441424d96c9a0b942d1e04d02502619306e9d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1779419638-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 a42b7d5108bb7bf95a99928cf219ce5feb66bd0d48c56b57aa038e1ad5cf563b
MD5 4ee262b1033ec509ad4e75c4875ac31e
BLAKE2b-256 477bde9365d8ff0762bb61257ef5a567742f77966442d13e4f56da0834018388

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1779419638-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cc88f66d6df37768dc6fe08c7a6eb67fbc9cf4bf577fab0a52f67fa70c6bae9d
MD5 843fc57d04d23e8cfa41f521b8addf90
BLAKE2b-256 c91d1fe4b77fb2be501f29bea1663748dcad72d8f3c0740f87dbccb150f657f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1779419638-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 345c15833c685067d36ec38da8b9071d6cd09278ecbcee6b353fb696ccd39c8d
MD5 cc128502e1aec3ec5c849d7f3fdca6a9
BLAKE2b-256 72f2418e5bf8617ecfc1f3941035ee271e708641541c7dad9d9db530ff7e9926

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1779419638-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 45249baea1aa09313c3aabd95dc661d04e36427a67913c5d770ccc798d4c69fe
MD5 8622fe135dbb27728d70525df09f5f6a
BLAKE2b-256 699562b3b02a400a7e2b67cdf434dccd222b258aa2d2757db6d8fdf27e69faf8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1779419638-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 b8d7f56303b55b70990c61fec1c95efb7a86a25b570bacc76b6663a2309d1f14
MD5 14ab4044986a6d56ab597957cdfffcfe
BLAKE2b-256 8e5aca0c3d0d79a84ac75d09d74e5d52d4c9f0a2d043a4fd63b274d695e3c919

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1779419638-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e48a82c5a7063c9cf07ef44a3e82a05a7542ad3dae21005e6f7b00ad912bcd11
MD5 48c05f78883ba760634edf17adb05d0c
BLAKE2b-256 9a9c0a47d6d06405ca6ffed678c951b08f0d095af235b50c7bf251de68ead0f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1779419638-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7eb0cf78a09d23a73172134b680bd85a74fb5c36b3985d5036889c62197bcd8f
MD5 8515f85502296e6be76a386269e21dc1
BLAKE2b-256 0f523edb4c8ef5cca2290ec9b8ef4ed9c022c1f2fdb1708e50619a3a22794d8b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1779419638-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 7fd781127daa7fb9e88432373d6db2b0508313c39ff3d2468a49454d077d9115
MD5 8b079575df2952b7498b359b248e9092
BLAKE2b-256 0a87d8743b4c8af627d5580ad8d9f3ea46785e12a227aa6b31f7009978e1b2d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1779419638-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 cfdba569ca8b42f5cc1ca5d034f102936088c4a5f7fcc726dfea6e35273fb169
MD5 66638ccc44b70e5b28df41c9b624482c
BLAKE2b-256 faa9939682d3d755a080bfebd5d3ebe538e63d225fe9c66385b6f7d77779c876

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1779419638-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 33c822def721a457d4f937bfe2acf2999e46a532992860fa39d157f211cd44f2
MD5 27eb2a0093e5d41730b56b556430e046
BLAKE2b-256 68553a99ee1153bade70060c7bb46a69dd47945629d6c5bbd7fad3a0700916e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1779419638-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 92cb06e3bfb6b2178e6cf96c91cbf77c0bf7c4ec421895ea36aeda10d7688625
MD5 332dea9a1ccf82b073206ae34f2edde8
BLAKE2b-256 c7fb14a29c530f281f9b6f358151d611706f2fc987d0e9a0327c831b7e6eac9b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1779419638-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 f80470d8788b4319702e13d3c861060bbc04ae1b2a1b947d5ebebdba799c565c
MD5 2b49b56be568006efdb33b1f28da26c4
BLAKE2b-256 185cfb9b67cc4c1ff0e129d0483c02a1360c1bc877ba96ef09ca32bb79de7c10

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1779419638-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 8fc4a56315b0ace3076fce73c1c0c08b1feec6998692809d9bf73b61edbf7c1a
MD5 ab90d2d50aa7b8a3b47fa399173b132a
BLAKE2b-256 31e0e736d35ff2f2f21c80870eb760040b8cd652f0126462ada5c65f04f69623

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1779419638-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ce034db8fdabd298e31edbf5120453be3b64d033f822f99c0b55604205dca2a7
MD5 5da2c24a0306ed32b87f49886002b00a
BLAKE2b-256 b48d74e73d3a0b00de63d1e63bb74ae531d2726fab8c8a74e417b2f462eb2fff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1779419638-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b22cee478cd16a79d172ffac4c9441771defb1ccb035c38352bfeb0b534e274a
MD5 b637df60abd347d9558e28b86701ba8f
BLAKE2b-256 34345d96937b8badc43e9d6563fff76b7a92530ef22f8e94d8239c8d20c1ff49

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1779419638-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b30bec3b000ae21898c9a07bbcaa9de6ed36533c33b0bc01348a81ac9f989b40
MD5 f33fe3230abb40e2da54f996c80f0eb6
BLAKE2b-256 0e9bf7fe73fd9ec20fa04f0ff46388351ee141150ebd96b36d6912e961e260f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1779419638-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 69ffd8caab18af9d0722c6e47a7e408f661e7c1e9cbc6e2ca10fd3f51ffae44a
MD5 16cf8cde2312e0b7409dec56eaee2c09
BLAKE2b-256 0a687756f6045f28bd2c7ce4c9325ed203ac06c5974ae8b19107576c6ba172a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1779419638-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 36d44dbafd25d0532a774b2ddbb66f3432a3645fe1843b62182009c7a75cd63c
MD5 004b96cf67f226ee472018c06bdf6f15
BLAKE2b-256 f5c22c092c71ed449d8b08c2baa2fe5fcfd817ed41edf689a1cb5aecc5449bf6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1779419638-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e58c9db44ac5f890132632c40b3fbd877e2f259887f6dac798a07d65f3b10d97
MD5 fce4eac3c9694c2c727202237820b2c8
BLAKE2b-256 7bd518992b97fba95ed98d91b4fca166db6f2894347d1186f590b94c7690dc3f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1779419638-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 094ca98a5deaa21d366593d65edfb2b0b9308e52e9954a669ffb78e237659a7b
MD5 faa9226bf17d8865e2472395573b91a3
BLAKE2b-256 65b7d591b7d8703d76484187b1ddbfb2ce7e286e9518996c5523bcffeac48d83

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1779419638-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 9bdee1beae2ebc0ba18fc8557b2ceb9719420436f558c50f2e96011b3c6827ac
MD5 9bfde45ab2f6d7b06e7e995ad215d649
BLAKE2b-256 19594ecf3a5a02a2fceb53f805304b2c2ef0ea3b04e9fef4912f0eb069565c7c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1779419638-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2ba47bec0e0452f65e364d551110dab7f8cef39b5dc7324e7c493f069ab54666
MD5 9d952d7e882655010816121ffd2f39c6
BLAKE2b-256 79fff7d59200680132f03b281e43c8cbe8c658d2b10f79d8b4d9d84055ad7776

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1779419638-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2c0891f7ed0f6155592ab732da43150c4acc1b73eea2dde7c6c34c3bf9385fe5
MD5 c074f3703f8d45cdc89c5670fc9d65cc
BLAKE2b-256 4ab03d6fab87680267f421fb3a8de6115474cc336bb44b6f60bd2e5d59939f3c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1779419638-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 19eb74083c9f1e23c96ec5c229047570856b66fc4205fab7d3c493b2e8b05e78
MD5 062591856fcc9e23cb095a26804fee58
BLAKE2b-256 b958f17f662dadff39c30af38a8711a24103262a7fd63664baf2f79669f1706e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1779419638-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 9ff40aaa3b04d870a4e78c35d806409121f06ff0ea9b51e7bd38f92e468b6ce7
MD5 f4cb07372549d5aac38ea2325cd6fc38
BLAKE2b-256 b92151e429efd53eafdbd3cc4f79366a98411c3f8f479a8511c72cfb76d72d19

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1779419638-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 db4685b01b98897ea857f0b87125f52371ae203ea0076f9189feb445ece52c43
MD5 40f28de1341333c53aab4af2173781b7
BLAKE2b-256 8d52a38ba64b8e731c0c02e26d674a8704a249988cd04e3d8abb79079eafa8d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1779419638-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3734d86cda54575d940358521248d662a2454d545a9e52382c4eaaa307f28463
MD5 411fdcf028e3b5300c56826e870ec84a
BLAKE2b-256 da0891f3b465479d6ccacfff5e34783c2f8d585e939ce1f0257c06b87dcf6f67

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1779419638-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0a38412954477035fdbb15c9a03b20c2d101ff2c4d295e9e86bcefed7b1795e6
MD5 b782445340e5b2352ea64259cc182925
BLAKE2b-256 3589a64f3d79e7effd34b6a9aed395e4bfba66eb466d4a6468eb024a1c17cded

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