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.16.dev1750925622.tar.gz (853.9 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.16.dev1750925622-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.16.dev1750925622-cp313-cp313-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

stim-1.16.dev1750925622-cp313-cp313-macosx_10_13_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

stim-1.16.dev1750925622-cp312-cp312-win_amd64.whl (2.7 MB view details)

Uploaded CPython 3.12Windows x86-64

stim-1.16.dev1750925622-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.16.dev1750925622-cp312-cp312-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

stim-1.16.dev1750925622-cp312-cp312-macosx_10_13_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

stim-1.16.dev1750925622-cp311-cp311-win_amd64.whl (2.7 MB view details)

Uploaded CPython 3.11Windows x86-64

stim-1.16.dev1750925622-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.16.dev1750925622-cp311-cp311-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

stim-1.16.dev1750925622-cp311-cp311-macosx_10_9_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

stim-1.16.dev1750925622-cp310-cp310-win_amd64.whl (2.7 MB view details)

Uploaded CPython 3.10Windows x86-64

stim-1.16.dev1750925622-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.16.dev1750925622-cp310-cp310-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

stim-1.16.dev1750925622-cp310-cp310-macosx_10_9_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

stim-1.16.dev1750925622-cp39-cp39-win_amd64.whl (2.7 MB view details)

Uploaded CPython 3.9Windows x86-64

stim-1.16.dev1750925622-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.16.dev1750925622-cp39-cp39-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

stim-1.16.dev1750925622-cp39-cp39-macosx_10_9_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

stim-1.16.dev1750925622-cp38-cp38-win_amd64.whl (2.7 MB view details)

Uploaded CPython 3.8Windows x86-64

stim-1.16.dev1750925622-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.16.dev1750925622-cp38-cp38-macosx_11_0_arm64.whl (3.5 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

stim-1.16.dev1750925622-cp38-cp38-macosx_10_9_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

stim-1.16.dev1750925622-cp37-cp37m-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.7mWindows x86-64

stim-1.16.dev1750925622-cp37-cp37m-win32.whl (2.4 MB view details)

Uploaded CPython 3.7mWindows x86

stim-1.16.dev1750925622-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.16.dev1750925622-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (5.2 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ i686

stim-1.16.dev1750925622-cp37-cp37m-macosx_10_9_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

stim-1.16.dev1750925622-cp36-cp36m-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.6mWindows x86-64

stim-1.16.dev1750925622-cp36-cp36m-win32.whl (2.4 MB view details)

Uploaded CPython 3.6mWindows x86

stim-1.16.dev1750925622-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.16.dev1750925622-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl (5.2 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ i686

stim-1.16.dev1750925622-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.16.dev1750925622.tar.gz.

File metadata

  • Download URL: stim-1.16.dev1750925622.tar.gz
  • Upload date:
  • Size: 853.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for stim-1.16.dev1750925622.tar.gz
Algorithm Hash digest
SHA256 97c291058fdceb66a76eeb7a9d348eb65684391cb248de11e479fa575a5f845e
MD5 198c0567f1a94c40800fe138c500611f
BLAKE2b-256 9993cc71d1f5f507bbc1145fe8ad9ace0ef0c89564df2ecc4b5aadc75884feb3

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1750925622-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1750925622-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 183c7ad1971898d16af1e31b380b8a95c7c383b82f9497a117b1ccb4216e0b9a
MD5 20d7e4ad207495c2227f196e72ec41a7
BLAKE2b-256 fe424ef88faa7a9f06d65617d2c42a31c2cd491d0435aa436776e3fcd92afb43

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1750925622-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1750925622-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f2b9faf41d3e628a18bbd2e348abba4374b8bfc97f910baaa06dd0d9f02de0f7
MD5 bec0cc661ab966edc6733fbddd72165f
BLAKE2b-256 6af6f034f95da11114310c99d6d80182455994e6dc53e89488519c83097cd111

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1750925622-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1750925622-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 38bdea09ca4fd190f244a5c47ede459cff073e33a606db567d8efad9b9325c7a
MD5 4798dfbd5e2d4885e696b6d3160023dd
BLAKE2b-256 7a437470093170adca524362f0eb3fd24b16594aad10c68b20c95e97471b7155

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1750925622-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1750925622-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e5c4a3adf39e5145f6b3df1f8a754cb53a2af103a1e624f512532c4b22b8784d
MD5 e9dd6c0fcd94b48d7ee30b870457df6b
BLAKE2b-256 21768e7d6666ec393f45629dc81afee86d416c9f1474954fb292485b9d6209a9

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1750925622-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1750925622-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 84e1146ca302264e5604bfcf4550607bbbc06e175f5a955f61f34c6efc17372d
MD5 87cff53fd65ca69fa51cf0c335da3278
BLAKE2b-256 cf469cd595aa7944e98796398c5968f71c087c8810ecb2cc51b9cfd0e6a765bd

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1750925622-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1750925622-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8c8490ea61cf6356f3e4d56e6ad4c27a1ebe017406f02561cbc86034826a3c88
MD5 2237fba92d1f7d052434388859eda0dd
BLAKE2b-256 674d2d69910d6d2621d9962aa4add4e7df2f33f1fc7a6a6ffc624596a78755f0

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1750925622-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1750925622-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 14f8cbade582621b1913440f598ac6081c7186c1fd3dd76a292b25958caaf6f4
MD5 318134312705a04184c00bcc639a292d
BLAKE2b-256 a6795b801aa3e51ee1e56608fb33302160ffccc2a9e351e13f9e2515d60bb966

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1750925622-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1750925622-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 4ea56ee6380a530e241926095409063dcd718bae30174e79e90e42b5f65c69a2
MD5 4673e9aab3f7ee6e6a45b40e2c3709f2
BLAKE2b-256 bd07eee41c642a878a5453df27e214a699db9f9c039ef7eb03c1256c234b8251

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1750925622-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1750925622-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a1215048dccf8d139fe29fd812a255b5b26a15a3a18de6c73563f0935f8045bb
MD5 8e341c7e57bedcc4b00f8c4164ee1aa2
BLAKE2b-256 2c6ec8f54897d98a2002b67a0fe8cdc14a73a563cd17a90ae60c5e72fc550e0c

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1750925622-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1750925622-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 590aaf9ca940532a8cacba2162b28f1a143e574923b7a4f8b79d80ca35b96662
MD5 7e97a19b64709c3527f7fdc2766fa584
BLAKE2b-256 f38c877ee694ddb708f0d582b7db14238306ce9a88abc01cbe7627e3dc9d79c5

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1750925622-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1750925622-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9f15d6289b99351139fa7bb40fc3db09db0fd5796e71684fe0ef324041e5eb3f
MD5 dc1b187e09aedba430314d38811eebbd
BLAKE2b-256 391a49e91ed02ab8d76853d15f1b6729db279f646b724f98d34bdb79be2d34b7

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1750925622-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1750925622-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 6617f68075d349ce9a1548de8dc68aab7ad4dd33fe02a44deabe83b433195199
MD5 5ca92948f6fa3fd2a326a5979b244bbe
BLAKE2b-256 8a0b85832e77ac9768d6d963055c18b4725b274913c718deba1ff9eaf7402f5b

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1750925622-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1750925622-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 34cebb49c96a7d1be313c40610143a2d0b04d24c1a32b45731d24ee5199419d3
MD5 307b4cd4a5efcd4a3af4ecc75bd5801b
BLAKE2b-256 487a4376ea1c980b80c9f27cf85670d0bcdd3f9f0e5199fec504aba42036ed10

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1750925622-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1750925622-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fbf6cf30c0e1f37386d51a5344b1e55e1110ed705bbd8a3ee4d3aeaeb73427a0
MD5 042fa203aae1016246e719db4e8fefa7
BLAKE2b-256 8fcad4c7cf34f74bb45d643217096af1acad4049db736002afa400ff50aee4e0

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1750925622-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1750925622-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f66d7e254827075198183cbb8c6c14ebb609c323ef1ac704a19e925dbf28b8e1
MD5 7cdcaa59b121cf30ecb76bfa6ab3e594
BLAKE2b-256 ef3e338445084f2d13d72ad18f679944b4a8dac766553794a6b2e558599adcc5

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1750925622-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1750925622-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 23e553445622f6caa4351328d0c8312eabc8aab506f99c099cf05e461e9adf9a
MD5 9d003fd6fa56e0404b339c986644337d
BLAKE2b-256 33c0eec0c41c629ab34b08b635fcad4bb970b48a83fc65bfa412f5b16c3f5923

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1750925622-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1750925622-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8a38ca71a7d1f457361a4de91dddbc51c53dc4f209493aa8b819dcb32d26ecf3
MD5 6b8934f89d6fd8160f1cdadbd2b0fa92
BLAKE2b-256 88ff5260f67f85ad3fe85096da239322487c4ee945e60040b459d3c86c3a9041

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1750925622-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1750925622-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c3d3caaa48d86db83d462e646f74c15ffb4db320b569a1a0dcf9a94a9574c866
MD5 bfe8b49a79af4b48338074e65f504c2d
BLAKE2b-256 f4a27862124467e194aec646544c6c27e750ae305b162bbb06c580fe496d6a18

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1750925622-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1750925622-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b3e7682aa3893d698a998f6ed6469a3efe690bcbea2f7312a05a50a7c3796d69
MD5 ac1f8ac09088f79fb10fc4e9273e22dd
BLAKE2b-256 aa74121bf053d8c130a1e03201b66aa11a7e9229e61a3b47e4d7baf395395c91

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1750925622-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1750925622-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 3f75df4d1109f48abffc71061ff2ff06b070907ca2d364187d468be8acf2d5f0
MD5 0086835c9d55b3ae58813570485461c7
BLAKE2b-256 eb8eac5ddce9c4091b838426cf096e7aa3b1381c686b5539e4cccb9a443325b2

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1750925622-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1750925622-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 164659eac5dce66c3ee4b6b0090106aae6a2725829ada13e35d9d42bd1462d57
MD5 ece1c4c73bf867aa59d885f85b3ae49c
BLAKE2b-256 9cdb874ca89269d8d9242c723d94b272cb1ac7e3ef0e75c8fc85e2eb175e6303

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1750925622-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1750925622-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e345829f2c2c2e5b5bd6d922600a1d387b8e6cd457eee38b3819882da5e3e568
MD5 922520a5b3c0cb0fda9078045c2430fe
BLAKE2b-256 986279281c891e54413c7ef68a2ed550cfa9656bc41c083430bc5cfae6a52a61

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1750925622-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1750925622-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7bb1e92e32a471b5e3f4a611da5f6627e2dcfebb3014980b86f391ad79594e7d
MD5 f4104f3a9d3d2730eb68eaa34dfd8fc1
BLAKE2b-256 15f70a29a6a30d8e53de018c043d4f788287b592d50700cd1b9cdab3e4d12315

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1750925622-cp37-cp37m-win_amd64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1750925622-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 ae6943adfe1af814e0e8d10dacfbd27d536082696f4da94c1896d5b9d421e751
MD5 05f6b1cd58295da22fef1c86ffd1b0f0
BLAKE2b-256 9227081b7b5f4b3e388b534cee73298e2fcee8b456dc1b1e1240f4f9fd9969ab

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1750925622-cp37-cp37m-win32.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1750925622-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 483cf84216d3efcc3f7d08712beda12f633fbfe17853fa41c8931f752308b55e
MD5 227c09dd0a0517a0215127ca55687bf8
BLAKE2b-256 64af44dcab88595a8297aca8066a46639d4174d1d3ee2efa95ec127a79d1b576

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1750925622-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1750925622-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 092b71cc7fd37f4c9f760d160b12da2673f95a3fb3beb1e662760056fd31d755
MD5 a4c96125cc95fcd4ffc931b2f586d7f7
BLAKE2b-256 140be138733828df1b047c23f7e5500d6c2c566c6f2a469f1ede667dba26dc15

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1750925622-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1750925622-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 36ba1d4687c43fa3c05758464b4620ad6e4cfbb55a26677ecd619275d6471883
MD5 1685ce613697f413f2d6ea936562a875
BLAKE2b-256 02e38265e882613c572fa205a6375a14b0da187ee4eeada31afad31ad0728672

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1750925622-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1750925622-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4daef84b69a068088e8a7f0aa0f38df1f4a0ce2a6b8c2a04c33b6a8142063baa
MD5 390547f9d463698488248ea73939eee1
BLAKE2b-256 d9ea0c60ed0b2dfbdc6808c65e4f1cd2cc92bb7739f8fe56c5737d202edb55b2

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1750925622-cp36-cp36m-win_amd64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1750925622-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 5492dc2c72eec9cf466954d892cfe7b6a043b6b9983a6ead18edbecac15ab5d0
MD5 8db869b8c795bfd6eae63f515c4d0a03
BLAKE2b-256 a700f07d1fdab0114e72e208f5b4ab6223061664a6e7da60e3e08ef481ca5aa8

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1750925622-cp36-cp36m-win32.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1750925622-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 bc0fc43c9d389b2b414c6130e55b6e48d9b3cf9031956d5881c0806cf3dea225
MD5 d6fba469aae3cc8fd0a2047e045d73b4
BLAKE2b-256 80f9e52135b014c69c4d7176a0a4869053afa693292bba9ef72028e6ab10afe5

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1750925622-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1750925622-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b7dd51bc81327ea655dc5cca829ab688778f7d3d0fa2408e5f3034b1e0c9237c
MD5 4a23907193a474518cd4b181999c3b1c
BLAKE2b-256 8da5bbef110548007b8817c51b5b2f1586b2ab4f86ed436cf43b0dc553a9f3fb

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1750925622-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1750925622-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7bc0fd3002fcc19700118e39fb0b8e302f876c6a7f3d3af3fb8a4563cc0bd39a
MD5 959c1f7cc038ca1cc9dac99cf7cbbadd
BLAKE2b-256 8530887384e8ada04193594e06362c82142412609757b48f2ccf7a3dc9ba9178

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1750925622-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1750925622-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ad564336e958d6a114c02bd923117e6a7f6961a7f392a8cbae292974c930a8b1
MD5 a0aaecc7a103fb68a3d4853521925889
BLAKE2b-256 cdd78d89614be01073896697098f6c0bf80908f77e47bd11b9491f7280d6e86e

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