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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.9+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

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

Uploaded CPython 3.8macOS 10.9+ x86-64

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

Uploaded CPython 3.7mWindows x86-64

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

Uploaded CPython 3.7mWindows x86

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

Uploaded CPython 3.7mmacOS 10.9+ x86-64

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

Uploaded CPython 3.6mWindows x86-64

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

Uploaded CPython 3.6mWindows x86

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

File metadata

  • Download URL: stim-1.15.dev1743819490.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.dev1743819490.tar.gz
Algorithm Hash digest
SHA256 f4ea4552fb37047b3a6ee6206eecd8bf7e354a41b47a6f17dacfdb864ee0a554
MD5 135ca30dc981ba881d03223b1bb08999
BLAKE2b-256 98290ada984a49bc8a5bf828f5311755b9319fefff484cc0fb096f40fb53432c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743819490-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 2b06cb750df1ee62d92414007526b326ce7440e5ae3ba0e06a17e6a96694ebb8
MD5 51f2c65370a247d8a9e3ecdd368a56cf
BLAKE2b-256 939c65f1861f5c9280e9d99952478560a4a7aa462b59e55c312a9c0b439e392f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743819490-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a3e1fae99dd730a3d9e8e4c8a8c07cb6db94303fe853275cc4a757fa47ef1136
MD5 288065f81d2ac6aec21db503f90fe37c
BLAKE2b-256 32c5f412182cbab52eb8446321f1dbf2b7baae6620ad3ec003b563b68b6e0fff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743819490-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5593bc99ae28840876295333a73720771ec64f2d1cba33bd7f53c98d598a9262
MD5 df6ea3de02a715c393f74ff6370e1e58
BLAKE2b-256 c47bb2f7f81a7bd61ed7cac9174a40736856d67ee818902dca450ea78178ae01

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743819490-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f188860f54c1baa52adf0b4d550f957a39aae18301a6921ace7bb32b3752dba1
MD5 26b9b6a3eb079878c5d8fc63791619c1
BLAKE2b-256 403f4a756cd19b1cdbd03585b2e1de163023b7ecd7b17add0aacfa9adfea2c29

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743819490-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 bcb4127a1096435dfecd26046c25e6f0383fa12f0fda513f38a1e404fbf16ed3
MD5 50be59989b5b5196fa5f0e4968e33335
BLAKE2b-256 a63e487c635259e3a899e7cabf3916c27eaa7891b489ea9bc99299d776ee2725

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743819490-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 878beceda7d8c29efd86862294792c5b807cc2983f95b93fd336fbea473590c3
MD5 bfdc93358b86300e2c3117c0c50c2643
BLAKE2b-256 a3ecca88849dce44818bd12e01d5a1cfb2ba4be5d1d373a18ef29788abbe1a87

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743819490-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8a4eb1e343108bd315afef3060fffa6b733973a386ea71f69c5b24997610bddf
MD5 fe7378a0fc1bad46eb7ea7c4daea11e9
BLAKE2b-256 504a52c0472a33654ba6c78db2dec0add0092220eb115cdebe8b941df549efcf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743819490-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d03725b3eb7bfabd8e9f3ddbfa9775a8facb67f8ba553da0237ec8f845100dba
MD5 cbb2b4ac087ebdb8ba85fd01b767fb18
BLAKE2b-256 c1917b6d091b5a7025ec916c9d063c76fa221b5790fd808a37892fb23baefea0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743819490-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 239b7d4b835d08683e5242b92d2b294c92a759281fd136fdc8a8c12ac76319f2
MD5 a27791e07c3439c6636b8ad93f17e9e7
BLAKE2b-256 10c7a98403fb687104b6d459db6094721e85dcf0e4fdec915cf8a2eb35631c07

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743819490-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 36159ee72112b3572b0347e25f439692b18134b95cfca76099426d08f3f3a330
MD5 3951ddd9c3b065f0bf1ac80d97980bf3
BLAKE2b-256 a1ec2956b974e5c6da03fccb2b7b03b8dff48d894f7410daef34937aa8d4e37e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743819490-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 17584e7b357cbbe1868eb0e3af27afa57a32cdf23630a334e06052fab8073e29
MD5 3357c63b84f8fe8fecf0b0fdab00cb70
BLAKE2b-256 b1dc42edcfa56c4bece2c280515c9f13a0eb153dba7a57d73037076d508c88cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743819490-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1d2ddfbff5d505604c0a9cb7ee07e1832458a0b1863f270094955c5880a2c88b
MD5 f5d049e6960a9c3ef7df98b3b038f9f7
BLAKE2b-256 b37f113d8d608337cc50029b02a20f4b3b74e2b6c683182feb5be96d54958d22

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743819490-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 2c887414090ff70c201b912fdcd2957a102a982d536859c9de908062555e1ea0
MD5 65567685d5e1b5b0a7799dded76b6c4d
BLAKE2b-256 5d71e94abdaf6bf1812d1df8fbf9b82c8cdd71256c33cc60d6c47a6d7e73c454

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743819490-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 aae259df8998c31d65d9a3b22ae5aaf42200239928b00eec157f2c42a6abf252
MD5 4f9dd7df11576dd8d140eda81876e4a3
BLAKE2b-256 70c38d1509f1f7dcaeabecc6f5e1a67be35f85678e424fc69d4eedcd1646d81a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743819490-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cdaee6491801176fcdc319db25fcc615897b2d791f3869a0cfb325f5b992aa93
MD5 9e6ef977784cd35d1e120e6bc4a733b1
BLAKE2b-256 1c4dbb442fe624db727787431e8c60318d93333983d0b4f2eae743bca8a2e6c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743819490-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 dcf59f5f16e35fcf1162c6d9b82a94db14296f9dac080e092e495913b797d7e2
MD5 a7e7974a431067d5b7c058f07fd4c105
BLAKE2b-256 a24a4730ed9e392533802aa129b466f334367805c18d9166415f5339b24da7bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743819490-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 4d85b946e8a39b2bf0730c933276b57dab67e6726aadd620268e434eadef048f
MD5 f4b981ced2c542231732284c00b79885
BLAKE2b-256 d5edf0b24637af3de98bc710fb5c0628566a7d42032dd204b6eabf93cb0764e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743819490-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d6bd5afcf3df6c76c1db583d0b75aef6057427c6526085e4cab163cde5cfd97f
MD5 4927c8571daea419178a2aa347b9adc7
BLAKE2b-256 cd15ee2272a8e566a7d2307b858c3a203d6f26a2acae4c0bf90e2934c94e61f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743819490-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 569b0bb65c92ed56666f924e9a653a1bb5dc1a1eeb705e7e02374b31a2856369
MD5 62fd665aa75aa04d8b5a8d1b0e45ab6e
BLAKE2b-256 447a618413ea90a209711984d2bc6cc8919e2642fea0168cdfe1df092c28300c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743819490-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 16bd886bf93ed533b5c855617f21eccad1ea08d09a436a777536dc3e878bcd7e
MD5 14aba57376b913147fad5462257c066c
BLAKE2b-256 90883bf1f995140e37e265b0db82208c74585abb476799e4f0721fa212a1e118

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743819490-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 66ae638b413ac684e5b8e12d9e271b367909cc2be4a5d582512bdaba85fedf04
MD5 9b9e98190c55e9b5f14a2fa7cfe17bc0
BLAKE2b-256 2997a778663cb513b38e943f4d6561c513fde5e065eb87ddceadfdd642374250

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743819490-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 e6d3be4a24563da085857a4c8e5c771803e041b5484e6684e88f91113c538e16
MD5 269b6710b7f81412e3b4227ef72b0fe3
BLAKE2b-256 fc76aba0372081a5fec4d872ac1488b68aece97970fb9369b861c2f2f2b569de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743819490-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 53a12a12dac338d5c14acbc4e3955bdf2e819cd36fa2e782038f1b493a4c974c
MD5 f4bdc1ea4cb10bca320724b61e3bd1e0
BLAKE2b-256 a98e7bb076c8b7b0122d6735e02f5e537c0663c9a5ca1e760524568d052bb119

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743819490-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1a03f0ae2dd1c19b66ebc598c387155e910d70708a8a26b13cdb41c64284ee39
MD5 e99f1b0eb03d5898134f6d82d50272be
BLAKE2b-256 35875367c804e9791ceedb3f8f897323bef4041cf846540bb365b4dd91340f85

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743819490-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 638ab3cb40a47a5b97130158a6e1df73e17606cd547fdf36cd44dcbbe34fec05
MD5 0bebaba5ee1c49283a685894d22ff7de
BLAKE2b-256 3a92a0a38d74827717311d7974bb050c1a1f08ae8bf3e5c4bc0353d807f13f40

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743819490-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 4c8a0535b542d4b8313e790c8d6e2e16957d498347ddac2e16d3569ff81badee
MD5 d09ef56138590c46832e9f167687313c
BLAKE2b-256 230627f653b195ede81e9c86eaa69a5a300dfbc901f31c89b8e82ee2f0849609

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743819490-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 9f5a58539aa0e765bf04cfaaf92324be7dabd21ee000f1a755ecc879f40da518
MD5 7efe3be2abfc31c92b0d0851da46bf47
BLAKE2b-256 326db642be8e441fa17c70f9203aabe13df7bb2011b2485b13c57cc02a3761e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743819490-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bfee082570222e58044d08d5be5c4f2081e1636aa8e6801446dbd29075eb3b49
MD5 38dea93949c6adef52834a8974e12004
BLAKE2b-256 7506df9e3c3d9fe54f73eb8a602bbb6e648097c7297dd657b8d1e29a38ce0afb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743819490-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 75f637398c41d9194a30b79813c1f3a5e931331a1afbd8a3a641f7c3ea3ea615
MD5 af2e1d5febe8a1976db3b79fa97de022
BLAKE2b-256 97b3347466cdef8c9937b46050fb6ed64949b2c3dd0dac5127a3325c77ed06f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743819490-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c91a91e50e1542c40b496880d889c74889fa3cbca826082b7956bd6ab1d50484
MD5 075550fc54a56539a25c3245057ab520
BLAKE2b-256 81ba5017127a60b72ca7cba30040d1e5ee0a33fcd556fd57c57e6b493e70e97d

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