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.dev1746599232.tar.gz (853.4 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.dev1746599232-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

stim-1.16.dev1746599232-cp313-cp313-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

stim-1.16.dev1746599232-cp313-cp313-macosx_10_13_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

stim-1.16.dev1746599232-cp312-cp312-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.12Windows x86-64

stim-1.16.dev1746599232-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

stim-1.16.dev1746599232-cp312-cp312-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

stim-1.16.dev1746599232-cp312-cp312-macosx_10_13_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

stim-1.16.dev1746599232-cp311-cp311-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.11Windows x86-64

stim-1.16.dev1746599232-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

stim-1.16.dev1746599232-cp311-cp311-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

stim-1.16.dev1746599232-cp310-cp310-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.10Windows x86-64

stim-1.16.dev1746599232-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

stim-1.16.dev1746599232-cp310-cp310-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

stim-1.16.dev1746599232-cp39-cp39-win_amd64.whl (2.7 MB view details)

Uploaded CPython 3.9Windows x86-64

stim-1.16.dev1746599232-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

stim-1.16.dev1746599232-cp39-cp39-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

stim-1.16.dev1746599232-cp38-cp38-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.8Windows x86-64

stim-1.16.dev1746599232-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

stim-1.16.dev1746599232-cp38-cp38-macosx_11_0_arm64.whl (3.5 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

stim-1.16.dev1746599232-cp38-cp38-macosx_10_9_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

stim-1.16.dev1746599232-cp37-cp37m-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.7mWindows x86-64

stim-1.16.dev1746599232-cp37-cp37m-win32.whl (2.4 MB view details)

Uploaded CPython 3.7mWindows x86

stim-1.16.dev1746599232-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

stim-1.16.dev1746599232-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (5.2 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ i686

stim-1.16.dev1746599232-cp37-cp37m-macosx_10_9_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

stim-1.16.dev1746599232-cp36-cp36m-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.6mWindows x86-64

stim-1.16.dev1746599232-cp36-cp36m-win32.whl (2.4 MB view details)

Uploaded CPython 3.6mWindows x86

stim-1.16.dev1746599232-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ x86-64

stim-1.16.dev1746599232-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl (5.2 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ i686

stim-1.16.dev1746599232-cp36-cp36m-macosx_10_9_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: stim-1.16.dev1746599232.tar.gz
  • Upload date:
  • Size: 853.4 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.dev1746599232.tar.gz
Algorithm Hash digest
SHA256 f391178bb384f10115105229314a9a954d0febdf21b949a91203efa11ce3de11
MD5 3962e08ecbd8452d26a1eaaf4527484c
BLAKE2b-256 d6ae4581a962c3c7a8c835ea32c7d23463f2e2c73955f7b73c4c166364ca165e

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1746599232-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1746599232-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d24dd0ac6771238b75d9ee10e2ddbd847db5a4301a6f59c6a9cff40a5334301c
MD5 8f81ab7a931e0895215b7ce05cfbe6ed
BLAKE2b-256 0b86637fabfafd6172f72f893c7cea71134b5660a7e301fed74dae205dc511be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1746599232-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c006595b181fafd4738f41b25dc9174d11f2922fb3d8acafc9bedcd13c3dcc66
MD5 c7c0eb1842602815630d0f70e8fbd454
BLAKE2b-256 6e293a5c66f4eee4bb98da76fd2b2f388ce39111d3aa0800181c15768dbe36f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1746599232-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 27e85081d4f5b9eda1aea5af25a65f5a2830f2ecb2d4cd899f8ad51adb7adfe6
MD5 96154f05a85582fa82cac9ad9c44a195
BLAKE2b-256 ed2ab14ad0f4eda4d9c91b3895998c11c894a574b0d2191bbc11d57106d286d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1746599232-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 df8327c8d40010c4a3f708beb7a9f0a56ca3ae56ed73c66c8f80b04dfaabbdc7
MD5 32dfd92e83d3b82f162598a6509d7731
BLAKE2b-256 1f95df9bc6be1c6f192c9b39bda89206dd6057c3519978bbc3e377ebe162ca90

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1746599232-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1746599232-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 32a6a24e7ac7252959aa2c40d59fe14d8b9ec898cec9d17cade13da57d4b50f7
MD5 8b04e9a29f7b965d5ab9254a96421173
BLAKE2b-256 deac75d27d57a36bdb4ba50fd6f47eb31e5453c67675b8c8dd04e5062037ebbb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1746599232-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e05b733d945d766d325a7961f2e968ea44c89112af001fa14e838a2a5eee6574
MD5 4cd5d6991f8f18685909f7f941c149ba
BLAKE2b-256 e802a7568f589905a839e9f27a1798ab5b9de2b3876212a3c24170a0f2425abc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1746599232-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 319433ba8b04ce75ca917e340f126a515a491b35d7dfa46cd45cb8b838cedfbe
MD5 292c61adbedb8de87b51cec8e5062ec7
BLAKE2b-256 327fb36536e7cd4e3d33b2640eb910a6561b845d39608b1c3ffa097eff168603

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1746599232-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 3d609f9a02e0e56afaf51d1457e9caa6f28cc84c88d3bad0ec3324fb8e9aed58
MD5 b617aa3bbd61bfd198781586db29ce06
BLAKE2b-256 5066cadcc8f2c2789c2e0c718cc0c38aa2347f7721681a5e1dc0e2df229258f3

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1746599232-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1746599232-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 42e3cd0adf8ac09c4506171336533cd2b92422858339b38fba6a667f318095a7
MD5 0363cff8da7281d776041212b9a4e68b
BLAKE2b-256 87558958f0991a0d2fd8034151bbfa43b4e58e1e2360b9adfd9349482d184da5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1746599232-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7e055a9db6453fbaa235e82e53db502dca712992a190cc97309a12661a198baf
MD5 f8f328ee5c61f811cdbfc06db4a577d8
BLAKE2b-256 c5019b8a8639fd8bdd45ba8c39cc48fe03a1d1557f41498114cb4b5e86588074

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1746599232-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8d5a0c61083a1533d0406b2fb73145d431a4267f9a28d01f92c1f4354cc9d4b5
MD5 699e8d610eb097cbab25bd681651ac70
BLAKE2b-256 d1c1e1a677ec9354b846f72064a508b9a5b23d4634f700e82fa421845ed59c20

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1746599232-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 0f9b53557a78e22a854daf079180ea023c66eeb9b966365d2eb84b2a11b1275a
MD5 eac73097b55af5d8b50e381a25e373d3
BLAKE2b-256 01d8206ed2f82f94b889176c5b87af67c7579b679682f341acc42660c5f33bd8

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1746599232-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1746599232-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5b7a8efc01bc387f7ba98f56320108c88bf6b6ea92315e598ed5a5c981ef31f6
MD5 319f8e89079e93fbe0a304580b7679a4
BLAKE2b-256 8414da173ea13e984e04eb13ffa4732deebc25f500b632ce7c3602540cbabbda

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1746599232-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3005c9c550fc6f5eb79f9b0f6a1a677fe81a92dd73dee1d4cf32d29d064de04e
MD5 3f43988cde027b60c10a679688ad82b4
BLAKE2b-256 2979acaa3e8e4463a67c6117088841c03090e19f53d1151935a3dc7ca867ae22

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1746599232-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6f81b6f32aace35cee6feb65221c72b39046ded8cee4fdd70e76982bb2e83e09
MD5 3b41cfbf52f56d6440a163157ebc48ad
BLAKE2b-256 8f6d436fae3737e8f638a3393ea0b51f4cfab371d442666503c090139efaf4ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1746599232-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 52a01ef98cefd40c7010a627f50977c5b97b0a75b7f605b42211f9a19f7f93c3
MD5 df9e54ebbda8022e068cf27c509abe37
BLAKE2b-256 e8a09429d6fcea792f507ff4a99c8e8c590342687c20ba22a897788a720be95f

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1746599232-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1746599232-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f098f296d78b6acab2028f96ad8b7e9a92fbba03c820bfbd21eb0bbf3a07d7be
MD5 4818ba2cb0ac6307c98ccb3b60f7a8c1
BLAKE2b-256 20885dcdfef37550411a530843c4c71194587922678b055681e3f105972702fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1746599232-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1e322801873156223d400cb69173614fd0ce6ad35d897f7884757a96ae3d01a5
MD5 26b6a7e6fbeeaaca646d51342306838b
BLAKE2b-256 192c576c09007bfceb2da69685265c218d7055d6ae42746ce15d4a13027e1789

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1746599232-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bc870ff67c5b93a473c35780e18f68fa9674d6894c439f0005558f600e132dcf
MD5 a6a5f3b15b168ba31c7698366e67ba28
BLAKE2b-256 aaf7ea6238fa0e63680f504af18085b4ade92fe0795fd12247fc53df78583c6b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1746599232-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 690252028923354762d21c8643ec5e25fce2495c4f7738a630b82763d36de871
MD5 8780a94c748afc3520a678d4e6a883a8
BLAKE2b-256 65a417008e56a4e89b9f438b8c5ff3262983668f79075dfef2b04424c229fcdf

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1746599232-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1746599232-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 640c781ec730ce2f5ac65f3a438ab9303505a834cf488e3f0c6dcbac05b8d60a
MD5 593b383c957737381fbb9c5d27f0de58
BLAKE2b-256 9607eb1408034aec316aeaab1a7e8daf43e3f927c2c91c909307c3e1a152fada

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1746599232-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0e83243beda5a6526ee90db9d642a560daa622c2bff48bb0e55e576869f1e911
MD5 80dc859b8576c4753a940288bcb359c7
BLAKE2b-256 5457f106a87347a857d484119e59b3d96a603d8075ad96c035f8ba0be46d1ad1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1746599232-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bc5132a2a3e7564e1ed8e78a530bd0ade0416accc839ca0fe44f26ed5e2faaa6
MD5 723d951c6c90bcae238ec9b440bd10f7
BLAKE2b-256 f8a9e67698e2d731d5f8222cd661f80521f0283bb7b289d94a45d6ed98e0a7d3

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1746599232-cp37-cp37m-win_amd64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1746599232-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 b4fe129b0bcd63064849bb56b309d9ef607a704083c18a6129b377b14b9bb513
MD5 177c6a6723de1bb7ebe3c5a58147fa0a
BLAKE2b-256 66442173579ed4f89376d52b889d4e68823026c81453af2a7e36e2fd17990df8

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1746599232-cp37-cp37m-win32.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1746599232-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 fb066f9547769204850a4002e2b29512c8321d36be119cdbc83cbad4c229e38f
MD5 a3f592c91b5e6bc65018ebbfdeb4326e
BLAKE2b-256 b05d448207a40377cbe15871e2f631c82b5c3f9b27ae89ad8a1ef2acdc8e587d

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1746599232-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1746599232-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 05163f17dde86f91549b80cc6d9d607d5858d6913aba2cb3be3db34d32bbabfe
MD5 88ac417863cf8e79e151a892a2373a2b
BLAKE2b-256 0715140914a7920345149ef4de44db6d8d822571fcfdb6629c2646367504be76

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1746599232-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1746599232-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f6f688c26efe3e957ecfd275de815e8e92581fedebd6df64b682e0ae55334a05
MD5 84a9fd6eb3dc74600f9f7114b1217ef9
BLAKE2b-256 d58280e7bfb8f350f81bc0448977f22b3d469fff9c9236c97c2950ac87d500b0

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1746599232-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1746599232-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 485f7152c4402e5c45b32f04c29baf24848ee544e1ea091fac986599c53a94a6
MD5 fe38befbe0d87576cd4675c38a0c66cc
BLAKE2b-256 bf05551d24ba42d00a38cfda075df5cf00a6aa39c5f15d64ffebaf2a09b0d89d

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1746599232-cp36-cp36m-win_amd64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1746599232-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 fda3be4434e91cec256e840e994970adef5ac9f8459478cede34c1d21238a0cc
MD5 7e19540eebe0256c9f30d9cb07011664
BLAKE2b-256 39a73a40026b196d05eaaf4bfb66b97b1c5b4f684a329c5b0b10f24706a4139b

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1746599232-cp36-cp36m-win32.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1746599232-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 d1e6c76bcd3740c310632ccd95d3b3dbc5df44c0c54d8d23bad47de2e1424f6c
MD5 bd3d5ca98d170a5a6d725bc686ac1b8b
BLAKE2b-256 cddc02d4079ecfbc4496438ff7e2a038d7c8778a69c9e94b9e37875c5f61d84d

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1746599232-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1746599232-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 17782effaebdad2dd9f08dbdf3962be56e06f69816828fc4355a75999fb40d86
MD5 b32babbe22bc18406f24cbad6f6def89
BLAKE2b-256 3622b9352404a3dd75f098fc4647e00a1759ee9be786511bda7552c1992706ed

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1746599232-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1746599232-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5abb502bfa41d296eef7088d80be99193e16f97975532e8dc3d146aba0aefcea
MD5 30dacfda046f8e3620c8bdbdac79738c
BLAKE2b-256 348ff8cf7cf6744f365282c71800f1387219776368fdc606f527d3446bc74c8a

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1746599232-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1746599232-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0ea02563c66bec8e1e4a1c1f169d8583683ea332340e273a562a1e2175238e37
MD5 31a91ca5887e20c4af7682dd634fbdaf
BLAKE2b-256 232397404b9f68f3ca869162b187b265672941470ad46571996c6d46c6247be0

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