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.dev1742871434.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.dev1742871434-cp312-cp312-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.9+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

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

Uploaded CPython 3.8macOS 10.9+ x86-64

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

Uploaded CPython 3.7mWindows x86-64

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

Uploaded CPython 3.7mWindows x86

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

Uploaded CPython 3.7mmacOS 10.9+ x86-64

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

Uploaded CPython 3.6mWindows x86-64

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

Uploaded CPython 3.6mWindows x86

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

File metadata

  • Download URL: stim-1.15.dev1742871434.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.dev1742871434.tar.gz
Algorithm Hash digest
SHA256 cdfa5953d3aded31238e20539645e131dde18624443d410b57fe9dd4173b0f40
MD5 fa191ea5e0aebab742e0d5b9d59e6326
BLAKE2b-256 89345176561a44a92b1cde8e29717ea6438c0aa63773f5c264d3462881bdf41a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742871434-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 fac4cc1391e1ee3a5e21478b6e3eba90a41659069dcb95b37aa68e49a3c33d4f
MD5 114c25787a7b87f27171d69f766d3f22
BLAKE2b-256 6dae156f9d3b1f0c89f2c469356ff8716ce294e5f50c1d12dee1d352094bd57f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742871434-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b989a76432019d407bac7ff199988cd2164ccea426b331bfd167110d8ff6f434
MD5 8eb79f00e465ad2ca68e2f641ff77a2f
BLAKE2b-256 ad26eb218ead363a76831acedb021660112970cf998a25e20e325835a0b6e73c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742871434-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 eb6ac23b7f2df5bbde28887903385b554be638d82058c9eb847c1bd7096190b8
MD5 3313c1dfcab8d526f2191146f157dbe5
BLAKE2b-256 b401329d9047a2bea893d0f06b5fd9f1fbfedf781b13900f37c8190e17d08b7d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742871434-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f9c3fbba6be6acbfd48475120b54a61e4b751e0ca5ee8b862dfa3793a37abc22
MD5 84fb23545b68e4d7518b296a46eb7c00
BLAKE2b-256 1d1ac928e6c1488aeaf92fdfffc8ad973bb1cbe68e4bb5209e3f34448db60b10

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742871434-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 f0aa62067bbdba7947f3073674411b648e6558e9d9c679aa30ef67082060d008
MD5 159f4df2a380450c0ef6a7c7925be015
BLAKE2b-256 e1aca410e36cdcd90a528dadd8dd7862bbc935045b3897d3f2c1540f7283f69d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742871434-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 af848483f2bf186c17da47ec4163f34a3bf57b7fb6abfd15749f53f65d89ee75
MD5 2b7804be8e6e95df4b534fb5d606b678
BLAKE2b-256 4329c0790dc10987b4a3eaa5cf12bb29d7539d17e6cf9028671685bc9b124632

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742871434-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f073b325b2dcb6ce29e93e83c8b776bbbfb7ae1bef5d19135972da756f47e25b
MD5 6487dbd784c74a7f447190ebe927bdb2
BLAKE2b-256 912e5eea16ed27739e9ab174b76d3f32acbd1f5304a9576b05c3bb569e170438

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742871434-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 307b2e4259e61ff2ccadc0103811555917c12ff39e2718f025e89b08e81261d2
MD5 2af7062ff109b7f66613be9d4d69cd25
BLAKE2b-256 8d72ab54bc0c4e1cf650df8418e5e50974a0b1b4b830183d7e63f9875d9700fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742871434-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 39df0507b18eef14d3b6719c11a63c53a66032d84ded65774236c8ac8f178ccf
MD5 69412faac45ebf19d2ce2c465d5b98e9
BLAKE2b-256 4e25aa93c8013e3e830edae7ea15fa768eaf558bbe7ab85f11f45b978f2b9880

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742871434-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c7886887856031f6c4169f56f2ee419fc08b2dcbdbf405e29ebc0d7fee265bba
MD5 ecb53cd60d5d12b463500efaeaa8e1ff
BLAKE2b-256 a71f2400d7ff4fbc48e13b04f70d06a61c8828a62bd3dc86ffe3f513b281b428

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742871434-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1ca91f9fbfdcfe756ce9a9cf55f0ac7bd9b6bdd68d6302ae3c6aa94e1e3f1f1e
MD5 d2a7f8d2b1d6e402a74a756efec501bc
BLAKE2b-256 565ab3491d2ef8ec29450f228d6df1cc375470b448b46281f105ebebea7807be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742871434-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7e06ca487ade6ed0c783b1365a4c14cf5586c88b5fac77c5b4808f5935df31b4
MD5 7db1fcc9df9eb6a64a85cdb06ce00332
BLAKE2b-256 c49f7d0273e6b504c5569415d3252245ac015363534d07fc9142e885aa3622a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742871434-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 3b0da1d762990c8285a80a7bf24d4a80b495a7c7b06c4a53382cf1d095b37a46
MD5 b850f3452a242fad930d2569dc03606b
BLAKE2b-256 3cbed41f756b39cf8bcd5c0e49fd3c793296c88197534b3297721947188e14c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742871434-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1ccd52f048d0c5575db6ca7f770618207659b228e66b5a63a76b3140399b806a
MD5 34014aca03d7053e8a7037584a459a29
BLAKE2b-256 740a5f53f90fb4eb75445d66755143c5e5621680110ef1bd58ef8fb7551c62b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742871434-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f06c8acf39f22b93337d6b0812197e18b0b33655040eea66a0421ae97e0b0491
MD5 03b4471e6b78c5c49ca1a70a22f8ec2f
BLAKE2b-256 641f74b6387e240713d3eb38c5262815b15f5b3c1a5d5f0a1eefe6258ccdb29c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742871434-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 62d9a81df5f6eb95e8434f783a0bc400de1b4bcfb30aac762d5db6e7a6a3d342
MD5 f0e2c7013d28f47aec969a2e2ea4fb8e
BLAKE2b-256 902e01034fc2605df308f9961eba5114b80956954d081a2f2eaa3df7e3fbc061

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742871434-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 1e31cd10c794fcc2a829a56400baa577877aba40d944b7f6e9c04772668ec283
MD5 a13db99a88de0e15d39fb716c8ee0724
BLAKE2b-256 8e20c9e307796ef0efe1ced48aa7d4065a0f08d0aef8a29a4a3a49000da98246

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742871434-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ad62ccdd258ceca9a84db4b4a51ee2085745ef536e5f05245b1b0357df51b73f
MD5 3498f0630507eaab5828454e42dcf93d
BLAKE2b-256 3a3d662a8cd914950b7105b0010c493fb0845b4af9562dcf26ba8e706684046b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742871434-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 84e60e5eb684cd4fe6c2613531f96d720c3b6732f916c914d0cdf4eef22aab33
MD5 4a781279b425aa3fc1a12b423b8d22e0
BLAKE2b-256 d05bea737e197e3bc4d1720b9759824853f54bd43ddaf60773cc5ed8430c611d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742871434-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1d4162680348c0a38edc312c21f31e57d932778a5fbf5b3f214362e3dc8fe81f
MD5 2ce29ff8c6dc47cdbc1f4277df7b01be
BLAKE2b-256 c57793a1953674e17cfcf3b3ee81bd342c48d0c9a82b399e12b2e7616d0eb4be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742871434-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 980b400d76776a6e33b47410bd31dfe9b93fbd785c8c16e1311b620d3e5d21f1
MD5 9b7c1ae59227301327024460cc9d1c43
BLAKE2b-256 a44cfa46959252eb9b81c0dc02a3e46f59cdbd5f9303cfddb9bc38fb22161bdb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742871434-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 1b3ef2da502a99e770861ecd71ca63e4751f7a90b86e18426913bcca69e97a2c
MD5 9779fd7abb978fabd201ce23cd136629
BLAKE2b-256 c452216acc79befa67ee8733b6281d8f77d610956b8683c6b0b3722219c66651

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742871434-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d0f3903dc7d2eeb154f5bb73ddd47f0825adb37c5b6569fbed09ad041dfbe133
MD5 9f3de44016a0c6799d8bb700fc24aca1
BLAKE2b-256 bfbf3145fae83005c8ff9d98596c70e167ae07b775542e846edbe898dc2cb5ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742871434-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 77adbec3275f6f2f5396decdc94d5e903dd33e7a66d275f8d4cb0027c6c54d52
MD5 96906c52a64cc77d8d5e5406b54f51dd
BLAKE2b-256 cba7d120e3f3d32019c3e54b25a0f9b86316c93b162570e9001b825b9e184bd2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742871434-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 07edaa4c7f65c3ec338b00e66b027394012a4c7cef0105ddcca9f1dc0261873c
MD5 f30bacd9ee7c5d1b82e915825a720372
BLAKE2b-256 c6b7a9d36ec24c5abb25c56abd100639fe1e132b3b04682c5d13a5b76a33a5a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742871434-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 bf7f77ba402425f0cf1f9bc08b75fa6c32d7916b34aec4a9edff80816ecaa838
MD5 471d5c9b28887dfafb6dc23ba3d7a8bf
BLAKE2b-256 05efd4d655cdf066342f5e4a73469850baf07be7fe21a5e852fd5dc80af9db3f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742871434-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 095366703f6c33e48dd00e8c8dca64ab6041b75615e358bd71ee97e8d04d987b
MD5 6d2fb96df738419226b90e7f42f40343
BLAKE2b-256 380fed65f10b84ba17072f5c084771a14030435fb117d3f6f29f59ecd460c377

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742871434-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4b4dd145ada22dda228eea18c1ba0497326a515df121b3faec677b84e62fea3d
MD5 03f9a0ea6728f5577a266a0bb892511d
BLAKE2b-256 5ff0926b70dd9091a59836c77527f4f4996ce4b2b02cf59fc13b7320dc269637

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742871434-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 05bfc1580cf0970d0d8be280a2cce88f086f70b833197f686992d24effe41afc
MD5 235843165290a3c3fab214dce206a49a
BLAKE2b-256 4dcd0d61e205f9fbb7dae4a02d48cad3fc4f2323306eb043b52ca6d3104ec8d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1742871434-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e21b5292b838505dc983a9003649e5de02cf7cb1c49e10c50d1d3025fd88ff98
MD5 d09981a2abe98aa2d5e446dab5fa95a4
BLAKE2b-256 689b7f7e5249330b728c71ade598641a96f7f983f624a838bb2e5c2e972ec851

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