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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.9+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

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

Uploaded CPython 3.8macOS 10.9+ x86-64

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

Uploaded CPython 3.7mWindows x86-64

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

Uploaded CPython 3.7mWindows x86

stim-1.15.dev1741992867-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.7mmacOS 10.9+ x86-64

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

Uploaded CPython 3.6mWindows x86-64

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

Uploaded CPython 3.6mWindows x86

stim-1.15.dev1741992867-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ x86-64

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

File metadata

  • Download URL: stim-1.15.dev1741992867.tar.gz
  • Upload date:
  • Size: 838.7 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.dev1741992867.tar.gz
Algorithm Hash digest
SHA256 780087d0cd1c6fe9569fe39ea6a40d7837e319acbd4d0ec42b5d7dfe96aa0388
MD5 97a6efd059830051a57a8b807a5d717f
BLAKE2b-256 56296755dd0df4d5dbfa40e87dd1ff967bac5415905ad13f72fe37483f18cebd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741992867-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 793b2ac6c3f4e8269a3b9df8297c451d58ba6b14e2fe290249d24445bbc7154e
MD5 25895d07805469f982eb39ae06f2ceae
BLAKE2b-256 1437ae4cfe53a1e622ccc6ec1c462d915909fd15981ae2651c99f2b924634052

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741992867-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a5022aeca11fca7756c0fd08e9588733e66f79c507915cd37728a49d47105bfb
MD5 6771f3b08fc3d75f07ea15ca81fef0f8
BLAKE2b-256 099f4083cd99d3526e0ed3438d9c64fb3efb97d2358ade8f5660dc7f229e91b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741992867-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1087ee7b36009e976974190529775f08d56c56e73748c199772ad61d7779c93b
MD5 e51a5dd435be2aaacc964fbd42b2f1c7
BLAKE2b-256 fdb517a418a6442c584a9b18c0dce327fe3bbfc5a32f7ef81d5e4fba9f62e149

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741992867-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 11a500b19efcf9ed033cfe94adc9095095d2386c04a67325f0f9d83c4cd9e77f
MD5 b5a7868d90059740abc226bde755d933
BLAKE2b-256 46549e5a15272b3e40341cb2838c69a4f1c1da6d018c3bd851c749817a2cd9e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741992867-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 2fd46f98f63b90f58ea02e3bc7ffe3d756dc5bcbbd13b8a13d6bf9b75729f4ec
MD5 a55e8962bc4f9dd3292428bce13f6d3b
BLAKE2b-256 230b49853d80ef3b3077942efe57d6fe2295c82cb3a8ef04a8acf4a515094f54

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741992867-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 30464da7a4e3231de142f3eaec188f0a3eb823a2dbec6039f0f2ec3d79591ae0
MD5 959365c9b51795d302fff5f544d2ff7e
BLAKE2b-256 e0ebfef87f6977023daa60c2cfe0ba8b4389ebe49d79ed006e4674b3ac2726a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741992867-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6affb1a70dfb98a2a4ee79410fc0e88cf6ec71133452810386191cabaab41f24
MD5 9572cd76a1d43d1f427dcc2bea289307
BLAKE2b-256 19dc0dc06a2e7e258bbae0cb24522c4614bba68f7afcc78c20c7f42bc48c9d2a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741992867-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9dfdfe6898f5d7ce44282ce8d97e865fc85b309746a60fde70f7828c466710f2
MD5 f3a731f51b7c701a78642e6f7fd667df
BLAKE2b-256 183e3a733682e4241af6026bd73cdef837320ad124ce04a09417cf1885350846

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741992867-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 8857fd3ff11717b52c57a235b4d2cc3f88fa5a4abc9bf8df72e0a8333691b02c
MD5 bf006f787a0e5fa53a728d0d8c842f95
BLAKE2b-256 eaae24a0934ff8ea1bf7b4e9f8303a338e45224488ce3b5a93b2a50d89ac5cb4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741992867-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a25f2bc607a18488f90eadbb5317de7af68f54ded73762274f7b2edbea5aa2f3
MD5 4040f6aa9f6c10f4b8823322136d39d0
BLAKE2b-256 ed4e4beff985f8eb98095bd614e0b7c6cbc5153df0edd35fbac4dbaf3532d570

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741992867-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 110ebc59159a92df83d90dc0fd098e8ff385a50d0aed79ed472738150211fd67
MD5 20fd54d21e2e5f7ba8f3b1dd606cba67
BLAKE2b-256 2ea8c726e25cd11eb17e260d129836a741f2c6df66a26335b28b90c660a53e15

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741992867-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8d60b7365134cfc8346d66458b99228f495150d84518710b22c9ab522344a376
MD5 3861a569c9843f9390d29201239cccaa
BLAKE2b-256 9588bab2fda739e830e5dd86c9c09957f0da47a3eae9340e1d8fc077c45f4ee7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741992867-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 27341859ec11cad1746f09abd3d460b49e89b9e97066f4261bd94e91e1d51f14
MD5 d26973d230cf293e05c9d788ea65674b
BLAKE2b-256 fb0465103495bbc0782a54aa3ba7023817ac93a35916c959d8d6a07c059c7414

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741992867-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7c11b978f8822d08c379e04ba1d1188d60d85afb9c99871139012b26bba54044
MD5 7c558b7a4206813722533b787b805e00
BLAKE2b-256 df37c3656bc08cc16c5bfd4113e301072c1705a53c71980ec4aa6b255fcfeef9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741992867-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 16f2b2aedab732aed139d6cf6a57c35c060c164ca8fe241544abc87d9ab25d53
MD5 0e277f2da90bfc0d747f5c7bfd4e90b9
BLAKE2b-256 9c77999b74c5b9082d466604cb120cce2e9a7c75201002b41574a43f33e0b5ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741992867-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5b11585e59ed166f800e8705a7ac92dd8afc8ed8f7ecf918c69525d5ff8c1c89
MD5 fc7137e5c5f9442adffaf4bfaf59f568
BLAKE2b-256 53ee6dbfecab88eaa784447902fa095187895c25598caa51be10336614b64d70

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741992867-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 595ff3436c2b23595f00d834406b63e5289feccec4d14ccfc579303c3253faf9
MD5 b3719b358046162cd4eecb63dfd9fe51
BLAKE2b-256 425f1d02cc5c05bdb59cd98212085b442428af88073811af0cc160d1ebdfb699

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741992867-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 54f972bf7194e2d5654743b90da570b43a83eef884a268120c7ab379b91a76e4
MD5 3794eef4d0f285351872e0e72f5235f2
BLAKE2b-256 284cf034c15663db13ba2b6b1dca24ee08e0d0b7c768141ce0918a1c946c3773

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741992867-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a2e42b927612c04b57e5a77ad100f5bb259a13160a4489f237e445f1062dbe3b
MD5 88efbe9051eb0c4c0fb10f507f233880
BLAKE2b-256 de9a343d383b27233df496abb683281844366ede327c55c4124251f25efed3d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741992867-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c7739ee52c86977bcbcca23b8c30b4c7157782a8559cb55a93b8331de85e0760
MD5 54bca43c263c8b906bea9b5801b287c2
BLAKE2b-256 d6e5e2c2864c136e3c1c6e1e9e039dc486966301858a807aa57e551ea78c9674

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741992867-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 b22666e7a806d670e95baf694b3dd0b80bb0a2c331785259f399d15d9749e272
MD5 5e16ee0ab76508529c75af0ddacc3d11
BLAKE2b-256 1d7d7d9244613b46c4a2cff80a491ecfb0ecc213c8232780619837ce2ba302a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741992867-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 3d8745166b3ddeb388b4f8cb471c484239a16dd52becb85f8f6933ed83a07404
MD5 7dbb2f29609799e184503ce886373917
BLAKE2b-256 da8b1ababd659f940c8df2f3e4566932aaaa4351b331e9cfbbe6ec1b4352d760

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741992867-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ad353f296b1b79c33c6a2adafde576c80db9f30dbf8e6ff4632c6487c0b708d3
MD5 ab3746a227ecfff98f3115d5c0486077
BLAKE2b-256 2bb1abdce3fa6c737a74f775b8e98a82b927b9987635fa0d130db9f055a45ea1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741992867-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 45131220910ee6839b0dc2e210c95470243e7b029ca5defd5a435d8312a8a923
MD5 7c3d87081660db05ac7b4603bcf32ba3
BLAKE2b-256 8859ccbc8a1bb623db7481119289c9d63d1a76d68a6348f8db74c2c020c6f077

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741992867-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4e399a7c0fa2b29344b65c18aca1f40d2dda1fe1d1ad638c82f0dee45f6b3056
MD5 baa57d1e118bd935843f38df880ef1ca
BLAKE2b-256 1f799875442bb5ec87495c8ae85c3d44d4af2f1a30bd5288aa09f458407c424a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741992867-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 c2d3b64313cca2eafb20759c14f0fcf1b6245232eea3b05258a1ddbaec447ef1
MD5 a8f64749d54c193d4934e6da7be9c321
BLAKE2b-256 56ddc7f9d7721e6093eec3797146483f5078fc1afe91a44fc6d1c9d79f2583c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741992867-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 e451e1f040eb9bb85ac27b5c12654e00245bdd2a4c88ec753585597d4cfc4011
MD5 b720021fe56e1e053048e5f1ffed4682
BLAKE2b-256 bf910d62404b062d7a2ae73250e1ebddc6e89c16e30e280095ccd5d10e2fd97f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741992867-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5a88191c4f4e25ad9e0a5324010cfd5354b08b78b0f42f472912daa10079f045
MD5 b4d027f434c219e1869e471147a5c57d
BLAKE2b-256 7947404c64015706507a2af52930276a2f0a4b76f91d782d9a155771d354ff22

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741992867-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 785ec8c2858ad46be09127d8e063b21c87134aa16b1fb23cdc33877dd8a252a0
MD5 a298158da28d6d389da52b66fd281008
BLAKE2b-256 f6d6f5dddc1a5c54ba1b654393f5e3209c480433bd77387601618586153ae954

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741992867-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 aede745e0b7a0c0f1f1584c651546efa3104f0212a0408feaf94fd01a49a97bd
MD5 ebccf5331003d2f63564a90f75d75d77
BLAKE2b-256 63a77ee3b287a31edc3b94d6926eb9517897da5a8db983a88c7f794ec7e38809

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