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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.9+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

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

Uploaded CPython 3.8macOS 10.9+ x86-64

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

Uploaded CPython 3.7mWindows x86-64

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

Uploaded CPython 3.7mWindows x86

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

Uploaded CPython 3.7mmacOS 10.9+ x86-64

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

Uploaded CPython 3.6mWindows x86-64

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

Uploaded CPython 3.6mWindows x86

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

File metadata

  • Download URL: stim-1.15.dev1743569532.tar.gz
  • Upload date:
  • Size: 842.5 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.dev1743569532.tar.gz
Algorithm Hash digest
SHA256 b419199f8860eeded4c696ac138de1fafd14c8adc1359e62700953b2fd9ae3fe
MD5 5a357ef112dcc4a85e04120dcafe29ff
BLAKE2b-256 27db2be621d91115e5db206cfca9c50c8eed3fac555a6858193b78808b7ac35a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743569532-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 0c7f553ddf6e8db1b5b4f7054e8afb5c8ec9de2a37952d773e823bff6c160ed2
MD5 a15ec8172779fc542e45dd4bba18adfe
BLAKE2b-256 853b85ceefc0b729dfa0a1499cc47037dbd134f8170b7920d83227a41a9e368d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743569532-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1da94499303beb261dc149d98868c7112735949903aeef9ffc5b1b5c88560ccd
MD5 89c9d8493afab7586aa62bcb8b45b3cd
BLAKE2b-256 158b9e1dd408ec0cbb3902f6164d690c905d10c2d0fb881f14a6ee62785a168d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743569532-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 64baf687f56345e793c10dc0e79c0f2ff77a0b2275915e214771f75130b5ded1
MD5 dcd7eaef3482ea322cb8eabbe4757e9b
BLAKE2b-256 7dce94a08fba2abdb1a5edc357c3416d668db726ac2a308e69e4f2073035caab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743569532-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c4996515b93657ea0cd1cf1fadb730488d972d5560ee4b483ed4c12177639376
MD5 49666559e957a41483e3de30c6255b4b
BLAKE2b-256 9537710a79278a8267655b5cfb84e3fc595e02734b6922a9cc1e94491ee4fd75

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743569532-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 66ea13dca200f2409c6c870ced63da50828e9d1edac6ac6a820d687f0bf7482f
MD5 5ef1909e2f7e8053a6d51fdc8c7d8e94
BLAKE2b-256 7e03b5ed078bbdffca04cee1cc6f9d6cc3b9923d61dec42ed6e677013d7696e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743569532-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f98fec0dfd018ec9fd202fe6bf5f058c710e598bd9cf8205adcd7f84ff925158
MD5 8a1b7d17061b319f7116e4fb57969ca6
BLAKE2b-256 99f77babb5d16752ea1cec1a7519215b31d7c6aede26b128c8d574be80e5ffa7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743569532-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 02efe1a0cb59092d9b61636f763a5a4b64e2c6f8535b8fea66a5ffd2de94f11a
MD5 1698b14be0c97a6ad626454ba091c62c
BLAKE2b-256 28dd91074693d867aa66005cebc3fa33dbc3701826662be9c4bc8743abe5c7d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743569532-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 22c66a50662108040593274adeb77f71bb5d8a73df838c8e59361aad553a4828
MD5 d8903e7d73c766848fddc8e4ef604626
BLAKE2b-256 c6b994bc1e9f17d8158293b1466e6fa27962fa9dc741382fa126e06a6a600273

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743569532-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 c8e85ac1c08bcacfaf87bbb82d10d5b2d14668b0e30c0994575941fe9064e4ac
MD5 6b708ba9e290afdfffe1e19aeb18f70d
BLAKE2b-256 34b965ba02c7366d8ca042dd3b4254504e1a8b13ebec600b591d4f6124142115

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743569532-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f89b955263fcaa7ec187b85b341b7fda1b63e1291cf271f51b92b74cc3b8f15a
MD5 3afc6f48f1690bdfe653b3ab1561505d
BLAKE2b-256 2157a33a99b888a13c4008ff52d49057135f23ee447ab64808dad0c5c15c62d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743569532-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bd442441359f18e749aa038224fca170f9feb585312f22e91a59fe9d3fb895de
MD5 3da44c513dce443c004da1c5dc25f6c6
BLAKE2b-256 5acb41d64a566cfb16ce8cbe5afb735be8504fb72cc96443f981088828c3f9f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743569532-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d4642d4e97f5d8206e8cef0c07cccb76f0b2baa6143a2c7e22a961d3d472d23a
MD5 34bcff76a62edecf6b20310892dd64a6
BLAKE2b-256 424f64ed88de764e05d1d0a85ac424e1b4d740c39cb1d4c546e692ca114aa092

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743569532-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 953c2bd03228051c06b9062d09690edee4776e1204f0b8cc337e28811cf74100
MD5 eb486ee35391e13020346fefcb641cf0
BLAKE2b-256 2a7ae1519aefdb8e7e6807f792c8c3ae61073fe2c1d116d41ff5dd8b52d73094

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743569532-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8a0e211482d223188ed86971668c6c9ddd0c9fd2353e64b12e685c78658f85d0
MD5 9d95e6f6e45a9a7aca9c058846ffdea4
BLAKE2b-256 ea3c4ba2120c188a03b538f4716ddc978b232fed7fe9e6f80f445f34ac2ddac3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743569532-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 193fd07eb009bd4169745d250a4cfa8d23da7ccb1e042b391f9d6981f0d71a2f
MD5 f713263552919daca0c4d658c0f6580b
BLAKE2b-256 b39e790f8d0fc32a5a9740ed75eb235f1660215e5bf2956448543e38754d027d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743569532-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ad04477df86f37e791cba10499be5b66f6dd58a935144fb35277538cbf146e5d
MD5 5a7307d7c39e030d0735936f7d490377
BLAKE2b-256 0fda456927e01882a66d5f8f8cee21d540475938d647cd943124806294a41d56

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743569532-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 adf94accbf38c46c60bfec276ad510c4ea5b02b926924ffe58701f735921a48c
MD5 a72ec448c7e21f8c591c297d1cf8a70e
BLAKE2b-256 6a06e29d158636294fed50910e2ad006d1de5a31ee5ea7a63b902c481bd64f79

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743569532-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 48a40a995cacbdb1c1f5406bc3c274bceb2225b4715ec18ece3984477310bd88
MD5 aac2307a570e2a67a8b5b5cf7f1a88a6
BLAKE2b-256 2acdd5f348cc2ff84633c6e12c550efc168fa6520fd85ba3dea0b82415403193

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743569532-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 977695e067390fb4fcb4a58c6abf796147b203b7cb5d082513b69539a8fdc283
MD5 b8ffee10cc8361dbe10cd77e77fb0751
BLAKE2b-256 da888f8380edd0a0427f6bf559cf2f736f7453d88308984b7b76b950497aaa94

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743569532-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e83e40f17d449e3efdc3fb4720d30f3aeac5182e2f524c646fe2e5abb541b432
MD5 82d19953fa5a3c7e6138bcf0f8d50577
BLAKE2b-256 3c5ed3f792f795a61e5c1bda0e63b67acdfbad4b472c8213966cba4dd9f5273d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743569532-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 4ea003543df27ee89f85528ede774f2c4885f886b1feed06c556ceee77b29029
MD5 feab8c7a143aff6088b8f986366336b3
BLAKE2b-256 6ef9874812319b6ce3ded743546d4803913cd0a0a9d3a0cb8b55014a967e93ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743569532-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 6f0a3a7d827ee6e22347fdd82d4caf19af94e196577bd6d97f33f945b83fb744
MD5 3204375247f79892d2ec565f8228511a
BLAKE2b-256 bb13a74ee96e4aeb52c60a86e9351c471169a31fc8b2143ca707f996cb41e11a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743569532-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 58a1cb9ad2f2c511dd4a63079cd16af66ba1e173592d23bd7df187c8e29d6327
MD5 c68fc3c7dad4cac16cdc10b6cac79339
BLAKE2b-256 77838bbdf12b500f45ecc17fa2018d8268119092ea00ec7a1941cdbd5014db02

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743569532-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5cd375f5deb89bb2d546fd18cc597ac6fc8283ab89e821481b298654a8e9b4c9
MD5 62fd8e2e5c5df9ee18406b35949cfa82
BLAKE2b-256 aa873cd14e475e4692fc249a0507e17d45f4d79a053de176c4da1ce8e98e7956

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743569532-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 854467c9bc5ec0cce4b12dee782f4e3b732ad3837039093c697a868920c9a8ae
MD5 3ab117d5db614b6fcd672f360d77ed1c
BLAKE2b-256 8dc8d029fe5f8befc85ff3d6020a3cb18ae75f4a4fb16201a832cc6af81e8910

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743569532-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 5176bf03a0ef3674f81b5e333b67dea48c7877261733140fc0809f92d612761b
MD5 0650172e59813640acce961706e411ca
BLAKE2b-256 e6e31bdef6fb032a1ebdd8edd6cdb4e28cd274f5d7edbdbed0d595773bd1182d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743569532-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 75890bd60777bb250eaecca1197f1a450bd03171eaaa945c90cb85f8a35ea487
MD5 480eaf9981af809c92c7de96a90fe1bc
BLAKE2b-256 53809af3ac59608adff1b96c16857d2318f8661ccc7079f83412edb53d088d88

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743569532-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 95343101872c49a2954fc84bc4953b48c7bcfbfed766f62549f2ee3a25e8ce62
MD5 23b494edb1d0519dee35832e9e6d2ccb
BLAKE2b-256 e331435aabf395eb768c4cc887f2de8cdbad2a88fc1ed254a82e7c8a45ee7bab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743569532-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 137b4317ce91f64e72a15e46c3eb9dd995f4ebb0c63f74093118ca9261a377ae
MD5 8bcf2ae9d32960338c98b69c3e40907c
BLAKE2b-256 7840ecfcb6ddbedbae54e6554409fd2437d38562a5a024897c9f89a0656d7568

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743569532-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 25a365927f13f327c484ee82cb2dc0b2c9ff465a74c6089f87ea6d4cef2b6606
MD5 a8933357bc8b791ed45074ab00d1e2d7
BLAKE2b-256 c08a7b8fa2572394da855425640263289bc6a97ab9b8efd6988b4f73cff2f44c

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