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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

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

Uploaded CPython 3.8macOS 10.9+ x86-64

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

Uploaded CPython 3.7mWindows x86-64

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

Uploaded CPython 3.7mWindows x86

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

Uploaded CPython 3.7mmacOS 10.9+ x86-64

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

Uploaded CPython 3.6mWindows x86-64

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

Uploaded CPython 3.6mWindows x86

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

File metadata

  • Download URL: stim-1.16.dev1751171094.tar.gz
  • Upload date:
  • Size: 854.1 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.dev1751171094.tar.gz
Algorithm Hash digest
SHA256 12c7d473308c4eeecb881040abccbf2f6d95ca93fc348db9218756698143d027
MD5 d919823af75b4967b5d6ba80a0c2e21d
BLAKE2b-256 fd93e6144c6aa536326ff4a73826d9563b6a2db6a380c5789118e6f9beaec6e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1751171094-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d39c8e90c06a166f949f936886d0d4a18e6a27ab3e08097ed1b014f41c72f752
MD5 50828bc4372178a86a7ea517b2cf87b3
BLAKE2b-256 981a7bd19b14d1c30984caa4f4e50f9868beff29d645de5a47858607491d3703

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1751171094-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 184010f974ec0d02d96fabf71ded0b377e757ac3a416069be2d577277a2fdf11
MD5 6bf179f143dd8a45ed23abf14f509509
BLAKE2b-256 f8ecc0ebdbb55531c7062cdd5295f4a3f01cf42d375ec6108b7baa6969fc03bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1751171094-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 55926f4026fb93bc205f3893a140dd6c7f1d4dd37cbba4e070f56df9931ac9c0
MD5 f2b1a3d739fd3283e0331037faa8f211
BLAKE2b-256 b34dc58eb4131dc21348b65c75af59239d8ed0b43fcab1bfcaa445c84960fc1b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1751171094-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 933666374a994e919a799353a7e29992c8a25f0f621bb51f765d81c15aab6fd0
MD5 ebf78e7e6928bc7362069d97acef2fe0
BLAKE2b-256 b5d10e131d12f8acbf99ba2f1720faa4e1357639e8a69715e1e6df849c0c513f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1751171094-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fcbeb478fa75c873580650ef798bce10a1fcc1425f2469358098cc84681230bc
MD5 c193bf9c9e9a4cb9f6fd576a44dcbf41
BLAKE2b-256 b851d343f2d91765516ae501b0c67dd124f90e5fdfab3faabb7024fdf4fc306b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1751171094-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5f45ee9700e47c5d38987be02e6e4ea5db086ac3c3ef32e24da8ebe6e02a31ad
MD5 7a06dd6aedb92c587fd583a73b88fdd7
BLAKE2b-256 d1bcc0fd7eca6af88be8cb1b3333b6bc79d170d4b63b452b47222dd5dca2e94e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1751171094-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 86f36e6632d986b5ae6704e5c4a8237ef00eaed116c3c7bfcccef6e48f9d8443
MD5 3d46874010e8b38844a3fefa456612fd
BLAKE2b-256 3cd07c5d93c8351022bd0c942359d35947604ad9a9920220c6597421f7d6906e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1751171094-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 85cd9946a5d4d2d113959d96f85e876a39b2ff56d8085acf28781b94decd9cfe
MD5 7f86e340e9c5483e1e1f2b11cdadccdb
BLAKE2b-256 65bc63d563c8eeab663314996e57400e6e1c14ba7887a5c232d710d29bf0f294

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1751171094-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c618c8ccfa79642687ec9733f4bdf28265078349055f9943442aae21132561a9
MD5 38ee50e0ab237b53ad4616409a6aa1a5
BLAKE2b-256 830b679a8e2cd4fd28ebdff3e61deabb0359f670fe1e3d36224e581ddc4a5df2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1751171094-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d54bb2d4ea4bcc7036de0fd4466208653054deb4d0a78c89aace07d435386bcd
MD5 a66c9d2f425cfdfa3341b667598cf9a2
BLAKE2b-256 76380c8d847b54e169fff318359a4ebcca9e2747279fcd2df38ead1a54450b74

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1751171094-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a97c12d584808785c7fa6e50f8d0ef82e2cea86d64f7a5ad694ccd03346b88a1
MD5 ee4a9e171c2c2d4e92c8cf7eb722bee8
BLAKE2b-256 6b43a491fa5c886af6df1cb3d27f637760b37a1ca6a79a38c720cd0a0ea78eaa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1751171094-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 ce0405dbc8ac57695843291fb21c51fbef09d89428ccfcc57692cf2daf7498dc
MD5 afbfc48d24489da6295f74ce2901aec5
BLAKE2b-256 641ec56b3d3459f2b6206ed93658829eafb674ee81be6acacae87cb3794a0d68

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1751171094-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4b77f710bf5dc28b51950a953ffec05f77fc76c584432d7c8c0b8bad1748ab7d
MD5 4feefde1f10141bf15fec136d96fa9c4
BLAKE2b-256 23cda57ccde6e056c280c36fa519759468baec07d34e47e80f1619799e2b0585

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1751171094-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 200b2411184d0f6b29b9be7dd1f1d7ad8b07e7b9bf0bd032c88cde1fdee7a2c2
MD5 5cc71f2994c122d3bf24e72dc31aeffb
BLAKE2b-256 6844a352c707f485fc3c7be666d98d72de19f1015113becb5b692dc0d25de878

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1751171094-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d08f0e3b44b9ba0e41545087aa07cd8c91218f9ee29b95fc79b0e92b4927ecf0
MD5 aad8669e0e1e366ad7e044e780049e65
BLAKE2b-256 3b793e6802fc1e9ed05698dffc61f65160aff90f0836a5d95ccefca2954b2968

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1751171094-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 96bb6e67a2b98ec7de91231ef813aaead24eb162343e816cb2319b9a01d1f7b1
MD5 533d005855ea4a638d3a7450a69454e6
BLAKE2b-256 4155b54fe7c9c628e2cbcd3c49d6c53669b8a7b365f218c24a4b55476544bd6a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1751171094-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 40f5d2f0546f95fca07a19d416f268bef312e4e5401116ac7ff9e81db6e855eb
MD5 063a92c5089916d03c6c7fdf0e68c26c
BLAKE2b-256 b421399d7866f1e9ddb7e9b24b2893d9989c9482490c3108fd029457dc5f548c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1751171094-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3331570c78c054334b90330bf964228b003e8dabc34b807dbede978dd51accdb
MD5 b3ec5724cb143e5f257135538543567f
BLAKE2b-256 a48047359a76fd71b80b5570e9c3c338955fd9ece1e9e927ace5a565e38bcbc6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1751171094-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a7bbf111dde3424eb49b234a6f5b5e9eac42b22455b3847ae552dcbaa525abee
MD5 f7e0634025c07d709b0d2078c4952d4b
BLAKE2b-256 fc27a30bf92af65107090991df397b0f162e5b2f8f3d1fa334b5b5071bac5867

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1751171094-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 2e3a45fdd3a32a28344772fc6f97befe1222644e9faecf5ff674be3737de662d
MD5 ba91c10d987fd26bf2743decaf393cbd
BLAKE2b-256 65195faa7d1c0044cbdf4415fa34b9696c1d6122d6bc385f7fd8451dd7eec634

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1751171094-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3a8908fa969a5152f131caff803fc763fa606df5fb37f77efeae42d013e78f04
MD5 5c2a2ae8ed68c251321096a1e9bcd7e2
BLAKE2b-256 9b9ed826a4eced3fbec6c1ccffc862744a274b11a749562736fb5807cb39b578

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1751171094-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 180ed3951c9344bdae690a051061f838f400a76a3bb76c0dc0d0085f74613a98
MD5 9c716932bec3e566ad8f76958189f9b1
BLAKE2b-256 dd338bd4633a5246c2ca6ce2f23a40f19d91b1e0f44092bfe8d2c39270958ebb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1751171094-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 71196d66a2c69d067bbd5c7b7c78b4008437708a649cb40ab0fa5cef2983cb33
MD5 d0d26366120af7e6616b104875b80272
BLAKE2b-256 26c1d38a0fc77c13bb7fe2be7fd41169ab4f4f7cd31b9911a4030f23cef661a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1751171094-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 13cd7a420910be7c87418b6a235b98ad12b455e767712e97c63dde0c3153c8c9
MD5 2101409e024ca989083ddc4b130d61d0
BLAKE2b-256 111ca7ed59b3e1c9432cd2acde861e8f7d4d7d0030e5c6afc552e5f0b5c24c47

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1751171094-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 069bdd4da61dc6f73857ce0337a9e155b94f41afbd219901ac25cdff3fa94272
MD5 7ca33fa92a01bee7517d987603852f83
BLAKE2b-256 82845dc0ff1624d2ecf356160f3338efcb5b370b4e64e701ab37e5c23807d9eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1751171094-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7390dc0cdc0192fc811ee0912f9493efc41b2dda872af07bb59f4f64744808ab
MD5 7014bf504aa0d57151882fa9a6fe95f9
BLAKE2b-256 b256203ed50fe105a6d501bb08fc63efc3640888bc6baa8cbd85c81ef5ea35d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1751171094-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a88e82544f45a9538b398e9d0fa32b909e411e808371a33dba9716e34cf20575
MD5 acd8d61109e0d58523bf83998a569261
BLAKE2b-256 9652b0754a68cd3bd88403169f05cbf2ef42740ca6f83b4f122e7726f1b08aff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1751171094-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 576a18bc0eab60b7838c2050438bb06025487e723d79a67d0cd1f6561476ef61
MD5 58bd2af4868fbb722d605f634c267eac
BLAKE2b-256 8452419e895c49cc305c291912838a2378e007bbdaf41659d268ef67e8011bea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1751171094-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 9f0cd400286812672a269c7c76ff250973df6623999bed1312980996581e3b73
MD5 fd8ffefbc716d84ccf743eb1678bf5fb
BLAKE2b-256 5d42f39a789df2a4cd6a9ccec4c15c27a2ef1e6a6c564b208566e7f9c012931a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1751171094-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 0cdcf95d68859ce149c02a6cda6121e06541b154f0f9d7fcf29dedd9fb3d9580
MD5 7703439b2bc3f947d7794cfc4d651638
BLAKE2b-256 b565e9848fc55994b7e051bf8b9e4a2f40551dc320ef474649057d6621794d7c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1751171094-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 29862f42fcf56518b5ae689e398cb30d03733a5c76bd5a7fccf9a610d9c2e86d
MD5 07c40fd7e5d3741f6d5cdd3597269b51
BLAKE2b-256 9c4ea56e567beba3964d1f17cc6d0fcdecf83236c80aee82e532d1ea9b861215

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1751171094-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ab5cef4eb6272dacc2f8a924a141b60a291bc09dde3ce5f37d4c5f5497f68a47
MD5 9a69a7e249902bd4fb19761a3233725d
BLAKE2b-256 8a9eec82d148d3492d8cc33dfa8409f96812d2c7fd3310300deb142b09b52f95

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1751171094-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e165491ddec83ab3e2bfca2b1b6ea2a90d958d3683409a831589b666bcd3f9ff
MD5 e8f14e759d5b2f71615b6b433d6c34fc
BLAKE2b-256 c2f787f92f9389ab2249c59c46bd0fff8008698cb160f4eb815c684dffe3336c

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