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.dev1778646275.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.dev1778646275-cp314-cp314-win_amd64.whl (2.8 MB view details)

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.15+ x86-64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

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

File metadata

  • Download URL: stim-1.16.dev1778646275.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.dev1778646275.tar.gz
Algorithm Hash digest
SHA256 883154366a1c57fce89a08c458a8cf4d3cec72069244b8b1d5017ec749fbef32
MD5 c11e335265a04bcbb77a711007c7e901
BLAKE2b-256 c18a054dd766cde8c7f425048559fca42c5b59bc5cf8aea18f6fa12ba4013389

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1778646275-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 a1925051327d587c26713adc9b980234b1d598e7ab1d08798d335786590e4af4
MD5 828cbaec88de2d7d24dd7cafe5ff2feb
BLAKE2b-256 f3a43cdcd4063ead8d9331e5882df0b030b882bb0666ee9e405d7adc753c39f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1778646275-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7a49c04196cfc9b12da36adeae121b9f296ab83d2b89e759d8b35aa524b0cc9a
MD5 785f1b7643676111627102c944133f5c
BLAKE2b-256 ca748d97d54998ca17ae43d4277ae87f2835c4c98d414a971b16d146828fb553

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1778646275-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fe042223093c7592860fca8f892c02c4ee3a3bf966084c81378194a911121d21
MD5 78249f0b909a81b7b86fce0a51119d8f
BLAKE2b-256 b9c934696d30780209bb3ad25db516e294ed693aec1684bdd34ff506dbbede2c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1778646275-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 a6bee2039b20a121b66d196c7b704142b639ba9f740838cd842c7aa868499465
MD5 c62156406d0b905e085448b6f83681a7
BLAKE2b-256 d0a207c17b7807f67eb7a28a81cf190c8c8e4a61aba9a28fe1956cd89f3a5d91

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1778646275-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 53e2ac8a8c0dcc738ef2659cfcde08fb7f609af1397877225543355c20f545c5
MD5 1d2dbbaa3901d7be10e6caa420c86dd5
BLAKE2b-256 cb62e1547a914450a54b3c7c3577f073fad032a59d0037cc6db4dfe9b1799f09

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1778646275-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 657eaedb5d6600cf04affbfe5d580c8c28533464cc50b223138a8252e00ce2b1
MD5 ae60765078b6c9130715edc1640e50f4
BLAKE2b-256 882b53d02d75df41a8c1f820c12e7cbb89008e5ebfcb0fb08bc8b9b4711403e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1778646275-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 50f829fd6d39bec2530e8c0dc5f18371fe9e929f551925294b12268fa6d4d52b
MD5 fe70dd179d42b76bbdf0a58e1d7801db
BLAKE2b-256 64dea80a5b3ef1096f9d534b9e9c5c8af18bdfce2bfe2b2cb8ce323f55d1d8df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1778646275-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 7e2c82445d985285ed90224732af21b89f77b1b0ee04ecb484ab91a348dad9e0
MD5 09bf1ff987453883893117cdcde57476
BLAKE2b-256 3b155761d68dc759d9fdec02d269e8817062c8ac4cc7df3c1f32bcf1250f2bd3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1778646275-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 41613fe8ad164e614fd728878cb51c6af5a4d503c530f9d839405cf89479d1e4
MD5 6af605644e5b172ccd50ce5f02b818b1
BLAKE2b-256 6b1257f91f99ee458b08bd6956fbeb59de7a53cdd6a5a4fb383b6dcc3d418c9c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1778646275-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 68fce7ac54791f06aabcec596f4561a5b9ffdd9c1fd41dd24c447f9c5b0d1418
MD5 18e67459c9df6126ae46409a8076e159
BLAKE2b-256 75b97127feb34ad29f0fac5bc2738fbb9d3a2c5c6f5b13c1af7fc879b75719c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1778646275-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3b32e07cb28ef7fc4a55a86bbdd954036750831d5d165df83e2a16f8a2d19179
MD5 9ac7aa847bfc32c3ab10975bfa9ef0c7
BLAKE2b-256 14bf923636a540d6f7d6c86c3580e233e5686825d6b75a4c265f20b3a27d0f92

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1778646275-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 1f423866203dbdf5e50ed6b9713e98ce7dddcab2079ed6397ffbcf407a714b37
MD5 09ca7c5e0a558e0b3832509a01af2ee9
BLAKE2b-256 ecd904a9958f6dc6f3c29cd23a7a7b86177a0a8de9aa090e373513eae3ceffe6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1778646275-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b4da46ff0ed3563047a1bfb2d3a427c7837be8f1f156959168d28ddfdf3d1771
MD5 1f4c9b0dbfb2108ee313004a4a29663b
BLAKE2b-256 e74fe6114eafb9471ae0745de49fa2b76a008df0dfbed6d70c6d31e0713fa3ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1778646275-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 323f3ef8a8da00b32b2f1073b531f607ed48c4e261bcd3899781cf7744b47a52
MD5 b2d571131ddd201cc6fa91adc5785ba6
BLAKE2b-256 25e6a77bf50ad24d8003f80ee7c539c231590a2b975bcf37d0a36351142a01ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1778646275-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f8fc657fb22c812cfd79069e0c93f06cd0e5840e7b5257baf9bc5069af95d9fe
MD5 cd8dfae5cc8fb46eb4ad5003fb5198dc
BLAKE2b-256 75f052fe6a17ed8110e322262a097441411f676a0640745709b0a02b47b75302

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1778646275-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 52e4d5d4cefd3de7c12a509ff9fadfcf59f84395d8ddf755db8024ec00c3ada8
MD5 2d8ef145cc17eeca3b6c1fc00b1c3b57
BLAKE2b-256 4d89cd46d636d63291970fd2d139d29025ffc617a31c54745c41e7fb7152191a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1778646275-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 58b4213d500a5477f86118b0ab935f81d85231bbb0bc644079b52f9c2b4f5fb5
MD5 5d2add700fbe518d0a510063f520391e
BLAKE2b-256 6080094a36787fd93d3afdc43ac7de58900abbea5c9ac230b2afb5a51c5c7017

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1778646275-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a86617ab60214ab57dc396c68d1cdbc6af811eb71f0ffba1bfffe2eff418ba70
MD5 5568034816e3adbc3edeecf4fa3d4a29
BLAKE2b-256 4de2cc6fc141f1c5a6faa787fba0923bd5771393b816ef65079d19cfb619a36b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1778646275-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 53b21fb6f40542d8ac790dfd307c87ba3d841b09d9e521b2b6bcbf6035aeb6ff
MD5 391b5e06124bdf76ba40b820d884d903
BLAKE2b-256 161567ad0306abb987ab7d69fb4cb893326f27f26e3723c1e5bcea63c5620a4d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1778646275-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c1e564778657dc5e328b4cb110e8d062720b60f94d72d189aa72d692b3e7a269
MD5 d680885d3e37ec9371bb4032093630f9
BLAKE2b-256 27db7d1327d9a9ee5da6c23b66b5db2099dc1a6ab09b82605845208781f3029f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1778646275-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 0f56d851ca83a43f96b9b137539b4bfb4366e0a46b9885ec779b138d5e1518df
MD5 dcc27a9c06c519d253e8cf575a2a72df
BLAKE2b-256 08ce2888fedf18521defbefcb9ad04980d18afb40373acd64ab59513e5494488

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1778646275-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 71f79e3357ec59660e37565a3bed42de3e4b827ba4d584e6d547facd379971b2
MD5 7724c95c0edf1c052aa949594b57ae08
BLAKE2b-256 37470fea5a5546283fb578127a3ccd2e64e24cc94937aa642b5a3b740e1d3297

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1778646275-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ab2598645afe042285b614c16f701cc62a1846cbf5f6cbf0710bd45180a7aa6e
MD5 1a086d05706ac2ec286ea6ca6c466c31
BLAKE2b-256 b21fe5a01909f7d52778b185df1adeed256f856a2dc3e8abc539e6c443744d80

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1778646275-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fafbf72f53d5dc562b89d4c9c736d52b7b28ab5f71036f1e1bbffe09b315be30
MD5 ef4402c02d26969fc17bf46846ce2b36
BLAKE2b-256 683390b93d94ad7d974ead5628127d75a9ee270a5fa40484fb696100960ac57e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1778646275-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 df28dbf25f7fa89da9a9b8bb2afbc156104bfe5e209f63d3b7ac4b5e8cedc1e5
MD5 1a8cdf1c93a7080aa5c42044e56ac20a
BLAKE2b-256 a23790b6ec7562f932c0f6e1c9628982fa51bedc928c30f37bd53f522dcccc30

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1778646275-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 19caac359f85de7a0a578167e330f83b3056c45a229768f7a611d38daf77d962
MD5 61a0624dbeb6ffc4c89d527e568a08d9
BLAKE2b-256 8125e6fab189e7fc7348a31c06acd6d730075ae19bd473a9eccf7c698270956c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1778646275-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ff7665822770be7da9386c2131fba50be15cd9f088810915a426457bde9e70ca
MD5 1dc15af1bfbc5cd84c06b3e39c9953d0
BLAKE2b-256 ed38ce6cd1a9baf8c86922b2c677b8d063a29a649f70f812e9afc3440f0b0c05

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1778646275-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5a0da133b3a56dd02a92c5c561f8f9c64906112f22a63b0b1bc77e364077e439
MD5 3af32287d1fc0309c531a7b977098240
BLAKE2b-256 787849b67f9ea608daf5df39bb6dba1762883eecf2985d834dc3a21b4d558ee9

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