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.dev1748073630.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.dev1748073630-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.dev1748073630-cp313-cp313-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

stim-1.16.dev1748073630-cp312-cp312-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

stim-1.16.dev1748073630-cp311-cp311-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

stim-1.16.dev1748073630-cp310-cp310-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

stim-1.16.dev1748073630-cp38-cp38-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

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

Uploaded CPython 3.8macOS 10.9+ x86-64

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

Uploaded CPython 3.7mWindows x86-64

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

Uploaded CPython 3.7mWindows x86

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

Uploaded CPython 3.7mmacOS 10.9+ x86-64

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

Uploaded CPython 3.6mWindows x86-64

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

Uploaded CPython 3.6mWindows x86

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

File metadata

  • Download URL: stim-1.16.dev1748073630.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.dev1748073630.tar.gz
Algorithm Hash digest
SHA256 a6e220058d6d01a7a8850b1e5eb03009e15b405524e7aaf28f739e0a2f87e221
MD5 cf77b0770e15babb2bcc9ee1246c3270
BLAKE2b-256 70c707c0a50ae1086174f390099d685989651a1d06a50693effb46745ebd97cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1748073630-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a56e992a0f4c778ea72c5370a7346764c4a8b50b1c7495d333e8b0234f4e7738
MD5 7f19b8a27cadfb182a90911c808d13dd
BLAKE2b-256 b0c17d1e05da3b5fa1d4f61af2a7d8d987391a1c992a69dc8da2a02d4d295d00

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1748073630-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 065f225ef6240d06d596bb7c8e57102ef102cdfcf92bed35ce268a70451c9589
MD5 480d118db6dcae1800a203e02b9fa39a
BLAKE2b-256 e565a74dc1cd0da9d414a8180587df4e7104ee1b7aa3b12d206057b4ca01afaa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1748073630-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 cbfa80080b6e4a6ea88a31a18238ce1d853d6e905970f76922a5fb07e80477c7
MD5 79f1fcb77bd709244acf0f0be055aa57
BLAKE2b-256 3d259e72bf21cae8633016f83b814bfcb7ca3c848c55534e65acd95cc15e1f0d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1748073630-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 34fd36d11ae9b2b552243e7ff0102450d53c8676f667e33bae6b37e54ab7807f
MD5 2604bf8cfaf526760e0e88f6ffdbfdc2
BLAKE2b-256 6237564965d3a41082bea563282622e100a499ff96a969d41682c436fb8d98b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1748073630-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c764e6d22c1dbaabfc1efdc1ce4394807b685c401ca77da9c71a97d12edc290c
MD5 299987b936dc6ddde0c09d16bed1f5ac
BLAKE2b-256 ea4f7321a6e2348a36c89c15de42b303609b4ccfc23fc2adbe07230a7f34f613

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1748073630-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f132b77d3d3c1a6faf03da099ac1146d8321c141d0758a5e15a5dd1ac4a239f7
MD5 b4ff5555d1812de28275ae271abf5b4a
BLAKE2b-256 e29e1aabaf45433fd08b00b820665ccf44f8c543890660e06f34b20236905279

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1748073630-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 d2f4970b82d2a03f8f161124b28b02ebe6a9ca3ecef579b8829759dfd6d3f37f
MD5 2bfad0f60acf94911b774e9a0abde09c
BLAKE2b-256 00a59eb8c623c846b3898828df336f0c8c3bbab0dd7680819617577eacae74c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1748073630-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 12c0d7b3f7f55317806b7eae5fc7a39b9d551294504bbf7f0b741e4402e88313
MD5 6654a703fb6445f4688bd3fcaef3dfdb
BLAKE2b-256 f1786cd03ccfc3a4d30ad05aff744eb62c07e9284c8dfd0bf160e9a8c4bbb049

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1748073630-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7ff46a2e96dfb6b1cd3b1cbdb503d530d462037f25a4d56bc7b411df25ea731d
MD5 fda156298e97c01db8e772eca943c1a6
BLAKE2b-256 68e718d00d1fae26bbf9c277a7f09cf7fd4fe08716e2aab37bfb54f14c81974d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1748073630-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 eb0534941aa11c30bc3116fdea007e72451957c10cb61c7aa7befd8d821e1468
MD5 91d7b273cc561ef4b63d3325b1af8ffb
BLAKE2b-256 5a633b71ab78c99cee9456163597a427d74e6e7e731c19270bf0871b86e128c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1748073630-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c4bb32120a5faa5c81c8496d811e795d3f7e0348247769b7a5e333b2751e72a4
MD5 b5ec12e57970a8da3bdcd714cd9cfd99
BLAKE2b-256 043918f6e918c42d3db871c89333416e4ebdea92e45ef033faefbc8d79f15078

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1748073630-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b43b2914145497e4fd4354b3a309914c467404548357dba5b875e082e5a44b84
MD5 3da674a9acbbc7f44dab4c87be82aeae
BLAKE2b-256 fea2d719eacd551c0382386f355572bd139bf247f0cb0accf1622b8647ccd292

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1748073630-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 045f42b00115c74e7ed5e53b304458b6687060433b331f9e29446cab99c3ca6f
MD5 c20768571bf56543978ef26a310d7c88
BLAKE2b-256 d4406db74106f03ffa441acfb3ae402237e08d3c454206c4a54d8c820dd9ddf4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1748073630-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9c2de85c5594c9415027f1b67b1b0c5782b59ea5093cd38a3f1236466d9b0cf2
MD5 9c7db5d48b02979244b18c0726ff7ca8
BLAKE2b-256 96756e212a843f4488a7b6c16b209b4962db3fe1eedb9e3cabdf98849f93775b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1748073630-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fd98ce3e2492406a4aa05e5ffdf76747868e0f96fd5bc81ca373c9806ac1c5f0
MD5 a3dbc4123ba16ad4dd6974601f8f7a63
BLAKE2b-256 7f26120b4bb14d77035072dad10a55e839975d75577d89c57b4ef79bdaabc753

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1748073630-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 63f282b196e52daac61618a7073ce7671953c77130d622b23ea2e8cb42ee05a1
MD5 c3a80efcf6dc85809618fd03f34c643f
BLAKE2b-256 ac3f205a2a3472477b98cb8496b7c79b8641f6fe4704928ee7ee3c52256dc0d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1748073630-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4304e88659ea16f008f02b9c1d43069563f97245d66bcdbadf8d09f4dc7888d7
MD5 e22aef22f83e3e836c4d49cdd49f0c8a
BLAKE2b-256 da7e4dba7abaca6ae2fa4680ac5a0c419dc371638046601097cec8daa6282c89

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1748073630-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 310d995c40633121b10b98e2cc2e220f2a6008da8164dda9c13c18903318537d
MD5 c92585bec661ef0ad0b521614c5207e5
BLAKE2b-256 581dba5deb30a0ba5c07e68bd007f1b895c3e8bbb5572325e11022874609c5ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1748073630-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4660c5d17174d67c95275734c8862d3b733c92e367ce9ebcf11145d15af67276
MD5 58bce986db00a31a33d8ad6b0d90d550
BLAKE2b-256 362e4ac8d272c902300b3e0d690ba2cae34599d86b06e136c6b27c31a34234d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1748073630-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 d0fbd8eaef2e252672f9383f0bca41387d0dd018b31ff5fc66e1dcea856a4eb5
MD5 bae658530389266085ab135693b0a46d
BLAKE2b-256 6fbc3d7199c40116512c67f1d0c7f77c9098259d5ddf29e58cd01954e6f95318

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1748073630-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 299fc94cec0386373b2bfb67ab229393d3eb05b668f36c49f46e9d89e2a3fd0d
MD5 554ce059d139e6313d9bf59834ab542f
BLAKE2b-256 3ca6d2a53f01fc3c9849ffc14d571842abcb687e806cc867ff5b1a8725e14b43

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1748073630-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b49027f8044ab80fca4c962b569b65e98d734a3dba5346db98cf2f4593b8007c
MD5 7d35d37692ec8f752891819cc8962d20
BLAKE2b-256 18f363da01f45347a9d3178e874e65ac0e7344047f8426f86f6df5ff1e3bb890

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1748073630-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fd631dde83828ca473fb263882dd2aa352ae16ff3b84b150aa39e55b9b3ec818
MD5 e23f237c520c38630412530877929bad
BLAKE2b-256 d9e3efd4c7bbfacf202ad66dec7e8e2c811c55fe24d32e8f549fd1ba1be0da52

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1748073630-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 3ef5c88115ff7e2d1ac843a17eefe9707972204fac459983a37bd59a823bb517
MD5 16097fbc888e8bbec01779e04cd0e523
BLAKE2b-256 45733eab78ab83807f05f53f488d2c736c1982591f4194f0c7ad57f6ad702a4a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1748073630-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 a4a8f7a6c4eb2a4f22951e8bb821a690d47849f59825316b3cdd9af41c8e1c91
MD5 573e7e5658062f106de4c794958a7623
BLAKE2b-256 f7994228618f9ebedb045c79f752ec81ce0fdb4f6b209f79bc717efdd5bdee6b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1748073630-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dab77daa4d3020fd5da2645f951e10092f1c10e94c47b824be62c1e682e746b0
MD5 072b2df7e52df2650b6287bb5c7c8610
BLAKE2b-256 36cb6341ee62ed3ffa80d3ae6d6c5c6eea40fbc42d73f7312dc28daeff409087

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1748073630-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 aa5f2c1c68cd880fb017534a4b65fa8775a6dc76d50067349ac9690203029ad9
MD5 3fd2e8e37f4ed6e381caeb1458d5b993
BLAKE2b-256 e15d5a6145613651db1b74dfe9cdbf12d5128f9c1a01046b9d4caf4b1d76a824

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1748073630-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c5986e82b603b05ec608466b80d7dfc4e03b283e152d03aa8537119dd176daa3
MD5 54c0315a8f4f9ee9d634745ca222f198
BLAKE2b-256 4ae04f7a9ca1e1032e6b553ebc926570410ad107839d9fef3cb8e196e60ff9a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1748073630-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 a2c35b072af9df01e1221179442b59f12a66010d13f1c6a83976f90ba8a9effd
MD5 9d84174eeae29ba63cb062393cb88bc7
BLAKE2b-256 1a68309075e0a353cedc2d26d9fd5da6000712d9aa441bddf5f3e071ec95c427

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1748073630-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 07b8c3317e72b8ac8876e53224f441af914387b6025b9fb80f88a5c0426385b7
MD5 b1d289f7931dcac09de0572109169a9b
BLAKE2b-256 5e26b230832304e26925e8b4951e12ea3ff24722abeeb2fb803ee0db44a3ceea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1748073630-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 05975cc76d0ddaa6001e79f48246c00e073323f06c2d6af33106a27dd9b7a39b
MD5 5b1b2475d5f8c8cdd8598a84da0e1bf2
BLAKE2b-256 31d423fdad7c170dc38e4170aa436a3c7bb94aac393efb4363c2af9ad1bdf8d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1748073630-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 632e03c010c6960ed3efb6310a5941949c96942334f6734fc3d6018b2daaafbd
MD5 c94d74e9c157b4bdcfff34c16e9d6695
BLAKE2b-256 57b5db073d23b8c726adf3be762e0560d130814ef22913a499bfdd57ceb898d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1748073630-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d8eb587ce75f66be8feaa23273256e0a83ceec951a40e52d57b2ad82ac142d24
MD5 1e3ca0ef8740bf33973f33795ded95c6
BLAKE2b-256 8bab781c05f01423ecda6a8f1cef84246f3de32160973012b2cfda0e77e65f9f

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