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

Uploaded CPython 3.12Windows x86-64

stim-1.15.dev1738302984-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

stim-1.15.dev1738302984-cp312-cp312-macosx_10_9_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.12macOS 10.9+ x86-64

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

Uploaded CPython 3.11Windows x86-64

stim-1.15.dev1738302984-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows x86-64

stim-1.15.dev1738302984-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

stim-1.15.dev1738302984-cp39-cp39-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.9Windows x86-64

stim-1.15.dev1738302984-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

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

Uploaded CPython 3.8Windows x86-64

stim-1.15.dev1738302984-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.8 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

stim-1.15.dev1738302984-cp38-cp38-macosx_11_0_arm64.whl (3.4 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

stim-1.15.dev1738302984-cp38-cp38-macosx_10_9_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

stim-1.15.dev1738302984-cp37-cp37m-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.7mWindows x86-64

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

Uploaded CPython 3.7mWindows x86

stim-1.15.dev1738302984-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.8 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

stim-1.15.dev1738302984-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (5.1 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ i686

stim-1.15.dev1738302984-cp37-cp37m-macosx_10_9_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

stim-1.15.dev1738302984-cp36-cp36m-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.6mWindows x86-64

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

Uploaded CPython 3.6mWindows x86

stim-1.15.dev1738302984-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.8 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ x86-64

stim-1.15.dev1738302984-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl (5.1 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ i686

stim-1.15.dev1738302984-cp36-cp36m-macosx_10_9_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

File details

Details for the file stim-1.15.dev1738302984.tar.gz.

File metadata

  • Download URL: stim-1.15.dev1738302984.tar.gz
  • Upload date:
  • Size: 829.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for stim-1.15.dev1738302984.tar.gz
Algorithm Hash digest
SHA256 dacb734b9255889bc0c06b3c594c46cd2bcb187617b02d1f50211026d924e786
MD5 7532ff2039024f5dbab78ef086987f3e
BLAKE2b-256 47307294a866a618c85224091413ba16d96b376f893cba19ce0400e1e1e74ec2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1738302984-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 3670271397fc770bb98a18e0a30ed105f96605878b95c20d8313497d2845b511
MD5 9a2f5c3417dcdef6aa024d1cb3e5c178
BLAKE2b-256 18d538bb6258b2a86c5e7541d235984ec71ef78eba759d592d0cb44f3fe8b5d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1738302984-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3afbc680bd6c6ec5a7a5011c879744abf1aea76d483976049a90f1734daf1717
MD5 620c399d8850814915bcf022943aa137
BLAKE2b-256 da34c7543ced2ade0c2831ff9307e665608a2b6006c80141852f961dff80156b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1738302984-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3f7db72ac43af914d8c7265375a976f095b60c05d498259f82fb55ce1ca06cf2
MD5 d6607741a7661b104cbca7526fe5a4fa
BLAKE2b-256 58ba9ea3a36b5fa47f5103a7b14b9aefd6d323647ff63b4644ca4afbdf1c0c2d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1738302984-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 89e555c4c25d88928d396dc4f852ceeac69fdcb19b44225ab69337b599774c2b
MD5 96b519b6a6268beeb9bb59851093a12e
BLAKE2b-256 3c06f79e772ab41ac179c65d2103c09e6fdd60c8579cbf7597bea364eb83ed03

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1738302984-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 5224813957c4b251d84224b16d6e65dfbe1267471ce9b14f08fadab49f57dbd2
MD5 a5b9157367f87f0dedd141166b456d20
BLAKE2b-256 de4bb1033900b18ec8b4a830a8f0576507dfe776c11137412014a0fcf7aba70c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1738302984-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 472870bd3aee533a6d6c14bcd8f6f691cd6d6a4988bc8ffb063285614ca7dc85
MD5 5fd82e110a43b537b1f8707329eaa3e3
BLAKE2b-256 2f863d0ecfb335b69afb6d0595ab3827b18518eef30759e6f10a110ec5d995f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1738302984-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f727a75b82613d632a9e5117ad47860a3b0bcf67e4079ba6f168316467a4a7b6
MD5 d9290bcf68d57e344ff30fc1f48f6880
BLAKE2b-256 fdd115664373e3dc209acf3f61aedd030f1523b0f76ed3811f102b43c13f5080

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1738302984-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a4d08e6ab83523f619aba9e2115dcfa76b2e42feffb62fb6ea8a7471ff1dc6b0
MD5 7ba98c5608530f5646005d8310a6506f
BLAKE2b-256 1fd0f09ef431e4f79d86c69ce1b6f1720ed7c1ce5c30a759cbf8204fc1232b63

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1738302984-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d628e64ce32e3bee6a9691ebcf142fded1b937c9c674d2380ecaa70238b67634
MD5 6a83e0a771d8b57837528e1ade9cf258
BLAKE2b-256 90b3333826d59b611932e96dcb74ce0afccca2531989ad525a27ab1675d00129

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1738302984-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9829ae8531bba10766dfc7e73f90bd2899dbe218a05e67c785c8392b72fc9f6b
MD5 18693c6e64c5153b413706e4c362aeba
BLAKE2b-256 8aa8e9656a5d99858f2ded67f8f7dd8096ab7d7caff3ff32cc6f0a827999d327

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1738302984-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0ab212ac091f59a0643d80efa1acdc3cdf00ad4445c418c5b1923a9746a43bcf
MD5 a283fd377bc197c9e28b619b28eda9c4
BLAKE2b-256 d2c31d4739e3f3eefca05ad8e640d85c8db635a1b942d5ce6ae24ed2e0b61e29

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1738302984-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6739365c1910642f669bc9646838ab177fff1646bf9e5d33be5d9e429f0303c4
MD5 effec53d766553eb1a3491840dfe5aaf
BLAKE2b-256 05f768dbd38cef74fd32e0d028d9bbe9b9bcd294b9d8518008cfabd710769091

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1738302984-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 082124b2b8fadcd0ec51649d888ad6db9147c7ce715c86bef625e8a1d7f0c2d7
MD5 0515ff2db4f2b5bc0f2a11da41cef573
BLAKE2b-256 804f32ec49dddd80f8d8b118929eeb49c67094640fc6821985487aeb7c033ec3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1738302984-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 181a126c1ed965d7cc218e8eba38532d3fbd78bc06e821cff65d2d7827ca5752
MD5 540d0825a25a72f8328334a79480e70d
BLAKE2b-256 80a96aae5a80bb42d2bde05c392989635d38a7677b330822f12c68f5457b8940

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1738302984-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3c35929e55fec21b220121e35e3afb329ed249f96a06a29e7c34922508a8f93b
MD5 91ab087731b16e158b0536cf35016179
BLAKE2b-256 aa4ef0536cb0a98f64b74544d2d00d7e27993483fc11b3a244d005b49b3a7dc7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1738302984-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 90bcf25f14cd661c7840b83698ffd3c2e77694c4e26522caec1d002a819f1f75
MD5 6a5a545d27b8ae37064a2b9cbb406abb
BLAKE2b-256 d9f6816b6bb7da99ea6b25e9cb5dae7762142a39ad75e0c667c031b4ef836f3b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1738302984-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 a22e91a7d3ad8f42e9e9bfd20d66abfaa3e1fe48064942df13f946bb650a2b19
MD5 c9dd193a2ea06dadcb9e758368dd8ab8
BLAKE2b-256 2924455e27c38f8e51c747cfe80582de6b5e4a0fed7a02e9cd3f522ead4a758e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1738302984-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 699b0f1347094359cc812d6518749b3c7912413190d0d961bdd9e92b707b38b2
MD5 7b4db040fc98d2c450aed1544a63a1e7
BLAKE2b-256 a2fe75d251830daf53c36274a37df2564f823faa1f496cc48302178492ef1509

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1738302984-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 91db2f57c9de08f8fd7bc13927a989e1c35aa2d341d6338cd4a8e007ca355ce6
MD5 4e3ca1436c9aef48938104641ab19b51
BLAKE2b-256 52db56739c206dd17aa87ac46d5d68eb8180b1211fe75615c5f9bc1edf55bc86

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1738302984-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9994bb3543cd28f3777e8f7d6d437905a5d02bd332086f29a52bbc4d029e5f41
MD5 5465ee49e7cea765ab3278105c906bbc
BLAKE2b-256 0e5513eadd8f6315535263585d75aeaa6d1febeb74c4c65282023f96664d414b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1738302984-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 3b67a7732c3002f2269fbf90d780b539afeca11570a467e3546bc1f21cc995da
MD5 e4a5789f5f0c82c8a44d6cb752d3409f
BLAKE2b-256 b3812292985a17749045cba349c8a668eb179271f9bfeee50a706bc3c7c6788e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1738302984-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 29f8f716ed4fb54036a4d85bbb431ba481799ea56db05223bf0516c65436feac
MD5 6f2e1108a175760c95a0cd40792c6f4e
BLAKE2b-256 fe0a2b93680d204ee847e9b8b92a765c3d8f4cd30e121498566c672b486b67df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1738302984-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 181c924cf5e2cb8c7a28cf2dda4c488ac44a0aee8bf318f4458cc77cc24c4ac8
MD5 e4c017653c522d2a3efb1612e0235e63
BLAKE2b-256 58bd5b594a3ff9df04c483a8e2ec84a2460d2e76a793ac8f6790101f6d0c750c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1738302984-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 08e2cfbd4e9e6b68cedb8c4e2f17aaf05dac887c23ceab6d680a96c0d3bd123f
MD5 f3a0fc326f959125c662ceb0ed34719b
BLAKE2b-256 16e8ffd7abc569b86d90ca511b8523986980566694cf58b3b92d8ce4259711a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1738302984-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a4a25f8b5d61aa05dd7b47e2586c261645f97f56ec2957af43c8317ff504f4b5
MD5 a76599c0181fe898d5687fd6d961de0d
BLAKE2b-256 75753d6528fd6e5ab6ab43cebc0c5b3d05b3c17973cd04f045efb64a85902b60

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1738302984-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 1e385b46555e7c8b5d7fd6ce6fa45eec5102f8af66a8746e212afeea23111fc0
MD5 5fbef370aa341b922eb4ab83175df1e7
BLAKE2b-256 0c5eb899df7ca1621115bd0cdefbbcb850bdefa36c323b245f23a21de8e6cd87

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1738302984-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 12523618b4cd8d4a424fcbc0aeae21f1592e9e33b5680fb2ea711dcdb2a054a3
MD5 4808045b3ec6e27c8712af993e707255
BLAKE2b-256 a996e14ff70501fe3e6ce52876bd568ebe5b6489db2cf9f0500e8a0d240432ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1738302984-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1a5a6b64d7309107021382e5919c6dca134a3729bb65c623c0c4cde3e705a6d2
MD5 ed0f970ba977bfa2e5c03bce04adf614
BLAKE2b-256 25e0a44156f565b0d769db737133358bf2ec46a57b5826d20ae857d5f3d9056f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1738302984-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 158c320eeb289872b4b9e90c155b73cd6ba3930e73d3e549dc2e99707e95817e
MD5 082533008cccee64c5146c0802330d18
BLAKE2b-256 772fc654eccdf55a2b6eaadbfb479975a7ab71d8ee43c82c9ffbaaebaf46ecf2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1738302984-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 eb0e9ee99f836c67c447ab49c3fd579b9b3af8f622c8a7213b64b00e82d4035d
MD5 c5520d7523b9c68f65189681ab0859e3
BLAKE2b-256 5730723e3d701a79752ed1f6fe6cd93d87b56caf627dcefc56d676991b1c0b5d

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