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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

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

Uploaded CPython 3.8macOS 10.9+ x86-64

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

Uploaded CPython 3.7mWindows x86-64

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

Uploaded CPython 3.7mWindows x86

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

Uploaded CPython 3.7mmacOS 10.9+ x86-64

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

Uploaded CPython 3.6mWindows x86-64

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

Uploaded CPython 3.6mWindows x86

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

File metadata

  • Download URL: stim-1.15.dev1745621353.tar.gz
  • Upload date:
  • Size: 853.1 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.dev1745621353.tar.gz
Algorithm Hash digest
SHA256 1f1c2f67bdb6611005e848252d511193af59f40eaa7b71e7c2ce2102c80d2f36
MD5 caef23bf6646dd8c89920d052174b25a
BLAKE2b-256 5f9d4d3d229d7c3b43b58a1cb635e3bdf5ee4a733fa06eae19eb8d10075ba8d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745621353-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 452b3a5b9d4598483074912b0d9b90011570fd791e9b48200a0c25b17aec2fff
MD5 193587485aa2badec7a19b2957f28d0c
BLAKE2b-256 6ff8d7b721d5ba038bbc18d87eefce749cc7cc920f843a5afc6ad84a293700b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745621353-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0c69c84f564377500644c9446ef0069139e67c23ae9a3f3510594c87fafca2ac
MD5 2436b78b1cb92d082ae2a0a1afbf7a11
BLAKE2b-256 d91dfd77eaa20f92f57a4fa9b97f6b4c70b5b0a34851a3c7a80b5147b1461d64

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745621353-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 bc4dd88ee5ea48f53ec0aea99611b6fb0f1b0fded5f20fba45f1ce81b915d2c1
MD5 1a0e476e09a48404a64fd7e9fce1c009
BLAKE2b-256 b5d905a09aa5f9cd7542d4cd17fc8ae35bceb7f3fca9fc1d6728c6bc24459836

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745621353-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 4c4c9cf285c8ac7caab9b8f3f0bc3f76b161137b86c3338c59991e3a4fa1cde8
MD5 595c659da045d3a65bfb3195586ba522
BLAKE2b-256 47429047752456583fd2027d53142f3b175ed121dd62dd94f69d45f96cd6081a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745621353-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d1fe11445825079ec588a03e3ff0992d0ad7cca16764672dcb131878411feb09
MD5 e2e41b2a6baa3968b3d24ac8c6450bd9
BLAKE2b-256 784f573329b6dd67f751fef4065097db3fa4fa9fb983187781395c533e75e851

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745621353-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a648f3d871432f74feadb27e30390f79215a88126d3a67cc8227f60421788d48
MD5 5615fb5e9a522e096b50697a7b67f66b
BLAKE2b-256 2fc3f8a5b7cc6920c5e47edd6a8ac2d354bf1d3116b4d941dfdaaa819051d22d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745621353-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 1286ade0db805ef519889958827cb76492503b43d2b50fd1b6cbe010f26c859c
MD5 cefbc0f999732e8ed5f39c6d48725630
BLAKE2b-256 72f8da5f57cba60ce82ceceba9e24e94a39cd872d6177317f0c6de2a768de37b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745621353-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 352af49d2de27e39b9b5ec4c9e26eb80643f4f1a84ddf1592cd9aa3c5a9fb1b0
MD5 312d756dfb5e3af8007d6a1249aa1c96
BLAKE2b-256 4d9a2188a959112a2f48619cb9a2c38bb54ba4436041f021bb893f9a2711a19a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745621353-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 167b89a56abdd8d517948bf0b3e8d91b3e46eb262ef82389c5713548f43d0d81
MD5 b587b37698adb334d7ca13c695dc401e
BLAKE2b-256 5bf928bb69c84fba6045f075b64eb673d00d51cdc073d32453b22d8f072ec04e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745621353-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 839923b08b94744a48059a650647c0435046daa0056ba2180fedbf71eb5b8340
MD5 7c662da2c335fc3fa39a5042b2bee9bf
BLAKE2b-256 d975716408d3bcac27093f42f674b148a7568d3e2bd68bcff82e83eabed8ce9a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745621353-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 30775bbce8f2ddabb2eab8f03f3d35b07ea39c80042a6c9d71f7b9f498fc8209
MD5 a354432f85ad322d6df510716c0228ee
BLAKE2b-256 ad01daba964668dd1e011a212202511d49e125f4835c773244a3221fc512077b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745621353-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 6384f0df205a48bac2a5dea30e057d28072bbe36b96ac95ca3702034c7760045
MD5 e9d3a78c065cd64a2228a436fd6e2c46
BLAKE2b-256 1d2c6eb797fdbffafedeb7f31b63ca2a6d17f8c764f814bd55466ce2da6b9783

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745621353-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2babc96bd53b763b50d5f58dc04b1ba2729847cc6fcf555cfbe427f7575fe23f
MD5 2af783c65462cb8b071019c177d72cec
BLAKE2b-256 406957f1bdf1c59efa33cfc54277ca4d0e279560e8322706dad50f4e9b305933

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745621353-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d969c75fe2d8202061e4caeeabe6edbf87db8bfd1c81e594a3027a68b7d3b991
MD5 26198082e05aca0d97bf867d180100d8
BLAKE2b-256 9aeb075a1a35f5323c9b875527aedf87a828387d71014caba3fea89ba314e525

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745621353-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a76181d6f838be28f4e1a9b352360d0805abdc7d51d6b5288914868a6ca0e154
MD5 1b99f90dd5449a62070bc4e52e124b60
BLAKE2b-256 f7812a8ea57c527326dc48a60961e1c0c862797da7f60206829f54e298dde0ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745621353-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 e8b275e3603e0423728106ef59090beeec106e17c2f6667c106710bc5a5c4636
MD5 831a55370039253d25e7d8072a7918fd
BLAKE2b-256 5ac504f0f95b8b35d9b490f81ecbb153e174dfa842b50acc14b3013fff36c57b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745621353-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6412d1720d52c58c5e0d8caeb4d4b2d387a29683eec626cbcb5f043fb69b6a43
MD5 8f9584b42412fe9f4bcd7e3d9c1fe1a8
BLAKE2b-256 7d885496af963ce80cda8b605c4b936f0587335e0f5d74979f234209a642b7c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745621353-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f29049aaad2c0b9512ac4b4f2ee6b79679ef459aa06b5386735536ebdf760997
MD5 8f75315d05acfdc8f0e97993c167b7f6
BLAKE2b-256 7e3bbb7c8d50591ae0168230f28853647bd26872a0dc5ad125bdf3735af14e5f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745621353-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6b6d5ad897052d8b18e992e5a413446c45eb7e78fc0a6e73568259479510f9a5
MD5 a66c7d378689a040cb7e8a77a89d20b6
BLAKE2b-256 04debe99bc5a9666afe7b8d963ebb817f670da07a639bc416f39de153610dcbd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745621353-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 7523ece9a3a584100761e72c102106cb9fa2021dab3b92782b3cec50f0fc4809
MD5 b6fc66e06df3cdbee82ac95fd5f191ed
BLAKE2b-256 6d9ec2b1384dbf1a28a3873baf7860f415bc54da00eff2b2a08cdfa6a26fd16b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745621353-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 83b31b3361a7d802bceb4b6e5a676b6a975f13851c91d2a61c29d3e820274f50
MD5 2e2b6df88c625c04f50a6c02efc9bb9d
BLAKE2b-256 34fdb170ebb2a95b31970676a28c63e69b50fb6d3245ca2144ae25857d5c8743

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745621353-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 25120050c9b37e884c2276962da0c83e86f7bd895901805809a4c1d7b13c1a4d
MD5 848508ab929bff10703be69bca28decf
BLAKE2b-256 40cd0a4f087f05a88b76b8a43e17e1cc64d42d8d95bee4eff552535179f88166

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745621353-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f748bf5a19ced8feb436e36ffff6ba59830abf69a8b0353362cda16b42c5f26d
MD5 9c593a63ae0de879bf7c639aeb3c957b
BLAKE2b-256 606b09a9c88fd716e385f7c937d818bacc92342908ee000b251833c3ccb5039a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745621353-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 a0191000339171c4104da5aa8e7f0f685c1415aca41c4847d53bebff6db5231d
MD5 4ae81ed7b8361168a10eb7242d265e86
BLAKE2b-256 68ea5bcadd2be7943b99deda1f0f42c9423cc6ac53941b663280918f10b02dc0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745621353-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 de383937651f25d29626a83872c67ee301c4670edaeb60466cf923a6c5bc59fc
MD5 47b1ac70735eff549f8cdd66ec86bcac
BLAKE2b-256 c8a6332879035fab3f5eb23870d267c69b038c86e48cb26f49c64bb345577a86

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745621353-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 26a40f1fdf94cacef80a004b7020c60a4ee7164280ab2dd80c63715812077970
MD5 17decf74108171a2e8b8e1f211eb1eee
BLAKE2b-256 7d3871e46138cac5bf7590821c293a28a75cf556aeee8564500f3b50e636d710

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745621353-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 49280f05991203cd07570489dd730694885b5d4f3c4e863c88eac924bfa9729c
MD5 90700115dee79e33bd942ef5491c968a
BLAKE2b-256 4f9999d4cf2fe536bfd4c993e18f21fb6595301f2bf7a54e3eee067aefec24c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745621353-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c34494a73789b35610d357d5c9d50994dfd8cf024a614fd58f651ba172397e08
MD5 e649f1faf28d9945f72e05035673a5aa
BLAKE2b-256 3442ee6bb1c40e85ee93f0459291cf4df73061b981ad9ad9446a5071db34e1c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745621353-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 15a3d4c7f535ac4cb4e4d825f18c91654ed2c6d4dc56e742e88f12899bca1af0
MD5 0a0fc2ddeb6056988c92881eb9ab8596
BLAKE2b-256 e2234a7b335d81b3d6aeec5431eba3a89bb06b1f07e73c92185ae551e2de7a13

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745621353-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 adc07d0e53ee23fa055c792c2173752350c4dbf4b02d92edca9ed1734cf47c60
MD5 12162af510d0678f26652348ee6c78ff
BLAKE2b-256 deb962cce1e906394d053945b7d3218e5f1843520b17950538e8c3e59c63323f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745621353-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0f5f00d08484861b41033ca1b5cd31d06a3216067be92765122664fb3928413a
MD5 3f1ae258185cc155e13fd8f030970188
BLAKE2b-256 732f4c4eb8053547a465990167d950f24fdfb006359068e1a7751a7e13d3e02f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745621353-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f52f0fd900059dc574a447325834498944cbe1212a75acf290912aa8d445cc7a
MD5 aad56dd4cb61ed4144e1079b8a3c655d
BLAKE2b-256 e1be6ab3dc364bd6d98adbce095fb6cf1f345460d13f33833accff7aa894a12a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1745621353-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f6259dd433b02f4a71aadd8b6af55441768a32153f64e365c03d2df27e157f74
MD5 e00ce2fe6a549e4a94e0255b06b92d6b
BLAKE2b-256 9df3431ea196195912a19e298ce46dfa8b7c50b58567b71d8c9a2a2ae30e9231

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