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

Uploaded CPython 3.12Windows x86-64

stim-1.15.dev1741126803-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.9+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows x86-64

stim-1.15.dev1741126803-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

stim-1.15.dev1741126803-cp310-cp310-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows x86-64

stim-1.15.dev1741126803-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

stim-1.15.dev1741126803-cp39-cp39-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

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

Uploaded CPython 3.8Windows x86-64

stim-1.15.dev1741126803-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.8 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

stim-1.15.dev1741126803-cp38-cp38-macosx_11_0_arm64.whl (3.4 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

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

Uploaded CPython 3.8macOS 10.9+ x86-64

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

Uploaded CPython 3.7mWindows x86-64

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

Uploaded CPython 3.7mWindows x86

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

Uploaded CPython 3.7mmacOS 10.9+ x86-64

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

Uploaded CPython 3.6mWindows x86-64

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

Uploaded CPython 3.6mWindows x86

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

File metadata

  • Download URL: stim-1.15.dev1741126803.tar.gz
  • Upload date:
  • Size: 836.6 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.dev1741126803.tar.gz
Algorithm Hash digest
SHA256 5437ad618cd4f7d71bca43de340c269aa537ec943e07f09873f432d626d730e5
MD5 c9f09120b59402af440cd6e1e9621808
BLAKE2b-256 a9a495e25a07fde519aa6ae01c3dc9665e3bd300f2c95c5e2a4cf20fa9f309bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741126803-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 288dd383855e604c08d9dbbf4d7030297f1e5216577b7bbad37b09231b3d6432
MD5 bf6be97bd4e02e31caa4763f82a26d2c
BLAKE2b-256 0fdb2669006cee870901d3938266a473975e8e45ed6f478f3bbd383e56af3414

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741126803-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fdc16f93215363095e21e987ae9257009c31d0cf8cf29cedeb51428a52f334a3
MD5 5e8e8b89bdb3eb4d93a99973d5a54d27
BLAKE2b-256 b457ae5f1becc70e20155d15259f011028aba33d40f2223c8981c30b967f2a6b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741126803-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 45a5493e35f1eaebb38835ec017274dd63275591a58635dddd98239b1c6212eb
MD5 dcc019c3ebdac8f9a6dbe9fcd9791a2c
BLAKE2b-256 f59751ff07240ab80354ce5e88b9d85895c36565372347afd8bd47696035f9da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741126803-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 42342ee0c6d59d13bff13542992d63e9ab761067e74343b895e62f0697763bbd
MD5 5e40c98cf8000b06ff78e393c1acc14c
BLAKE2b-256 362da98860ddbe392d1456fab9284fff5f3ce9534b7f665c298cc322c1094d3a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741126803-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 7463a52435233528385f8bc872039c787d00f4452ea08a885189dbaad9d1a1d0
MD5 22a2bdac4f520c67dba18cff88e6ce8f
BLAKE2b-256 8f3776f71af97411d27c9e3127b77d734120fbabbff96de1ddccad6e07b7bef3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741126803-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 083d70c68c7c7d4138174f6ac1bf77457e3d00451ed4adcec578176e15651631
MD5 58650c47147fe0058a5a5f0eee8762fb
BLAKE2b-256 2921af8de57d744d4872834084d5568daf725f0510e18953c39c5ae96a3253bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741126803-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a6be70b01b84525a04cea8eb83be2fd0f7c2b4f0eb0c0fc3606ed325d7a37eaa
MD5 9261896e87b1699b63050a70e4aa9d3c
BLAKE2b-256 8849d0fd6184832fb29ccbdf360599f596bec2f1a2e6d7da651163b0397e7e0a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741126803-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 916af23e631abebbe51e44539a701720aaeb65eab8b27d148a7cdf962fa2a599
MD5 5098cc29a2d6f38b18ba5c3932aa4db4
BLAKE2b-256 e0138137ce432d4b457aef027267fc1dbc7341b753e06fd54e1a1b6bd6a2b663

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741126803-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 9f2be9a6f38af10d921a87e824826bbf31ee2c6e95305a87e9c657ed36c008ae
MD5 1b2f03c3184df90d646aacc25b16b838
BLAKE2b-256 7d35891f400991ea3d37307123c03214980e072547a6caf082a6aae74f0a8b99

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741126803-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d59c34973dc60da5964f08f18751db2ca91111b1e54b02f208f3d30d3567ff9d
MD5 cc545320f2fd4c154b01252cd615285e
BLAKE2b-256 6d685190241a5d00aebd538950056f1377e3533860a122ecf23b3e46c332e574

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741126803-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ce3e480d0630886d32c6263b368a3de08e59a7b7b2b141445bf042230d8506bd
MD5 53b8bac0585fd801cc65d9c4ae501243
BLAKE2b-256 dabd046891ec9a9015247a3a2dbde64fbad332194cb34da75937690037daee0c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741126803-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0db1d4dbaa17e99d0d51233fd20a3ee6ee38dae6ac6088641af35c90c387a08f
MD5 2b27551ad3788e5ddb4e7f53b56ccf95
BLAKE2b-256 b694c3928f7192e1d82e035b0c97319c3fdf2a1d1c5953b6a95737abe3b63b1c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741126803-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 5f3987731c9589624e870e7234296920b4fc841c89105e2a43266862c15e1f06
MD5 5bc9a9a388b66ca31d6611523d134f77
BLAKE2b-256 cb123eba351dfb8f47e01f444d2c09ea25676a69a933f71b93c5a4eb4d39408e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741126803-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e1e139107a59336e54372c4002e8059d2bea85912e5529ce9cc14ac11e81e417
MD5 66a1f24ed4f8bfc9da1988158f49f73b
BLAKE2b-256 75a98fb645999a815fddb7a0143cae1f800b2126c798c38eb194593c0d236e28

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741126803-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c32ce2317a9d28af8c4ca06045d45fadce995d7309c239435e723018312ec188
MD5 a141326fe34b3051924b0cda7d9de1a1
BLAKE2b-256 2268401d6ef4e66ef84e8ff5d7616f547cc488e7049d28caa136968a6780e27e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741126803-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 415509907be75e04184650d19040156465aac344c952316321310ae93c14679d
MD5 f0b23a56ee4bd2046f0b6d4e22842a2c
BLAKE2b-256 53ea8a109b1e9fd4cc3c94a3ad78f79bed6f56ad7d9906ebe1a812a7279c2489

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741126803-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 2e72269c9c186504de6881d5b907439a3ba8763540e1e8ddb684b1fb6a15fe5e
MD5 a0ce9022f6ad1b22645e97cef09ae319
BLAKE2b-256 f8e80404bc32a946239aeda62f6eef7c09b0260940d85ddbdfa776431caee336

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741126803-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 477bf2dfa9bd814106df432f0adacd60da2cf4b4bc0cb33a83ae1431410fcbb9
MD5 bb15a62651108541cd9f0edf6a15f18a
BLAKE2b-256 40a7f8068a11bfb5a60a551479db30774346d0df7d2d54b8ef3fa26296d5a4e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741126803-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d256543a0355d807c4f45224ce1e2781ef26190d2de8ef3d019049ab520bcac7
MD5 e9f07e1fdf56ea8684fd19f522d4b8dc
BLAKE2b-256 f9bf3275b7a1a08b8cd807ce3b86d2646579d5408bdea74173f80f45ed7386c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741126803-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 831c7748e0dd2c05d1aad785eb0c51ff84837815f795b032fdbfe03f7a1387f4
MD5 fb2c2cb469224362b44d3d2e4659330d
BLAKE2b-256 1fa70feb15366a98ab88f67dcd99a6d721a8aab6d7db94222f9e2a7c400f91cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741126803-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 8ddca764071e4ca952e89ba2f2959052ae6145923eef75ba5e92e6d95be41f5b
MD5 338ea54957db660a2d70f4d5a207f0b4
BLAKE2b-256 25b39ee093896bad7fa6bc2c62ed5a9edd6e36c9812fe1d6c120ffa683a5270b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741126803-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 4313e44b41b54dd890f8f35548c5aa059abcedf11827d22980dbed986bfc1df9
MD5 1b7a51e04caeee45e993b493ed877751
BLAKE2b-256 cdff17a361909c54e3e804c0e388a212788fa285f377603aab4f4915db14360f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741126803-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f43fe4e79589f54fd06ae88508b7a7ead1527abc16dd6faf16017b8e2e36c110
MD5 c31c22633e4689a8d624c38a6586b3e8
BLAKE2b-256 95ae464fc3a56ede1dc477ce69db34fa642162735b524cd098736eaf520e9a3f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741126803-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7e1f896025b98ead31ca8285ee3dfef6afe5ba49ee6c05b1d035c6e15cff38e3
MD5 40e6e67a5824076162a4b053fc451d2f
BLAKE2b-256 a121e0a82c742c3ee3cb477c888e591835de93941f7a14c1c6e355c27605766f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741126803-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 880572c99e587a5b92f34cfb43c6ce902774e86ae83121f5939fadc1a88882ba
MD5 afb2bb598c10278e7ad0e1b3736aeb36
BLAKE2b-256 e9264a175778f6d689821d81a48ef50a818ff69ff0d29936668cd5b459aff5fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741126803-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 0a2a67d777f083fb7aaefce96e035d0828302fa44ee904700fbd4f5f59b734ea
MD5 7e0f3e26c04dd482405b52227bedc1ec
BLAKE2b-256 6834fd3bbbb097a42d4e1da54f0c5f8e566066578189ffdc6b663ae872eb8fc8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741126803-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 bebf826bf0751a296e00de7e96d6ed45662880bf66d863429b1812dd5549a0f4
MD5 fa802168ccac55902cdcd00a9524a342
BLAKE2b-256 b56cb9a9ef86723d30fdcfb6c0651c768644f08bee6b553ada537c3544b54be1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741126803-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6c36cce3d2d36ac5c19dfb5b708b591492c7e06f11cf793b58c92e2ea2d60c38
MD5 d2b73b8f5dd34224258937437a848eed
BLAKE2b-256 4e06fe1f3cc556c34f8174a21d1289a5e7777440475d5b7e35f51fb7472c0289

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741126803-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9a1f7e683490bbe9890b0d417453aa5bff57ac9661dcfbbcb6a8acb4abd1d689
MD5 67f768fa6befefb4a8c2542317cf8f18
BLAKE2b-256 85064124c7e2209f2f65922f907bf21c415d8e4ad6c32e736934dd1ad6fca3b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1741126803-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fb022fe9fd57d1abbc3d24533340eded4e1ee1f462901d64b2a82a08656658c2
MD5 14f5db6e5249d40031333d82a65e87b6
BLAKE2b-256 7785506c84e8db29c2bbf5c0afa68bddccd4b382173c444057022e9233b7cfd3

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