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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

stim-1.16.dev1768465883-cp314-cp314-macosx_10_15_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

stim-1.16.dev1768465883-cp313-cp313-win_amd64.whl (2.7 MB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

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

File metadata

  • Download URL: stim-1.16.dev1768465883.tar.gz
  • Upload date:
  • Size: 876.9 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.dev1768465883.tar.gz
Algorithm Hash digest
SHA256 a6a83406860980a18030ea6721ba0fc577ea95b15409897a2a5a2f3333ce9541
MD5 b25e9335f634461c61752a91a9c82547
BLAKE2b-256 0b27d989f561ef543066efbf70fc4ab15e91a3869ab283970b5affd7f9133533

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768465883-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 b24594b5232ab2f3274a077f258d7278f47aa237076afb7954515739bfb4166b
MD5 7527b91495d7452f63704834f4662d6c
BLAKE2b-256 7ec84d61510d53fab15517f195fd2dfbbd03bf8d24c0d6edd86d0328b80f69bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768465883-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b2b721cd0fbd6b64d1cd8bcf2f0c5378c1bdb36acbba0d5dbebc635041bbe870
MD5 c99e3f660686541b818e275d26bf156f
BLAKE2b-256 7fb3e4d912bbd4951ab1c4337a909dd5c18985432f9bc50cc3254b6834256808

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768465883-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f6ffd35019ec5e829255b2420a5ed8cdf52612081daef9fcaa0983ee92164548
MD5 4b5145d65f032662667d89ce8e2e5bf7
BLAKE2b-256 24a237d9639154a0cb54f540b695a90fde3e48d25fc2aa44b0ebf19f34df4fad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768465883-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 ee5952641174f84528264cfc0e43b700e4db0911492a27f13af6f83d0e6942c1
MD5 aa37d35e239cca4bac07e2d5760e1b3e
BLAKE2b-256 063baf90db7001b0bf395f9423b245d07e1ea779aea141cda4db6df8591195e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768465883-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 72ad69de57e9a9c35193c78bdab3a98a8025557202edd0d81c5bac7dbf63790f
MD5 fc024a42742dc29bfbf521514eb2de70
BLAKE2b-256 9f237476d80bd217c90c9fabccf8383c7f234073b932107b0cf1f35342e4d0c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768465883-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e7cf3f0f3f351b1b4f727ef59691ac4063ec418293d7f9232b0f25b611ed3b09
MD5 7d6714bb192ed83f94b51094dd5d528a
BLAKE2b-256 930111d3727497ea6cd5fd6492b011b4920c9682132808152f17a6040d8fe3dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768465883-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ce79ed5c43b55708b246af3343fde8b9eedb833040a922b51e59dc5aed9eff29
MD5 5b3920ee25f5a65959fa44f088c4ba9e
BLAKE2b-256 db6c48614bd1d54c4037b38320eb58fb23f1fd5461ab69e2c92b558db7006dfe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768465883-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 524dc7e0e347f632a39f2db22aa5309651de1622529dc017ea6b7f8ee0ff81e4
MD5 938a0b15bf038e527db82af0731da80f
BLAKE2b-256 627405f7cec88493d3ef1165250a5a2f86286415a0132602eb58ddaab067e14f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768465883-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d287c8fc152c5473a2ffd047a9eca3c47129376988a8a3f057ed29885e4a06c5
MD5 0cb3f629148c5c2afd0c2cad4db6aab1
BLAKE2b-256 b77f77ef8d6efde10b374567cd38beca8b38a3dd0a0447b99e98471ca31d8a50

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768465883-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0150a2b5c0613b0e4301bd30c56ada55d277d1307862d2f42bfd7712a8d9c9b1
MD5 ab065a555304d745a6ab6b552336d8bc
BLAKE2b-256 deea847c81dcea9b4b3da777903047cbb442d351ed401d910c7206d61f4bd0f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768465883-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 507cc42c5e20969526de67f00d25110ffd07c5254060ae588875d6e9b1147a2e
MD5 e8a9adfcef27a608b3e139da14df27a6
BLAKE2b-256 242f8fa35f1ab977e842296f12a3738ab20d6cd7015b541a380f734e604e0daa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768465883-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 1ee95edcffaf5f22bcdbbc3f67ff922b5d08e6a1091aa4ddd8a17ca6bc8fbc04
MD5 91cdcb75bc8fa86eee7a3a2f80b6d6e0
BLAKE2b-256 0a747fbf96532a126ed3480b1f255eea838447f4cfb936d4f3e79eadec280607

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768465883-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 35d8e3bd1c50258e84b53c9b8c0b0e55ba01611bb9d86c363884e27f88e44b5b
MD5 8e9c4cfb67b3a0ba18820939da690d88
BLAKE2b-256 1244024f473cfcefaa2d560d419e9a3e647cb290a2fc839c1cd25796b5c3be66

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768465883-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 defeb0c0f8ed7f5249a561b9500956caa031c344756e770b0bde22cd98567503
MD5 7df5e132150a37991c67daebe27593b2
BLAKE2b-256 23adc2d58314836a550cf5b96d96f0207b62058104c303e3fb7122d79e753822

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768465883-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dc240160e2d4123a4faeedbbbc23e06e5a647a4ede6b12164d9f4b9b157fc2e0
MD5 3ceda491154fa46898641769cd2d3960
BLAKE2b-256 31df2ba4cd508ae8184a8ebcf849a7bb7b3f5b010148cbe9c9b6c813a1da1715

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768465883-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e61a04e1d97b03811fe619a7a33ce0ea7bb1a918f4dcc24a369a53946ed695d2
MD5 aa557ae75b9011c21b6de55765269287
BLAKE2b-256 d0f8afa32fc0f7823087054055dd2c012a3b8be1dd6d4e00b943c663d46622e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768465883-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 0e77aa29f894ec9e11f5864ca3eef0e8d6f85c0fd7b982e8a18d71affb7438f2
MD5 07397d1ac1ec59a1dd4b981868141854
BLAKE2b-256 209d94324718d3cf6c33e685638e622f35ceacf55248d001b9ed3332a4edb7b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768465883-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c0187bd788d1d3312a888dc64f0d73dfa78e782743e1f36eab290f6dcca487f3
MD5 8dd3637b79febe73f2def740991580c0
BLAKE2b-256 788f1ba2d6af9eade6be6c0725563336818755dcaa84f7dfa52897a355c5bed3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768465883-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 53c7244e6fed5d6a9fcfa059084ff827c07345e917df3dee7b11835cb69ca554
MD5 bc5cfe7391ad0b8ebd7b1477eeda9e57
BLAKE2b-256 7e4cfc854dec62efe35c76533320a70e499fec60ce78afff694264595a04a034

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768465883-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3cba7eb3811ea77d83251528e25bf4c921b5a093692e10e106f1e79a9d65c71e
MD5 d69ae7328c441b58e19fcf98dd37163f
BLAKE2b-256 ecc6f8a8a5c0d0313c09d3aec71a8d05427c60c0c11b835e7255ecc7a42c540c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768465883-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 304aff6c01af3883aad0edc48ee454d95818ae9041c789db413bc6fd15faef60
MD5 0b32b41d8b62a87f2ca0daeb01e30a65
BLAKE2b-256 d0622c01f0ecea2413c4021bf4cfb81e0dd245a01509f9b046ec755ee98d63b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768465883-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 61fb70d1ff3da2e72b68e7ab133c3a36428c67a3757c8504a82614b9b9466d24
MD5 e4a6b14ca63ec27018c5e3340284565e
BLAKE2b-256 5a9c63e5eac5a2c39eca932d80c04cbcbc42d9c1916e87e168e03162e9e12714

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768465883-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4cf187a27867266f1015fe97d9bfb2e6355f9d7314b76f6ad210d16742a197d3
MD5 56de95bf75bbf71bf64080602d0294f4
BLAKE2b-256 cb512ba9dda0c5706dc69eff2cff5f04c7f853ae37ed9eb6c384f7e438fb7a6b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768465883-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 54dbdf18d2caaa70f12c6a4ffd2bff80a560ef6e7c4558e4d38325a5462cf978
MD5 ea762e8e7d2692142ffafb01415a43c6
BLAKE2b-256 478992908a18f43399bac7782dd0cbdfe5d9a48411645def9ecd8479c89521ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768465883-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 35b417518e99ef26e4de41dd38795417b5d62c9c1f79a24d534ea89a6b9c0d53
MD5 a31c995e7dd62a86db5c77e690d51c3e
BLAKE2b-256 2ec28a4471cc0b8604b99aa846a232c9eecfd3e95eac4288f6f289e04d9c7153

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768465883-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2efe5e9db5a9c86bec3c86878cbe8488bc174d7d2c36751e526bccf29b8bb2e9
MD5 c462b5787cfc4c5b44fd0453ef222c02
BLAKE2b-256 0510721677bd9962b0c72ddd93f33267deeed4b9e459387a5f4607059d51ebd1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768465883-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e2123f82c48edeb82ec2c2c04206d25818e2ae4f00e3de17173b1f00c3ee0a88
MD5 464be39e8ba3e0ee9655b207a18bd1a7
BLAKE2b-256 60fee0247ae5471b493627d7c2b116cba4cd0350c7e9f7e87a62b6c97f60d68b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1768465883-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fa803c1d002c1fd6c43a6bfd2dcc9023d184c8efa897c654dbb8ad142606a9e7
MD5 503fd2c7965fddec733f4a39f56de093
BLAKE2b-256 b244673d9c872177261142ea623b076ba5b2b7e66e6704c72e8c596659086892

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