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.dev1745544934.tar.gz (853.2 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.dev1745544934-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

stim-1.15.dev1745544934-cp313-cp313-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

stim-1.15.dev1745544934-cp313-cp313-macosx_10_13_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

stim-1.15.dev1745544934-cp312-cp312-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.12Windows x86-64

stim-1.15.dev1745544934-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

stim-1.15.dev1745544934-cp312-cp312-macosx_10_13_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows x86-64

stim-1.15.dev1745544934-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

stim-1.15.dev1745544934-cp311-cp311-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

stim-1.15.dev1745544934-cp311-cp311-macosx_10_9_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows x86-64

stim-1.15.dev1745544934-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

stim-1.15.dev1745544934-cp310-cp310-macosx_10_9_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows x86-64

stim-1.15.dev1745544934-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

stim-1.15.dev1745544934-cp39-cp39-macosx_10_9_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

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

Uploaded CPython 3.8Windows x86-64

stim-1.15.dev1745544934-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

stim-1.15.dev1745544934-cp38-cp38-macosx_11_0_arm64.whl (3.5 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

stim-1.15.dev1745544934-cp38-cp38-macosx_10_9_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

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

Uploaded CPython 3.7mWindows x86-64

stim-1.15.dev1745544934-cp37-cp37m-win32.whl (2.4 MB view details)

Uploaded CPython 3.7mWindows x86

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

Uploaded CPython 3.7mmacOS 10.9+ x86-64

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

Uploaded CPython 3.6mWindows x86-64

stim-1.15.dev1745544934-cp36-cp36m-win32.whl (2.4 MB view details)

Uploaded CPython 3.6mWindows x86

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

File metadata

  • Download URL: stim-1.15.dev1745544934.tar.gz
  • Upload date:
  • Size: 853.2 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.dev1745544934.tar.gz
Algorithm Hash digest
SHA256 542378c3e2de386889f8f7ec42546eae258cf35802e3d1223f248bc35d44b918
MD5 d9ed486eba4e36e7ac1f0dd6282c5c53
BLAKE2b-256 bf6e2ed1eccfb0a36fb8be4649652e8e27488f4ead23beb8e95c359eaa37e12b

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1745544934-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1745544934-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 03570e1125ffb272944d4e23c467f251ecd3d4ade41682af62824de778c80964
MD5 baf3cbd58d1938fa2b3bbaec6c5594df
BLAKE2b-256 44e4c97b16a4e3ad3d6c4708c137e68765f38539f5aed6883896f82436336966

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1745544934-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1745544934-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 41ff9d3bdd42b8effed430ee636be212e6fd2c0e4858d290335c355f97e67809
MD5 a9899fb8e7d07bf26d87d27b740c45dc
BLAKE2b-256 9ed1bd2d53b2a24e37ff1a33fa27ec74b76c964b437232d0361e84d4634f49d1

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1745544934-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1745544934-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 135f7bad6beaf7a77048c5ff6035ff30291e2e9b32b8e855fc460336a56dc68e
MD5 9a8553c7871a998d727eb1083c4d929e
BLAKE2b-256 afd8ab8d829fffda112d74563aba79f8359f87171bdd77e9b9fc86084ae83273

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745544934-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c9297a86292d13b42d7ad93a87eda026d7a3c2c84e3e874dad35cd76f3b884cd
MD5 b2b9d370178923062274d233b445bdf8
BLAKE2b-256 c219e50644c1503ce1dda6f8ec2de90bfe3e9e0f629bdd482e2942beb12d61d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745544934-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3f881e58dea315c575871b7071ba3730165aaa3b620450cde9e39cbe79d6080c
MD5 2b12de932749edd4fb3f0b552579d982
BLAKE2b-256 53cdf267a813128800bbc98e39123b9fc7d0cddce8123a603ab584b42d6f6954

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745544934-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a86435cc5bd7b5d5db8e224484ad518788ab04bcf0bdcdb165089f078f853c33
MD5 fb2defdb8b490b986f089c3ee844d983
BLAKE2b-256 3a3c260d98de0d5ef16ad4ae565792a4a08fa677c0cebbff2fec1551b334fe43

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1745544934-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1745544934-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 504062158187a3be0db0700893d9ce11e26a7d002c523d267fac7f2a9573d780
MD5 a30467c36a7986ee4b394e7f9958be63
BLAKE2b-256 8239983f9fbeccd36c10c5e2dca161b4f92b19ce5755f159c7714a5c7714bff4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745544934-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 23b68ba090ffadb5a6d81a3e1f20068137c5470115ad014ed2a2b32e203380b4
MD5 b6df8e205b83214911e25124480d090d
BLAKE2b-256 ee9aa0f593386cd6b99662c97a16c7af6572e9a1e38c29b8c821d61a2a10626d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745544934-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 75dd4e8b57e1f7a19686d27c8e3a633e53c6f7489524a753231ab1d1c640919a
MD5 3237e57d847cfcd541e934d16028083f
BLAKE2b-256 70cdd0881d526bb623e3a58a92222f89b535b862049d379eccdc823d89c1fe21

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745544934-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a9d07b45da5953919acde2d629736cf4360acc25e617b6a1920443a54a597a73
MD5 24b15d9921738d92595b734250bae4b5
BLAKE2b-256 779b691ecc37c3df12ad0ff7fc9e58b6ba3f43eebdc98a45984fa363fae93a07

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745544934-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9d0529b7f5b44bc5479260083cd3277ec33765187970cf7cae33e88841d68ccd
MD5 3628844ac81e70c707f627cf9a0c7547
BLAKE2b-256 df7742811a2250bb1783112c4fd885fabd7974f2157f9ca87dd00f7eec752e20

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745544934-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 59609e56c6dd4a7abba3b60168391c18e0d6b4853472ce20309eee8a54bca899
MD5 a8047ee382f5f3f36d37439e172237d2
BLAKE2b-256 b104b4967bb349c141515278f2523e1d8510603d85fc2adcdc9adf7e8b21abd1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745544934-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 193476f3141b3c8c19d0a5c8cf137ccfe53f6b3d0c0127482facd95a9bc379de
MD5 d122355ed249515827e8295681931876
BLAKE2b-256 5e83c5f34add2303bfc6392a0577ea385ef391c322a1e698720278fe66880d99

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745544934-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 610c4ef7231c6af23ac56856d5a354829f0834d2e7cd147ff634a560d0a1b64b
MD5 d5e3ae35bb9bae8d23b2804bd0610fc9
BLAKE2b-256 0f5c6700eeaf95e6c74f004a9d6b7b199d68f06100cfee46bcea12cf73986873

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745544934-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 71c2154aef94071018b0dc287e62fe5e5ea2760ae56ef6ad3858f49f0e7d9a83
MD5 58bda6f698e987ae22259eae1f90064e
BLAKE2b-256 40c67ab36959a1a47390366d74c1da80eb24d8fd17b59149ddc167900c875dea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745544934-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 db05ecb959ea92d36ff850f86a6ca90f33c301e474cb868b98b4d31fdc7304ae
MD5 03daf1161f102e7efb7e96da84a8ce27
BLAKE2b-256 3422e84cf40b31d8bbf8e195c5af27f9f57867cc06d5aff2f3316f1ba16dd44f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745544934-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 007a456d481156dd468872dd017004e3d8ba898ce9904d637c0cbe651f4f1e0b
MD5 c77b36196baab1a86341e977cf2b1cb9
BLAKE2b-256 b1af0aa5a92f50e8e38e8b9a87ab147fa1548e6e28d122c618006d76c8b0cf2c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745544934-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 442a598cd7496906a3976e250a17daa5bd40abea670b96e6a955b817b958617f
MD5 da9961be8784dce248c873affb1ed528
BLAKE2b-256 2e49c9b28005cefa26b8efa89d1dd43db31c2dd9e3c86fe936f378ebd88e55c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745544934-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 071ef5af90e349feadee6ed3d1a774c2937c9eeeaff8c12e2bf1789656771fd7
MD5 7bb2529aab795aaeed640986dddfbeb2
BLAKE2b-256 aacd9837e131df53d444cf1550b06264ea5770d1ca535ec76992e5e0ffdb030e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745544934-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 67060d58cead489ec8784a60d436e87f7eaa8337d5fc3b53ac206360ca56858a
MD5 154298f5cbb0dcc76a922d87c0bb49bf
BLAKE2b-256 4a75d07f113e28938487917056c604c8ec24c7048c52e4b4a4be305ca64bd560

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745544934-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 235f76ebc151d135574d075f13227e299cf0593944d3e609a848ac350e2fe416
MD5 1643afb2368e1726d38a86f97496c1ef
BLAKE2b-256 1f789e99fa9e7cde875d347b9ad00517202a3c9479bc5eacac10499330a2d344

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745544934-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bf2e9cac520b3fc24130a49c12c50a04a22d164ad5fd041b9f2ed553ac681564
MD5 b1c2120519d05d600d61cf97640a3cc0
BLAKE2b-256 6b144c91613adb0748511072b49e6be2d268017fdf3b6b4c7a0ab0aa26edd7b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745544934-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6d3427454f20a923a7db30da15533cab2aa268f12458c79e799a2733b3d0fc29
MD5 8f174793a50044dcc06a2a4da263c98b
BLAKE2b-256 ab1e67bc329c2f6ffb11965fc4f33210a14b08319d9dc9ac0aaa3d36444f454c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745544934-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 e6c920eb17c14596e9c38c65d4af7d26430f0de2ee416ce2427449e1e9c24674
MD5 3b729718df66ba0caf4bd4cfe53f926b
BLAKE2b-256 a0ca9cca54f89396645f507aa0b17c6e6c38eb1327707a212a052ad57d6d75a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745544934-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 ce72b14a04f451aef1cd916d3ee70168458389dd75eafd3a6586c14569450bf1
MD5 9542c46db7bce6b4eb1a90a3ac0d5aad
BLAKE2b-256 b6dec612b4ea12d0ea69d35662cf284f0c5685a00e96cb00befda8a6cc47c41a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745544934-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dc67acca107da17b407bcfc07cba18c4c48f8e3f4a239a0ab55caa8bf0db0e32
MD5 ba1b04709a6222b5a758a185cee5ad1a
BLAKE2b-256 37ff85cb88ef3cf2fe08e5cda25cf6d18d77e4463bdf6e162bcc2e63f62894ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745544934-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 59aa43dbc4053c45212c5d114e39c1ab15119f2ece5cc12fe5098879d5fe55ca
MD5 655f915911200ac6350bba2fc4cd7b8c
BLAKE2b-256 0c14356ad6f15c8ddf9fea86cd10daf90ec257f704200ed83938eae8906f63d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745544934-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0af8041d2fdfe6a929857efaa3d0e7e3f561172aafacd91348b804e2933763c5
MD5 0928b227212636ce8245e7ff91a3ea1f
BLAKE2b-256 2a6bbfb931e68eb48cd22b32bc90b5c1310a60323163b71ba94e30d4c24affa3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745544934-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 bd2fecb5c7f5c57942f458dfa894730a3ce14e33134fc8797d954a1cc6f33ecd
MD5 e964addc96eb612a52f5ec5e692ab134
BLAKE2b-256 1b41ae3cb7cc763dbf63cf2f317436fe5c5408fbafd2ea0c0aa8e9c99e902e75

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745544934-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 e26b6ad286b39ee25792d2e8406c1e6b1d235c54054f7554f8bcebde3612a800
MD5 81d13c069534e0f05048e0d3897694eb
BLAKE2b-256 7165e7bb6f589def3a59bfb1436ffe0e10b3d89eece97f2b7f6edd7e5bfba544

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745544934-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c3a28bc95f59b4a0e3d073025757a34bcce76a74388521c5cfdfdf5764b750ef
MD5 a52bcf4d009ca5d2e0c9a3f56fba4d53
BLAKE2b-256 420cf097169c7e6083790ce5d1a390f3de9da6cbb58af6e5a8ed967a170970cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745544934-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 00eb5653321f7983305db8e13b13913b32cea4ca39d9a960f9f3337ddef9afa3
MD5 4d729a02c935059e6c01dd3b5f6a9dc5
BLAKE2b-256 dece05687ea5077d8d2898101c767c39e579f156ed2fea42a9754c402081ca4a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745544934-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3d971180914699c393debd6fa44defaf9dc48a1b9fb10731983dc4acef6fde09
MD5 55874f44f124afb1916a235c26549d7e
BLAKE2b-256 98b5f10cae95df7b11336190c5c8b5dcdfd850006e1136805093abc264b279b9

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