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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.9+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

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

Uploaded CPython 3.8macOS 10.9+ x86-64

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

Uploaded CPython 3.7mWindows x86-64

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

Uploaded CPython 3.7mWindows x86

stim-1.15.dev1742861634-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.7mmacOS 10.9+ x86-64

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

Uploaded CPython 3.6mWindows x86-64

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

Uploaded CPython 3.6mWindows x86

stim-1.15.dev1742861634-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ x86-64

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

File metadata

  • Download URL: stim-1.15.dev1742861634.tar.gz
  • Upload date:
  • Size: 840.9 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.dev1742861634.tar.gz
Algorithm Hash digest
SHA256 112afaa6cdf73969b5a138c2a71672eb308f8e15e1757db963e1529faade10d6
MD5 f25809a9413452ad3b63727d767aa67d
BLAKE2b-256 a5c54c3aa93020050a72f8a30fef632e90c0c7570dd93f8fd396cd11c6aefc00

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742861634-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 5eecf140b6932a5924890e7183d6dd8f5dbc9125343a940d2f396962d06dd257
MD5 66f29b1207baec194b400aae4dd94314
BLAKE2b-256 9a02092534952406d29c78a48c1522d4094268f0a5b5d6d507b8f0cbb6bfff1c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742861634-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e80544157709d05356224b86c1988e36a10027f2745ad004af9157b1370402c2
MD5 e85de12d2f71e1ef30756686a853f395
BLAKE2b-256 f360a1ebf2ef0c8446672a3047c0652832f7a9c4dba410ebae76774cfdfde437

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742861634-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 59483fb6a62d28c19489ba501a02e41410095f2f3b6b80823625a9a648fff822
MD5 5a94aadce7d3fbd5c5b3994736e12c5d
BLAKE2b-256 868748fa7e0e4b9b87e86a1b49c0329ecc80f33fc836c0a7d242065010af4649

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742861634-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e626ff97943de90636084adfc332f58de9b69b68c5f40c19aa522543205411e5
MD5 1107f47d5225ca50ecfa75d012e6c411
BLAKE2b-256 ca2b3c80db9b48f10c39834ed289817740d4cd98a980dfa5cefda1bbfdd1f83a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742861634-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 666698aaf89d10a7dd19fd4250f7817807c75597478a36a7263ebfc3a4036873
MD5 f1335cea8bf382d8c42131bf39ff1993
BLAKE2b-256 d4fe479cd75ff3006f71c031d223d0db4f63496e57ee94bc0c15d346eee9a696

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742861634-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 97f302f62f23ce90b01b3365568f290f488fe8fbb14fb7337d4a7e6d6c71baf2
MD5 b718e02de5d488d97351aaa5c91e2eb4
BLAKE2b-256 2cde2fba4f12dabee336e79df40ff7abf33a1e9023fc36742fb028645cec91e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742861634-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b69a21c9f5be74483d1fa8524799ca415ef2d3eb23ca57ec5693742173eedbb3
MD5 dd049e5f88c453604832cfc489723871
BLAKE2b-256 3b7fd2971b3c554fb4a80b44af4279e2a147463e4be5a2184cbc4dd4edac3444

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742861634-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 953cc5a5f4bc5d6ca9d60fa1860c7d47d0a3471225a09499eecb8bce24413176
MD5 2f85180de1dc21160b89a45d0b3d2287
BLAKE2b-256 7c325ebf9c643eddc4361aee23eea528c886ef8c4c28e433e1195a01cfedea52

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742861634-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 16be2fd70f99be26d61c49c6d70b4651d99615060137eb2c72331f41bba0392d
MD5 1b3c7978d40b3d0c0ee75f1cbe622f35
BLAKE2b-256 908220ba069c1da2ee9e125cf5e68626df5610b6573b5917b63af1f6258df28d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742861634-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 52c6589933133b784cb08d035bbe54537ea1fc577a2ea59bdee6a35395f90f8d
MD5 d808ead509b8153e00f9c39c2bc65d6a
BLAKE2b-256 5a96d253e0c5a2b8ccb85bf2e7af941c541abd5f302fcd4a3bb0361937784102

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742861634-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 67fca2627633f8e6c6d43a3589b0a299ce32e1ee95f04b9d1ff07b9a14edc5ef
MD5 e1c2f8e3ff1d43873130b2aa2cb7f7bb
BLAKE2b-256 5068204790cd0bad2fc9e53316adf39751e37d7f8075f08565150dd10f5aba72

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742861634-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 963465659cbe28de477aa6e5cfdd83df58ee579fa832b84ee140768a6a5f4e91
MD5 97c7ea0102af4580cb72a8aeb6fa8d9d
BLAKE2b-256 e4cf9be18ae715bf098be8d6bc4f41ea791e40b9c879c7b01238633320ccc89c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742861634-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 3254659852946f7b510a084da6ef68b0649dacb511c4770401af179194bc8cb0
MD5 03f4e9352fa73a3b0178713974182ca0
BLAKE2b-256 e49aed7684e380f248289530142bff04a4ed6602deec1a7f41044657dfbb8e7c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742861634-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0ed4d8b75168c7f7aae6f53d94d618b5dbed56641988f2c77e905c5505482c2b
MD5 611f2522ac625f735ee13e2b7f34bc0f
BLAKE2b-256 661b8569c483fe2384bda326560df602e63a22821e6ce128a632fa00dfe5ca77

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742861634-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6661b4afb1f3444c92b8988cd22c494c6aa5a9103b24024b09501fd4a877f87c
MD5 52f51cec00fbe3ad82b570c675af6e29
BLAKE2b-256 1669f8dd156b1bbbde163d0d5706cae74eaa09af526fb4ff3add275e7ec58de9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742861634-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 02c07de28bc9d4c0b406cfcd4b4730322603eef9f2e6ff50aef0fbf2e7f569ab
MD5 9189a01fa355f21cc3b8c0bf4e88e00e
BLAKE2b-256 fdaf3781dcbe9267cc1d9a79f901b71fa362ccad45c2e472e08b4b7a5082e2d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742861634-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 5ebce68937f893237923896e8c5e0f0104dec76ec3478345dbde77693a1c44a0
MD5 7c6a50ade17974074995819100858ce8
BLAKE2b-256 402df50a422129dfd077ecea8dbb994e7ac144c358ac9cb8e3e833b016eb2fa1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742861634-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a818b3bb724a5a90dc2b5d5f8745b7d43647dd7a73c501531e1a6e26ed9312ce
MD5 86ee091ae8623796d28fcbf76309b627
BLAKE2b-256 c5bb01bf69d9b03891caf0eae811453afece3abc3f98dc3ac8b7d184b8bc88b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742861634-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3008544e3565bb636d2d834a08e1db85a6b8ccba5121ef36eba3176f6b620fe0
MD5 1f3daa49b1bff1b74720bca23bd1a7be
BLAKE2b-256 b65c8f65e5c8268df6b38f21b5e589f3c74ce92ef522358f1513afb4b5f5c716

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742861634-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9117446fc7130be0cbd9102191259b69239075ff25ebbe7f6768f99b662e7e02
MD5 8bd246fe5262d6e3ad23f35a5bad165b
BLAKE2b-256 7cd7bed66be397e2aa953c40d78685ffef19c5e2dbe95858a3977270268b1f53

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742861634-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 9a3b96bad38d176a8b671f2b5b9dcc4cecf209553fddfd51ab93359119613c3b
MD5 582886a67432b340940501df87f55144
BLAKE2b-256 826704c9c7da347c6eb083067e27c63bca776f11e1ac4bfc035cb8c3e8d9c2f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742861634-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 14d033b2e9acb73b63f1f701766beeb817527e13e66e4839bd3ba38c29b56c2a
MD5 32eee3c5593181da117c09ea69f74452
BLAKE2b-256 a6bc388959f93d76ec18453e5f76038a9b54a47fab89d85c280889bebe971669

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742861634-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 718a2c89bad4dafc680ca0595adcab5fa3fd911c7f0c6cf6f00f4b5a7f9452e7
MD5 a7fd21ec2c4be3dcccae45b54d4cd611
BLAKE2b-256 1d13cc3bf3bdb4402418b4c2a994bb79b7cc9843c7b24eac4c8db9ba17ce9337

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742861634-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 007b988b7b32f170ead9c91826907e7f93cc570b119904a8abebd92516fda46c
MD5 582478410d8144bfaad7f01d093d841f
BLAKE2b-256 5da9f75ab169658b63a38fbaadf195f07a2b1dd80cb7e15527be0c64d1ee0fa2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742861634-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5f9687a7c079abb9a56b2a24b6d65fc98d228efaa8c1dce288d0f68ed629615c
MD5 97a3774cdd12eaaecc82f271912da776
BLAKE2b-256 378a6d93e6dee1fb91314c61ad4366f9835617fec04296022f79878b8c6d0637

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742861634-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 3020258b1bffd5eb89467844c5178f9747314bdc88ab85d436bec1ec0ba12df9
MD5 43d58ce8696920c7fe2486e1bf87576d
BLAKE2b-256 bd211060b62cffb101bcebb6b5c331897fe56f10cf96923810329be5e21a269c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742861634-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 8b5d63b5ba1e0507202db451b4eb9105d3b11e07aae2c7c95ca0af1beba5d8e7
MD5 92e71b0542bf4f149781d4871e609f2c
BLAKE2b-256 44840a225d40ee4f3aa9e859e4a343ebe3ac01064fc41a276815770321c9aa13

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742861634-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b5672ba88711119e50c2b1d53d86d2bb3ddf670e2b12a8d496f70cd8ee6ff466
MD5 7798ffe66a9c7b790729c5c2229819c1
BLAKE2b-256 b9090b39539af26b26639e56b21fff962b32835438c76e34eec0cdada439f7e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742861634-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7dae35a0bfc1edf10513fdce9491e566d4815bc5ffec5833d21cef7e385d7c93
MD5 4baeacc8f8ac7a825806d9dcf5b4a196
BLAKE2b-256 d45cfc9409d5e02dfcb301d52af871f80e01e92cff2ffbc8b604cf4ab2929de7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742861634-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7948095a175b42e9b701c09ebb90b09c7ea7731164f4a24d3ef96e734dd6aaa9
MD5 75cda1a7d8bee50bcf4a6a38481b2bc2
BLAKE2b-256 8208d04b1121a4924682f69b42493b65917acdb1a118b274bc3173776cc54c69

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