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.dev1734387727.tar.gz (817.6 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.dev1734387727-cp312-cp312-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.9+ x86-64

stim-1.15.dev1734387727-cp311-cp311-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

stim-1.15.dev1734387727-cp310-cp310-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

stim-1.15.dev1734387727-cp38-cp38-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

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

Uploaded CPython 3.8macOS 10.9+ x86-64

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

Uploaded CPython 3.7mWindows x86-64

stim-1.15.dev1734387727-cp37-cp37m-win32.whl (2.2 MB view details)

Uploaded CPython 3.7mWindows x86

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

Uploaded CPython 3.7mmanylinux: glibc 2.17+ i686

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

Uploaded CPython 3.7mmacOS 10.9+ x86-64

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

Uploaded CPython 3.6mWindows x86-64

stim-1.15.dev1734387727-cp36-cp36m-win32.whl (2.2 MB view details)

Uploaded CPython 3.6mWindows x86

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

Uploaded CPython 3.6mmanylinux: glibc 2.17+ i686

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

File metadata

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

File hashes

Hashes for stim-1.15.dev1734387727.tar.gz
Algorithm Hash digest
SHA256 d7b1c46341e0eed70796586824d1fdbbca23a4d2f05111268b553df3c4bf0381
MD5 d53d7fdf82ca45ee81bfa5b259bffe67
BLAKE2b-256 78e73d3dc1f7596002c9987bf4eee5349cd740cdc940bfd78500945a2f0fc35a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1734387727-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 3d8108c0182ec97cee4ff312f2c9aa1abd05689d3a42ace46b76cb54538f18be
MD5 caf2bbc4d081337b5075fe6bb538ae98
BLAKE2b-256 ec5bc4ba968ebdcc3e343274b8c1968c215923d51f2842f010bc1b4b48e875c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1734387727-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5252f63149d3a44381fe6d96417d5b751b24587843857d0ebfcba3f7de708b21
MD5 99608c9f3d95fc39c41e6abb3328703c
BLAKE2b-256 acd243d8ba5a0e6f16b30f559be6c637ff456126df96de4acf4a7aedeada8616

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1734387727-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1b6b034fcc614986d920b2c5444a7b5dcfb4c0fe76233f4b121fb56a8ef93e9f
MD5 81d0f7df6d36053a1f39dae2d253ef3a
BLAKE2b-256 562dcab628f5c67109110d1a7db979a2bb7806e9bcc6f6b35e6ae4fc0955630d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1734387727-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ff423739dabd92035d7cbba84026bc1b9f8e9f3158b9da7f05ea4a9e4a89520c
MD5 0ce2bb56daf34828f0af5bdae80131a2
BLAKE2b-256 01bd17927a65c116db13d3dba36e204eae696dabde2df7b464eeeb46c7503abb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1734387727-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 74f16c8c930cbee0a880aaf4c7e0b69d2d4c52aa53b78c9c775cfd845cd1d026
MD5 c0bd578b34dd1f3bbd088bfddf06ae72
BLAKE2b-256 dcc871e9e02b828ddc93cf2900e78118e40ed5179457c64111820854625c84c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1734387727-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b6c626728b5138eb3e9053265a8005c9d81f1e8c8c3d3c85322dd09ff0c48608
MD5 77ca9e8f3179ca6e38b9e5806c2a85b0
BLAKE2b-256 56ad8ae6fe60ba65cbed1b1b8b830ff83bdf2360904cf168141c5afbb1f47607

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1734387727-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a552d64dfa1136409fb52e81108f72f94ffbead17888af865c321b151f13e42d
MD5 a6bcad154cfb8e5fca62bf5fbda6683d
BLAKE2b-256 03f43fbe3f1f0e97f52b8d26bc80d95ccf5ad460f941e74de40f0cc8e9797fc7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1734387727-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8faa49c14a59e2a2830097069cc1e8bf7c90667f0bc5c0b07bf486ff75b15174
MD5 b5f3671702d2db9442cac5c51beaefcb
BLAKE2b-256 4b070be1aebddf7673f1a6d07733c1c13a097c0fe40d14ed0e59ec67e7425c04

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1734387727-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 75ece5cc85d3da135064b75365994271fdd9e83bd0ecda2b4a0d7b458e9f582a
MD5 54d188268a4f2ff288dcd803ebc59cec
BLAKE2b-256 65ee94de0413e286c274683a01e38d02f62dbfcaaf1577c0d0eba9a9a0a811d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1734387727-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2b1b7c43bde69552ef98e1a2d4864d90e13cc739ee8a5fee31a50ab72a31181d
MD5 2aafda3919ae657619ed496aafc389a3
BLAKE2b-256 153c09fff77d66f6e1d74afd4cf32e38dd704b9d4e3db09a7a1793b577223b8e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1734387727-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a2af9387bb35b56fdc2de260700255ad6e94590990c81e6d796ae5b7211427d3
MD5 f3882969cd2e513ebcc586b824a2744c
BLAKE2b-256 c57dbb2ecd7f764543ce73daccb9736e50d2346a740d99ab1b93658e31d924c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1734387727-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 75cc35f8160fd8a353e5243664fbbf52a055828314e1ebd7278f83a1169e3705
MD5 51abac07ba9dc8a59cfe1cd730c96b97
BLAKE2b-256 a8c26e6ea7e1f63cbae1d741d2d7e0a6625d1965b27b28f8ba9682080577b077

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1734387727-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 8f39f1007db58a51209d867af2da77fb7394757e3a3d196d50df1858ab995782
MD5 1aee88c9bc00e362e70740679c44156f
BLAKE2b-256 92eab4d6221248df4d2bdca37f9e0968ae903ef6b8d1235af682d2a582b7232b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1734387727-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 eb59508b7d78fcbc40f928e0c1036ad3ad79f4ba84a59025522c2d3b96f3238b
MD5 7bd9a9e4ddb4adfdb82b56d7890a3a28
BLAKE2b-256 9ca14710d4532c91b07c51c264ffd0555984922af76d2a6073cbd304f889d4f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1734387727-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2ac7375c0377c4313ac38090f50cfde85a1ed84382bcf380156b38b4b0349953
MD5 8cf43468ba4c15d04c0761277b392646
BLAKE2b-256 4843d10cdf52e97f59141451ec6115a41aff911c1f9c5bb1213caecc2082baad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1734387727-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e27fed001d565da7fd112a0d02ebc00af74e668a8aae68a9c7f16cdb305b47f0
MD5 022946f65c1d7ee02524cc0ab1f41c15
BLAKE2b-256 0cbe38cdbe142fa30f0dbe2e1093dc2606cf2c3248dbb05b707b010b3b27287d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1734387727-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 e640eca277b3541d452620927ca0efff4ddea0b7be35b574c90846858b03400c
MD5 4e9521a373e50daf14eb80d0cc7ef1ce
BLAKE2b-256 db810ea980370c35c0f6376bcc5e7664823027a0998a80e022bb37ca46a3e9e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1734387727-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 116144c653cedec3ab98625b7214a81c4093b4f7b4c0df4685505ee751bf0556
MD5 7535d0c763bd7f7608ed770793e0e733
BLAKE2b-256 32399d6a00db07a534aded6a7fe3d28cfa75c401d4f5c327ea4794620d16d40b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1734387727-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7cad0aba6cd060443c043de7a75df5c1993c97e2a58571c3340c827a2c91bcb6
MD5 1e62c6fde53e08b924f8eb8c0fd34029
BLAKE2b-256 916567cd812f6e0005c1f10b2b435ede9cfd94e2fb8af135d0b783e9598d7f6f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1734387727-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5225b24157025813f9c5504292f94a1b13c279bb16b1ed5b2d3de6ca49c92bfe
MD5 f35bcab289833bc1ed946f690219ddc0
BLAKE2b-256 ca646d5c36b11ea9f05fb4ceeb8d8bb11efb338625fd7e3e2cd8e594906a3b61

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1734387727-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 70e79c4f8af9235106e31adc20f29c33f5094c5564ad4cec571ed619cf4dc68d
MD5 eece5e2beefe1d035601a7a1cc973c96
BLAKE2b-256 b201de8fd7f05de5648b8f1a5f7c7ae76f2d7b9b812f8c19c021dde2203e86b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1734387727-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 c21905a4cbfad32c5a05d4c76f66df5aa67711ee011affdc73d42644e2c405d2
MD5 2fff648184a64db88e56e0162f4d89f9
BLAKE2b-256 e615051bef8675e38d5dfa29bb8545dcb1e97c10b1980bfb43a3c9e72eb46107

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1734387727-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 323f614e97c172ed643edff760236595a648b4c377b20b485f3adaffe9da8768
MD5 096db97b9fe1c7ec987808e7093b1679
BLAKE2b-256 38dd630645ef957052376a228769ef0daa5495bbe3cd49d74d760c7b11defc4a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1734387727-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4b5d5923696fdfe561916da924bb3cd142ecc00620f19c1f037b1e3e49eec5ab
MD5 4ff43cc451819866790bc222975e9ffb
BLAKE2b-256 a07c60408562c71ebb350b02b2cfcb3b37c585ff58d53cb9406ebb56a3d09601

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1734387727-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e9389310acfb634efbdba3344528b5c2fbb4a23a3270859f25cebe8e1db2b4f2
MD5 651d251844322b3f4b1f116847cbf084
BLAKE2b-256 18a2a4b435e0358a33ef6466ccbf645eb04f931e9f7bfeef5e457b10e9cd1dda

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1734387727-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 735670705baf683a617c41e0d6272efbf39896ad3d3040fb5b397f1fb191f042
MD5 85adeff6d8aee8bee942e2ee23c75ce5
BLAKE2b-256 d03f6318475ba28d63e4598b2aa115ca3c9c3cbeca961052eed545bf8857dd74

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1734387727-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 61df6d8a3caa5182e296e521744c065678e6647203988911ce6de6434d80255f
MD5 cd1053bf9a7caea42142d30ff8a1fc65
BLAKE2b-256 2e6f3a2c1ee05bc5259783d7012f2d425d0fbac78e79968652ac5e02abf1c4e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1734387727-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 77300102034d8387ea5b2b7c0a4422fa8644998df4e5aec9b16fd668bc117166
MD5 ecc929d6e8c8e2932147ec88269ee762
BLAKE2b-256 f1b9ab8dcb5302945dc77cba1e83f77a65be3b0db5d99a0496c95b0c9db4f626

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1734387727-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 769ac29a61ac95e37e253059c1bd4f38b5b5315727328bc245b46247775f20fd
MD5 98778503e2aa0bda46a432fc228ee9f7
BLAKE2b-256 3c9e45638c9c43023f72914c29843b94b39975421c9da1ab0a0645c2c7ae16a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1734387727-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1fa5f15d3c358aca0134dd8ced0a0297a997d414281d2d38f85b93e1ac38a459
MD5 819fea866210cc4fe5c44217a3c743ac
BLAKE2b-256 57d37e6bf6115dbc417b8bd6b928836d220efd5abffc63d492c75d5d0d135818

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