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.dev1751039605.tar.gz (854.2 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.dev1751039605-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.dev1751039605-cp313-cp313-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

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

Uploaded CPython 3.8macOS 10.9+ x86-64

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

Uploaded CPython 3.7mWindows x86-64

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

Uploaded CPython 3.7mWindows x86

stim-1.16.dev1751039605-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.dev1751039605-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.dev1751039605-cp37-cp37m-macosx_10_9_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

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

Uploaded CPython 3.6mWindows x86-64

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

Uploaded CPython 3.6mWindows x86

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

File metadata

  • Download URL: stim-1.16.dev1751039605.tar.gz
  • Upload date:
  • Size: 854.2 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.dev1751039605.tar.gz
Algorithm Hash digest
SHA256 54590e159da90fa9f665035a1caab676893fb45485c9250ba6efc708f2f2b122
MD5 3921c1287212505bce63c2d60f1ee2ef
BLAKE2b-256 0e51657cd2b6d894c8abe0a0371a63d4c276e7ab7f37a00cb41f5585d28663be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1751039605-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 13c7f24d1a8e8b525243b31598309e8b4c2f3d732fa60c4b80a91d66d4eadada
MD5 b6e7a8183db84592711def370b5d8b14
BLAKE2b-256 eae65574e300d53d870b25bd187b21648ef56b6ce45bc17c8237b70df0f0b342

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1751039605-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 007cdb5a827bd5e39e06c24e66d2caba7d95e90b500c4a80fd442502ea0701de
MD5 195ec702679ad746ec99effe3233861c
BLAKE2b-256 3735bb78cdadecf5e5aad1b109a2b4b636a724acbcdfc478dc4e27beaa0cddfe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1751039605-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 2335ce5c4d35dffebd53d3a23293410c5cbdef75a195931f1d96218f5b1846aa
MD5 3c811d1830faac70c1a8c942d50518fb
BLAKE2b-256 1ba28c10103781546f91102636327da9f2858e5b400cc9923ada50b789eff6a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1751039605-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d60f44829a74e001438d9744594be04f401a003de309c9c7d959ab25955fe9a5
MD5 72263d216bd18c1fa62240b6c2b8bd82
BLAKE2b-256 461425be445236bd83f56d8c786538d37f79f6d00bb5ccfa9a3779765fbfb745

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1751039605-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e32eb2bbe5c5914e11a86f0c089b63fd4c4217ad40568b460e9c37e17d3385d0
MD5 73c58e4a35efc5792c80ee886ee594c5
BLAKE2b-256 a9ffc60eb651a566f03826a99ab2124db8613ddaa2f98c6b05a44562c4aa65a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1751039605-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 09021f34dd4a7a2e53bb41ceec63955812a9e38e8d4dfd0e8a4f198348f21311
MD5 93c467f9bf7178e623f2de1d37c535e4
BLAKE2b-256 a3aa56f1fbc2455feb8ef1579437f3b02e77e53815ac36a8465b73d7c533a1f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1751039605-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 11ea1057dc6d0581d8359334ef2305f8bdc46e5a4b23c57ce892e9b94389db2a
MD5 8d43604705ea7cdb72fc0fdbfb62e5c0
BLAKE2b-256 cc166d06503f80d64adee26d9dcb0d62cd45eb68cd6aabd55744b4c4a612250b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1751039605-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 8ef6f0f035489d335ab83bf0b574179f62a8674d3bdc613fbd0449fc07814e00
MD5 42f6e7f22927596543481cab75ff042f
BLAKE2b-256 b9d893331fd44f867f396d7a07b7c7e30d3c062aa1f06d6ee3c7858aaf361be0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1751039605-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c5055732591d78a178f52246ffed26f3411e255f6e7df416bb0936101be8b1af
MD5 6b41674015ad022dd3dc58c73d4920f7
BLAKE2b-256 180723c9aefc16f520be129414a0abc89ebc464ef7549fc7b4690fb02d4bd7a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1751039605-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ac3ed6dc94af8d63dc00f248db70b71c247e9b2b74337f40de78486ea12c0e50
MD5 2a143931125691bd131e2e2aa503a576
BLAKE2b-256 a537ed6556e5600c340a7d13dae4568c86ef2df21b303a8e5526cb506e20df73

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1751039605-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4f8f49a20b9f40bb8ca5a824d1086f6adf9c17b967c86c8ea50e0479fed62db8
MD5 cb16a02db0f2034a5d0e337b689b9916
BLAKE2b-256 67c023fb452302c84e27867f7dd666d47e730bb3460082e0580ad4e0e91415e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1751039605-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 5fe598d474e3a70ab7c76a7698aacb66d1da1ab1c0bce9b5e3bfb7801527217a
MD5 d632b0f8e42ca17c9ace8b21fb9fd58c
BLAKE2b-256 6c1efdc710e2c1e6308aa6a1eabb372bc7116bd2bf9a6df5b9c28d8c38c3c949

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1751039605-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 94561a3fd8179fd4a41d3031c20868048c7176783e8fbc0d481c83eb954fea7c
MD5 4cc39dd10e4c5d4f05ef498096d31d3d
BLAKE2b-256 9004f8564bc94ae31e08772ac324d9ded81cd8285534ead3ab41de51416f11ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1751039605-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b555b9eddbb5ee7cd5e9c54af85c429d0905c90663ed48f2f8473957fef25af8
MD5 794eeace7551c5cadd31205dddac08b6
BLAKE2b-256 e9c9b944b33ff5de26053d062e7ee9625d1cb1e7cba63c26e22b9dba8e5683e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1751039605-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 741d0bba080cfc0a64566e97ca24495a24a34ea5609edbe233c35b87934fa854
MD5 dee0a6d3252f8bbfcce03b9229ea1292
BLAKE2b-256 0251e8bc19455a8577ea024aa87615a84eb44ad4d57594a12c03c552c29fc142

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1751039605-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 16c55ac7aee53fba6897e28e8c3b932568f470bf57102611d70f66dfb6b2e994
MD5 e48e384d7ab54ffcbaa42dcf105de1a5
BLAKE2b-256 16ffe92d7ead609d6831bd3960842f1fea774a5bdd7f66df41562a29ff7cb26e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1751039605-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 15c70e4a49225ca1fc45af1f7b25bd22e2ff5072d09e5757d47533167e17d528
MD5 5ed4c6952e6ff0f3467a14dc1f36ebb1
BLAKE2b-256 ad0c81e8a19b5ac1f14f852d5548ca072f7f2f81132ea2f7d90d49607b0e1228

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1751039605-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b364d3ae908b81d7d2bf2ad8984617209df607e1ed9f7d30284ae97b3b37feb0
MD5 095069858919a559072736a42fa41d3f
BLAKE2b-256 d9192c061da9f4ded00507f0f754e19e7a07b888777ddc19841b6d70f024cf60

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1751039605-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 959ad5c5c1e42d70f4c6e24f020c1a363d3d9de7be7505cc510219ca798432eb
MD5 236752971d9f380c7b576b804984774d
BLAKE2b-256 1955a80127e69625064277dd8e2906e52c3ffaea79e3444cfa8d833164588f85

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1751039605-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 b09a6fe84fbfbdb6edf632498a850b4573dab2ee2743b9b26ec6a854a93b3b93
MD5 a06bd71ac4ff865d82b1cbd40528ca39
BLAKE2b-256 07a21688e3a0efaafb4fb947821a56ca4400c5f1274c4dd5c65db71fb96a1715

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1751039605-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9f8c95941a03498e1cf980f8f629ee9adbdd2a41084816fe10cba19b43f67561
MD5 56ef4b772d5d0b58f38550c3a02bcd8b
BLAKE2b-256 2685ea4fefd673e339f834aeb7e15a54495aab4c5d9d18c9a3509f0e518c38f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1751039605-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3fa9f45cebf961618005af34e386ac9c38e379e5d72877ec3eb0104c2b84f52e
MD5 b6c4c827370e65ace1e4699b45ec1e29
BLAKE2b-256 d0d9caf592354fc17bf20953403a2b5843479c0bdd9bc63989983fb0930e33a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1751039605-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1eba08ad43bcb377b4eb57b94396f8580daaa5825312ee85b30dcfd53f5575fa
MD5 9ad36f749a3ac85ff47fac44ad145a23
BLAKE2b-256 94ff5dc58820275da4da0d4188f8c5726a5e454070e5fb888a73e82d4b84ae1a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1751039605-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 b710f6fc3a3cc5ff65f851fbd864c69ad9ee5cc784285e1b540e2f7172d95a01
MD5 6e5e4d0ca7e03310bb61db222429d4ae
BLAKE2b-256 ef28fcea7c94dbe44a3a173943392f57b2ca79de79731ac52f101273fc6274a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1751039605-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 0acb18eb6980a0484bdd9a9dbd33d36a95636cbe926e042014f5a0a1a15656b3
MD5 d6fa2d657735bf621cb606b868af5113
BLAKE2b-256 c0b292450ce4ef2298b8e79bb2647be80d88e83c20069e5da205442c3203677d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1751039605-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a5593a76fb55b32163c8887d6657a8ffc0b617537b054d02f830d9fbfd834c3a
MD5 447c4a29cf41aa02a1a1fd5252aa7305
BLAKE2b-256 e9d2ff91ec2499f1c83b243ef39d7a4e014ca64397a99e3283da5c7d1f8c4800

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1751039605-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c0d886afef556f28550e6fc3ce7098c1bc91f48668e2fee8fd5213d6148144e0
MD5 93ba489bb56cc0270453a4f4a2d54208
BLAKE2b-256 ab64639b90d982f396432fd854fe5d2771404596326dabe8995226dfac67871f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1751039605-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e3ab71666c3a767130c663d58727247a091eb1edf2dbd08a16d0718899aa73c7
MD5 8ea572a8759fcc716f8d1ced81ffd9b6
BLAKE2b-256 91623cf2cd4a963a1c2a1cefe0f2683120bc1e28b87642ed67b0402a22b6f75b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1751039605-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 f764383133c23f05dc764a10e91b55b69c4e1939cf5d9369cacc83a709ebdd39
MD5 1e37f052744b8bbbd3325e1406bfbc6c
BLAKE2b-256 04d89c0984519828e63cdb90c9dd2cd55f02e7f1b5982702b03c8fdb309a15c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1751039605-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 0e491b4fde892c0877903f0c6f3e9f9830fd86ea01b675a63ac01c29efd0ab5e
MD5 570223588057d545d7fdadb534bd24ea
BLAKE2b-256 2cf32a3db44567131e74fe829312500d1434b2dfd9cc0863e39e9d23dabcd4b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1751039605-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bd9fbc92414ef1185711a38b20c80a390b8d59e2b8fd06a4a774af68c9e69b7e
MD5 f751d17131364b134b35da9f312c7e26
BLAKE2b-256 e75ba0616f729216e3529de0105dc93854d6e9e1bbe18b92d4c4c16a4da28fda

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1751039605-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 df0b6c7a4a8096e5341ed8d3a7a599b2d735c8023a91b38f1d6082ddd23f1bd5
MD5 4a77befa5c1d90a8ab70270de6326ece
BLAKE2b-256 7d49a1f88115da4491a45b8c228a7d35c6a61f2e52f499aac9d29194d91ae5c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1751039605-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9fe0e6f21a4bfa7af9afcef0b3865481c5cdf3b2ac8874c2de97a8967969e53c
MD5 ee29a602962578c79b12e2abed5f805f
BLAKE2b-256 d0de864e55b52a9bf78ba440328f49d150ec4d559e4ad09cb1c5bc77fbd4ef5a

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