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.15.dev1742866465.tar.gz (842.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.15.dev1742866465-cp312-cp312-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.12Windows x86-64

stim-1.15.dev1742866465-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

stim-1.15.dev1742866465-cp312-cp312-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

stim-1.15.dev1742866465-cp312-cp312-macosx_10_9_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.12macOS 10.9+ x86-64

stim-1.15.dev1742866465-cp311-cp311-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.11Windows x86-64

stim-1.15.dev1742866465-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

stim-1.15.dev1742866465-cp311-cp311-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

stim-1.15.dev1742866465-cp311-cp311-macosx_10_9_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

stim-1.15.dev1742866465-cp310-cp310-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.10Windows x86-64

stim-1.15.dev1742866465-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

stim-1.15.dev1742866465-cp310-cp310-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

stim-1.15.dev1742866465-cp310-cp310-macosx_10_9_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

stim-1.15.dev1742866465-cp39-cp39-win_amd64.whl (2.7 MB view details)

Uploaded CPython 3.9Windows x86-64

stim-1.15.dev1742866465-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

stim-1.15.dev1742866465-cp39-cp39-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

stim-1.15.dev1742866465-cp39-cp39-macosx_10_9_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

stim-1.15.dev1742866465-cp38-cp38-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.8Windows x86-64

stim-1.15.dev1742866465-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

stim-1.15.dev1742866465-cp38-cp38-macosx_11_0_arm64.whl (3.5 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

stim-1.15.dev1742866465-cp38-cp38-macosx_10_9_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

stim-1.15.dev1742866465-cp37-cp37m-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.7mWindows x86-64

stim-1.15.dev1742866465-cp37-cp37m-win32.whl (2.3 MB view details)

Uploaded CPython 3.7mWindows x86

stim-1.15.dev1742866465-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.15.dev1742866465-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (5.2 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ i686

stim-1.15.dev1742866465-cp37-cp37m-macosx_10_9_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

stim-1.15.dev1742866465-cp36-cp36m-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.6mWindows x86-64

stim-1.15.dev1742866465-cp36-cp36m-win32.whl (2.3 MB view details)

Uploaded CPython 3.6mWindows x86

stim-1.15.dev1742866465-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.15.dev1742866465-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl (5.2 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ i686

stim-1.15.dev1742866465-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.15.dev1742866465.tar.gz.

File metadata

  • Download URL: stim-1.15.dev1742866465.tar.gz
  • Upload date:
  • Size: 842.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.15.dev1742866465.tar.gz
Algorithm Hash digest
SHA256 064532ea656785e2d67947c334dc3c0c38d22e1ab79c21432510cd37a0160306
MD5 e76eb275ecae6bba0dcd918dc4cdbcdc
BLAKE2b-256 a6219c1f5d1e439c0497cd609724606223d3566827d1aaa69b3baf72af6a8d97

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1742866465-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1742866465-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 5995d74fc2a207445f9d2f9fe96edda1111cf86258a2b1db4c30621ef5ec5301
MD5 f7b6c2990662a7cfec558fde2de94631
BLAKE2b-256 0e480239c64847bfe28996c304878602330867e44a3839d59f344cb11acdb9cc

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1742866465-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1742866465-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 98dc390fbb61855379089de75989bf00feb53c008ed68a4603ae5e0885400d33
MD5 4d99cc6f095efa59b2e9e58670d789cb
BLAKE2b-256 b3b697e1b8d9e26a3ce29188342ac952cd4f587c4362f1423e2fc36630969a3c

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1742866465-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1742866465-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 10749dc29e5a141d060f5d90c6fdb1341c83bfd2c4406ad1908c0cb5708eba8a
MD5 8ea04085e86a748e1796efb99c3f677b
BLAKE2b-256 265bc134805e659db97d9ea2f3a2974fdd05f4df69b9e39dad158673d2daa7b3

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1742866465-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1742866465-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8bf31a62c36f511d3e5636619b58e98f2385f34a04f678d2ccf64b91da371f52
MD5 ffadff10103c784fd71c017a88ea61a4
BLAKE2b-256 18cffc35620e76a8bc93e767769f531751351651da083d616d188852914e411f

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1742866465-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1742866465-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ffe220d4933b26743b7cb011c9badb86a3d10bfd852a393843f01452132b311e
MD5 7a97a09cb3aab76f4c6239c7be69c010
BLAKE2b-256 62690c5f6c4e77b4d6181f52c41f3759069e7e8dc06eb10f989dbaadca94cd8c

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1742866465-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1742866465-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 08ddd58992dd6667bc82eb3367ab9d7abbc855a141f7cdf67de6d0a2fb5522ac
MD5 d25a3893afba29f8bb17141b945964a2
BLAKE2b-256 f328d6f0c567cc88b21f38902f67a76ef5ea37f7129fc30fe12088385c4e3033

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1742866465-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1742866465-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3779e9c609b34103d77dc56f6891a18cb06917af5c31d8cd7848fdb23691237e
MD5 6c9f80a011d5c6bd3ba17c20a16271a1
BLAKE2b-256 6ea049e714c0e16777359ecd12fbb9b1404a7eb6d58d54fe70540e7b33109fcc

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1742866465-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1742866465-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6fd4a721dc2dfd506bdad4e3041ed818a82c668f59f4e84f213b1047e3a51f24
MD5 2789712dd20c81e3d306a5ef4bf3b906
BLAKE2b-256 28f62ed5c54b96ec60594e411e45327012144da9fb9aa69e33d9ad76a80e5652

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1742866465-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1742866465-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f1c105f4febe0b65e6a2d5a837d01b5117288b9387c0bfea2c72681ed42e10d8
MD5 e8b6dcd41dc71a0a6b58dab16186c860
BLAKE2b-256 2c1c29c7c759c891e715765badc391bbf352cd79be268793863352dabfe0d901

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1742866465-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1742866465-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8e60e7eede9225f34343936aeb11474a2db231bd94ab24c3b8d2088d16653959
MD5 ff38f6cdf37e08fadcd00877a7637d8f
BLAKE2b-256 68bc9815019617170cd2b83bcc7d60d657d2a76f5214d0db406cb28f746bfdce

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1742866465-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1742866465-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 74d6dd16dc627436f3303e0c6774742479b7773941b2a64e9c7cb7b0ffab18ad
MD5 81976cd9fa66c12973569d2a07bcc338
BLAKE2b-256 467f07f8f8410f861c4af501dd211579eb658fe4f11b4639757dfc887d8d5bda

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1742866465-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1742866465-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a79af141e0d5365723dbafe2e04cb329ba98ce1fdd267b420a6bfd713ec312f2
MD5 6d8ac0815f1bd1c0d073c5778dc3b04a
BLAKE2b-256 70ce50b7cb14db3b8417e6200edc404d21c9d6fb6476616bcbff4b18c783e9f9

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1742866465-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1742866465-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 a87b9117ea6941a745bd2708b5fd1e11c3ac2da0f01b013706ffcf8383757f34
MD5 794a56358f90c941fd5eab5367ac893d
BLAKE2b-256 ad5f8c85955b3a46e27ba53a74c685cb3cb6e4ca6babdc208fa01c9dd69f6fd7

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1742866465-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1742866465-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ce632b6c6c2202b40cff01d9598725f154092083e88b9ec6593556ba7d08c6fa
MD5 eb47707b1eec44aab27c936fb0c326bf
BLAKE2b-256 6429f5c926a848e3a2526b6c2b6e50f66547340b145b395875c8ae788654709f

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1742866465-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1742866465-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 da7239dfc3d255351be7520ff07823999c841d85b0e54336c5dbc5d1c787b47d
MD5 c03489ceaee07e1fabcfdd929d27cb10
BLAKE2b-256 3f07a142b3073d04acf9b18d6d14b0a93674f53b54f26bf846cef5343a7b0923

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1742866465-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1742866465-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 99548fdccf85afbbcc8e648d81e6834b4464ae5a437614ee5c47673714c9a4f6
MD5 769289c1d79ad5197683158847782e62
BLAKE2b-256 f4034ef59c8df36fff3b3d89c5d0d620a9486161e8fb6ccb5b58e48cd5ec589a

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1742866465-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1742866465-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 7c4da215324242d88e93c204340dfff47cc31b26a07fc0efb163968febf484a0
MD5 63e4b11e3aa3b18c0f8036e4bd80ae43
BLAKE2b-256 d9193649b3fc7137826578a2656b5cede9d2ea7fb964bb078e90d9c9e0fbf9ff

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1742866465-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1742866465-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1b03da216930f691053367f1889e487ae38d38d873ddd4ab39eb973c33f60279
MD5 ae10df70ac6c3445a6f2dc211cb1fcc8
BLAKE2b-256 dd97308332f1a18a0db3bdb8efc473f721627dc30592488b46040cce1e6593f0

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1742866465-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1742866465-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fb9601b3f525edf31a729a7e1939833e5bcf9ac82f22dd70e7a9234ec05111e1
MD5 1515e61765d8cfac12c5e20478970746
BLAKE2b-256 66dcd56caeb1188d27c6cebd1b0b16639dbab83e29de3929d58320f247b2c78e

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1742866465-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1742866465-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c594a7c5ab9785b6ca2543a3a5580085a9e172d331c335bcb2d84b58b034c457
MD5 a8c0ff6dfcc921fac0b7d6d949c18a7f
BLAKE2b-256 3f93b7f61457495fecf01a43fff8bfb59a8493105f0bba373e89e64a40977129

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1742866465-cp37-cp37m-win_amd64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1742866465-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 99143b78ff99cdec738475d84e6329b3f42c93ea1ea13b00dbde621fea9d4ec8
MD5 7b507b6edef3eb23638801c06c2e6c12
BLAKE2b-256 29c9be4156efbd8158bf34a1a3d58f655010eb75d2999f60a1e9bf428b36d720

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1742866465-cp37-cp37m-win32.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1742866465-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 666684f864f84628956f3586b42ff4582f584f49b4533b13584eb5a0103ce515
MD5 d60cf00e30d571da04751f2e4efa9f9f
BLAKE2b-256 8d1daad4e2524587ae9ada9fc050c54e8ae000544d5657b85493d2b77cf7ac45

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1742866465-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1742866465-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1d61345acde1022eb8bc80a2fee1a92fd3cd01f09c1b8d29f51452d00387c2cb
MD5 c7773ca0898cffc7b895d9143dc5e82a
BLAKE2b-256 2c5c0196f4af1e7c8b3d22e4b40d6151df9cb2942441e55a9f59b5ac0bae2a40

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1742866465-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1742866465-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 23fd4c2290bcbb2757eb159f45e357fe59077d81619a55217c777f890ea009fb
MD5 5aba7fa6f287bca61a13bfb09c76470d
BLAKE2b-256 0b4081168855d7f873ba38800dd3de5432e6ab696470a43430a765983d3f4fcb

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1742866465-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1742866465-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e69e3d42d0eac82667de56e3a63b196401e9047fb4b202725a06f2b50c24c9b1
MD5 77f77567ca1ddb512c4e453a6025ccaf
BLAKE2b-256 3839a700425dea206c805cbd2ae48f5fbe1daf869bbe79b3513802aa7b7487fe

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1742866465-cp36-cp36m-win_amd64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1742866465-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 c9dc20450c4ed9d9740d2f59bd9268b691de3aaa81a7b3035590caded89b44ba
MD5 5dfce30d7b0009e64b52958b2705e4bb
BLAKE2b-256 fb84a41a1810b026a15a529cf080c58559081a44f2b8122b019da1f71b566585

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1742866465-cp36-cp36m-win32.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1742866465-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 a557d55cd4ce24e2eb179abbe800c577b5f85c8f44c29b8cc6b4f0d8f4968933
MD5 ac892121e67a7dc30331d3362fc441b6
BLAKE2b-256 a59c9c3bf683b11aa13df6a83223469ce063a768c3d8069e4e3726eda55db915

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1742866465-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1742866465-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4a013720d86574369b6c1c4cf3e483d1864bcef8974eab936eaf3863c4a32875
MD5 b2f417788286ae0ff8c3af62d7ffe052
BLAKE2b-256 178426d469e5510258d9fd309183dc78e2b38c4355bb8a8007eb675b0492c86a

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1742866465-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1742866465-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4eb779a805690f76abd190779a5a6dc98ee3db22be4ae22deb26d6ebae7cd355
MD5 939c9b632f4ad7430e6d875e4d0d1264
BLAKE2b-256 4cced1d47091ce2e9da14e82dc577d2164545af1d5557f505784006bc1a04dc2

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1742866465-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1742866465-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e5e28bd16150534060cb4f457cbe3fc0db8076f9b86c5698c5a2a10753b46007
MD5 bb43971b0137b184705eb1f21bb4ac25
BLAKE2b-256 703492c3157b2ad7695ebfffdcba8391a599d734bbdcf6448353a3890ad05162

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