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.dev1730154364.tar.gz (814.5 kB view details)

Uploaded Source

Built Distributions

stim-1.15.dev1730154364-cp312-cp312-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.12 Windows x86-64

stim-1.15.dev1730154364-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.7 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.12 macOS 11.0+ ARM64

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

Uploaded CPython 3.12 macOS 10.9+ x86-64

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

Uploaded CPython 3.11 Windows x86-64

stim-1.15.dev1730154364-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.7 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

stim-1.15.dev1730154364-cp311-cp311-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

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

Uploaded CPython 3.11 macOS 10.9+ x86-64

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

Uploaded CPython 3.10 Windows x86-64

stim-1.15.dev1730154364-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.7 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

stim-1.15.dev1730154364-cp310-cp310-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

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

Uploaded CPython 3.10 macOS 10.9+ x86-64

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

Uploaded CPython 3.9 Windows x86-64

stim-1.15.dev1730154364-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.7 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

stim-1.15.dev1730154364-cp39-cp39-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

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

Uploaded CPython 3.9 macOS 10.9+ x86-64

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

Uploaded CPython 3.8 Windows x86-64

stim-1.15.dev1730154364-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.7 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

stim-1.15.dev1730154364-cp38-cp38-macosx_11_0_arm64.whl (3.3 MB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

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

Uploaded CPython 3.8 macOS 10.9+ x86-64

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

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

stim-1.15.dev1730154364-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.7 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64

stim-1.15.dev1730154364-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (5.0 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.7m macOS 10.9+ x86-64

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

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.6m Windows x86

stim-1.15.dev1730154364-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.7 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ x86-64

stim-1.15.dev1730154364-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl (5.0 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: stim-1.15.dev1730154364.tar.gz
  • Upload date:
  • Size: 814.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for stim-1.15.dev1730154364.tar.gz
Algorithm Hash digest
SHA256 4d0cdbed05b4a9e9d658a530cda919fb6e204e9949f1d0fa4d3239af5bbd0182
MD5 5b1eff1889f51a5eaabe90cc235fa88d
BLAKE2b-256 1f8cd309991d55691931f45e6773e2c2f45bf5c8ef4086cf201a232add6a6195

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1730154364-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 8a527fc1aa9bdb2ca001b6ce52252bfe66d89e17fc69177b73a094cdee96a32b
MD5 13e5e4fb64571fa99972292f0b724d3d
BLAKE2b-256 9a59d217f8adc57dfed3bee7535907ae73d8b183d8f608d54c3ff28c336cc306

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1730154364-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 54fb0a62090cbac0be31eb6ac97b0d65c5da98695e62ea67b44d698d52698b92
MD5 d714f35cf8079ac52b03d6038c920799
BLAKE2b-256 d5650fcfd49ef3323b07145cee9145b92850823645180aed640d979ff631f9aa

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1730154364-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 59a89c08ba5db01c165378bb4306a7cf433d4a79b9c3541946b73d1c3c3fa92b
MD5 23907ecb54e292d0d30f757591d41333
BLAKE2b-256 b4939633c4cb9d081bb7c9ffc56c8f870d3e5541402c1f20b311f0d0ade83d53

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1730154364-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 06217e148c2e4c2490e1b984fa7adcf85f2187a2c31b9ecdb3b416de2164d98a
MD5 827acca8a75478e5a08b0236e87388ad
BLAKE2b-256 ae662ced06dd9d0b09cf5506ff7713c357fe72aeea3b0913731f8f6ea5747a17

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1730154364-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 74714ce9d997423ec98fd274286d5c886a89612434ac225fc7342197cd4965bb
MD5 8150c063b5f07225128c46e4007730eb
BLAKE2b-256 dd9f199671721cbe87e10f0448fc951d2c7669ae22885b69feb980a3483c3a33

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1730154364-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c0b3b9e8448b2812fd9ca6320f47f21b201c846182b4cb2450174e6fb92c24ee
MD5 e1c8d3e68ed5b48423c36edc58206bc5
BLAKE2b-256 b837aa03ffe63488303ed5602f483ebc0aaab8df4bfce12c80e5ff43c43cc170

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1730154364-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8d929f42c9e988ab8512bb6633985b194159893dfa73b2af76452662a006cf6f
MD5 69e0326f05920340984b4073aecfcd92
BLAKE2b-256 33e0a8d2068983c45dd360bcb3665f0a0cf02cd0b8207249365e78319bbf9f3e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1730154364-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ef21bcc304e0f78216ba7ad2784acc69f17490690ea8ac4073734dcf894dc07f
MD5 0649ee35c45e8440f7771de8a921a29b
BLAKE2b-256 494ff2322d9499ca70ec7c9df2b97c64ccb3bed9def07eb94ca70fe3409d2cdd

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1730154364-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 de51fc22410c247ea1984068a2df3a71b769835fdcf0a2aacd6ceb968a866cbb
MD5 601547e4f52fe68e4d8ec7c48a775849
BLAKE2b-256 9369ad5c305e44a14a05844029cda26461a585560fdf1a9ff3b884eee8074ce3

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1730154364-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ae72682ddb08d848be0f8cc0156288f35d6ecdde9b8c0b9e0cdd1be053b87b5f
MD5 70bde9dc6c547135c5edc4669ee4fd77
BLAKE2b-256 4e3e3f125432ea4f9f06c01d88e94846d1edfe6e239c2987ef69352ed5afda35

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1730154364-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7aa4f5f6bf6fe7c7bfe9bed70d7462a4ba3a2f946964b161d6f1614f18245715
MD5 84425d6d79d3792ff382cb3901885a09
BLAKE2b-256 b051d5c01171a09373c5ef9198c905d1d8d905e8a2ae55f8630ba50b56b44724

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1730154364-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7d4bbb407882e8aef8174d5ba5104f3416a0312e592775c290b6fe01ddfa9d00
MD5 2bf4acef41431fc4fbb6d61adece79be
BLAKE2b-256 5058fcec906da614e736296153d423e37c9a393d29df5376fdb2c8bec1976738

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1730154364-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 eac844e92489498b806632afc0337c46a1ffafe115e4c4e4013d1dfbc98ef30d
MD5 7b151d1285730c5d8a0d30c0e379c8de
BLAKE2b-256 01cf247ed58064d54395ee230522c66690c84cdbabf6db06ea78509ecd591e93

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1730154364-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 667fc064cee4995f7172ab483c2458f8c5f269b4d283a9da85c0d7951460dcba
MD5 90dcabc85a8add4553da38663df8f12b
BLAKE2b-256 cdccc137815702de71065a3e167a0af5dea485fd5669c249c202f42ff966016c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1730154364-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d7f4f6ce0f6c6faed17bba60379b4213c5f3c5cab6cbd7c4a9e864e51d08ae61
MD5 bd4184543c6dde331acc98550a4a2d0f
BLAKE2b-256 6322d98c40238632a5de64763245e72fccd127a72f90242981f17a3434995cc4

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1730154364-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0016d48ba3df7aba29147ee000d1b32b3c0f2ad888af4d49198628afca22888e
MD5 000494edd7696fc26e451c6c4d9200cf
BLAKE2b-256 dacb8af4146ffb539ba29a936a8b47479b38ff9e103e6da729b79c33a1fa0c14

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1730154364-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 138d9063e332a845ba9aa19add4857618bf5d4a51d2ecfdbcfa6f5f8472f35f7
MD5 e59433eaef8de6c7510b69b4168827bd
BLAKE2b-256 e427ef5df8ac6a576a05c4f0c7292fc56ced64ecc670306d9d24c816d487d974

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1730154364-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9c48568a786b7ca6bd92e4bf4ef0590a4c9874eb995fbae14a657b3a22002873
MD5 21751a5abfebcfd6ba10804d44d0f9cb
BLAKE2b-256 36d969e27f6ce8025f26599cf03d360a82e4d499f601fb76fb397ea36956229e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1730154364-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1a018a1fef471126b28905f00243063cdc3097795a042a2ac6c1703c787401c3
MD5 4749374c2ced9a4add4f81a72aead236
BLAKE2b-256 5b1f9e8816013fe60832c80d971fd8236997267aefd6da7e0a6c33cdb8201847

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1730154364-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b69435c301e52800f4aa5c5166be32ba2d3ff85781a1473d770c7946ff68b716
MD5 66ff58c70af34095f6c349313b11a2a7
BLAKE2b-256 d104a961f87a71b226501b30ef3ecc8ee9d3fa70acd6a3818b324db2e146d76d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1730154364-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 aa7c83d767df503128c7038dffba40b1a6afbd0fb7a9ff4c9dee4eb9e0726712
MD5 86991dff61cba9398ba976adc13295e6
BLAKE2b-256 4a79af4b516d6d7927f66de94da8efd753e11c9b2817bb35ff61ead4d11927b6

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1730154364-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 811a7144b814622323fd63b70d3a2bb7486b1715c04567c135b13e9e2e987608
MD5 bc66fdfdcfd7773fb0dd79a4ef4970f8
BLAKE2b-256 120afd36413f483f5d649cc455ac89c9abaca0bda0eb35877da857cedb935778

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1730154364-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 280fb81682f9e703349ee1b93565bf0d59c8a6ea87bf2ca61be92160e7d0ac21
MD5 7d1580294d930eac8ef447aa848580f5
BLAKE2b-256 22d9c6a0001616d73b3c7617d2561510b75178403bdf0e48dc91cfedfa105f7b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1730154364-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3959a570113775ffa16b8c69d6038f85229a5e4fbeb2ccc9cdf647202ec91d3b
MD5 5497d8b6f2ed4e6b9a299ae0f254354f
BLAKE2b-256 43396c77a2d202e1aa78a9fd19a7e0e06c6770f55e4c109d0ca5badb5ebee164

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1730154364-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e9b97815bb7924bc6c7177a701e181b6553c1e542164ceab1ad4ad0312369f85
MD5 cb76219d4976f316a42ee7c2eed20b45
BLAKE2b-256 2c1221237fe7aab3fd444181dc7e914ce6dc9e894b4a27b295b2a9a420185974

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1730154364-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 169ba12d748cdfc91cb3113b81ead23f864b648619d59beb857f8fd5905cf97b
MD5 d2dee88799c999505b34845f5fafe8f2
BLAKE2b-256 3f8c142e4ae5575bf23ea151e4a967ac45bc2de76e082dfdc7b269bf88159f9f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1730154364-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 42eb79c4da171967a0f167d33ee6c842af7802e800d6179cf8d3e4766b009fd5
MD5 fb5f26b026a4657e9674e741dfbde328
BLAKE2b-256 33f97bfc6c81d335b1e75768b85322ea290a3dc2382bda8f01726d61f35d2154

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1730154364-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b024b848cccbdd5fb583992080be9260579d7e7bb620735b7db21dd6dbb1c99c
MD5 dd55bb7db27c33a330416dd15c945b26
BLAKE2b-256 f7da52320a093dcffb38dc407f544a3a7217ea59085a4e54029e6666accb03db

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1730154364-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 95b578056445c74f2c94aa7fc125dd42a6cff8dd5bddabd6ccbe7d2c3f967cfd
MD5 edef635426319a4df4ac760069263456
BLAKE2b-256 45a772df2b8be9cccb5ca4fb9d1de6a2cf395c71523516abf24667440bffe217

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1730154364-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 19c2d73e5262511aa28f5c88004a5f598eada7009d70b4adfd573937e359c41b
MD5 1d0774bd71e15b081566e120327d8128
BLAKE2b-256 9a4a6b73e5b4bfaf3fa454801b57c202bb774e4bd6d95bcfe86746438f02e158

See more details on using hashes here.

Provenance

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page