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.dev1778540451.tar.gz (882.5 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.dev1778540451-cp314-cp314-win_amd64.whl (2.8 MB view details)

Uploaded CPython 3.14Windows x86-64

stim-1.16.dev1778540451-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (5.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

stim-1.16.dev1778540451-cp314-cp314-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

stim-1.16.dev1778540451-cp314-cp314-macosx_10_15_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

stim-1.16.dev1778540451-cp313-cp313-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.13Windows x86-64

stim-1.16.dev1778540451-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (5.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

stim-1.16.dev1778540451-cp313-cp313-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

stim-1.16.dev1778540451-cp313-cp313-macosx_10_13_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

stim-1.16.dev1778540451-cp312-cp312-win_amd64.whl (2.8 MB view details)

Uploaded CPython 3.12Windows x86-64

stim-1.16.dev1778540451-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (5.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

stim-1.16.dev1778540451-cp312-cp312-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

stim-1.16.dev1778540451-cp312-cp312-macosx_10_13_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

stim-1.16.dev1778540451-cp311-cp311-win_amd64.whl (2.8 MB view details)

Uploaded CPython 3.11Windows x86-64

stim-1.16.dev1778540451-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

stim-1.16.dev1778540451-cp311-cp311-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

stim-1.16.dev1778540451-cp310-cp310-win_amd64.whl (2.8 MB view details)

Uploaded CPython 3.10Windows x86-64

stim-1.16.dev1778540451-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

stim-1.16.dev1778540451-cp310-cp310-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

stim-1.16.dev1778540451-cp39-cp39-win_amd64.whl (2.8 MB view details)

Uploaded CPython 3.9Windows x86-64

stim-1.16.dev1778540451-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

stim-1.16.dev1778540451-cp39-cp39-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

stim-1.16.dev1778540451-cp38-cp38-win_amd64.whl (2.8 MB view details)

Uploaded CPython 3.8Windows x86-64

stim-1.16.dev1778540451-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

stim-1.16.dev1778540451-cp38-cp38-macosx_11_0_arm64.whl (3.6 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

stim-1.16.dev1778540451-cp38-cp38-macosx_10_9_x86_64.whl (3.9 MB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

File details

Details for the file stim-1.16.dev1778540451.tar.gz.

File metadata

  • Download URL: stim-1.16.dev1778540451.tar.gz
  • Upload date:
  • Size: 882.5 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.dev1778540451.tar.gz
Algorithm Hash digest
SHA256 1cf9e53c4d5aa1d7fdf1b2ea673e2ed92e6e3ff73a0e8e66278c36f172f3c6b7
MD5 7c39fe044d6d6a8c770242a9e70042eb
BLAKE2b-256 e1b802a953e3161696bc91869db07c3c641d3fdc8d742153506fd02db6017850

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1778540451-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1778540451-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 de35757a0d3ebd1fe460996edaaa9e9f1cc8d911c24f843b8f41145570a74589
MD5 36b45ecad69479dda0e6e6866d2ac6cf
BLAKE2b-256 9ad8eea807859804ed971249ff37852f3162187c012bd4859b15f84574c6be9c

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1778540451-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1778540451-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 65f768da6039a4b76579d3de4f72efc54a406bda1bda029d5918e61213355bb1
MD5 88dbe868af9fdb52720d729a94e27708
BLAKE2b-256 57db14996af9492a3730ea30866d8f6a7a5f4a43b0abdff32dd688b34d566c19

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1778540451-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1778540451-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 40fb1aa37eca80386a87b17234d61878555969b6d7f92bdd8cb4bc199065821b
MD5 1aa6e7aabc0b61518055f0b117c4cd88
BLAKE2b-256 23145f282b7f440adaedb539d7ed8a7238a527adeb837ac4e785fbc7e7f9c4fb

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1778540451-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1778540451-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 d1d2fb92ecacffe8bb7017dc056eb4851bf78c552c60a4f3d923e30ccb184212
MD5 51583009ca944b8d429b9eae293506f0
BLAKE2b-256 81bcadf204aa7430895a3e76e3979df3374ecab26a6a115106c3c0d24da068ae

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1778540451-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1778540451-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 26536673cf45b808378f6458fdae1d78514009b972492676325543ffeec7563e
MD5 8cb3e9c8d59c951a8c66500dd5422f5f
BLAKE2b-256 97053271a670284899a6f22818e223bbdb7c9f0abb8f95b6ca2f7fd9a33b638e

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1778540451-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1778540451-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9fb7a0dcff4aeae37d6002a7e71bf5c933ef81a17e1bb036a349118df8e30986
MD5 0d2579809ada664daa2ac250b4176e82
BLAKE2b-256 22459f686f55df0df9952f4a4ac45e238bb242a6c671c3b9deb465c11f382cf2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1778540451-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4eacd5147bfdb8a7f52ba0c33dc784ec7d94c9a86e8b290e77bddef66a57c8a4
MD5 52a12c0d8ee7da0c8a96a9ab0f7c17f1
BLAKE2b-256 fc8179ed1749eb79e577decd4800add9bb2035ebdfee35c87c40f1674decf308

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1778540451-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 0aa4370aff942566090d893df9073bf95476b7cb13d0063eec21efa39bbaf7ec
MD5 41814011de0b973e801e682edfb96dad
BLAKE2b-256 4394f6ead96c5169e54e0df59f308980afef59bd88705b9dbb2e6566336e81d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1778540451-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 78c17e8259d865760deb0bf4ca3f4a80aaac97fbe0eb7dbf1415836367a4be57
MD5 afb6378c109b24d9991d8c9852647759
BLAKE2b-256 dd84532c0d0ef93b210dba284ed28651af1e25d36eb0e39d7839cb441201ec50

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1778540451-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1778540451-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 72980a4265724cd89bd978aef73d618740b155a9d9da4034184894d04a001c9e
MD5 9d1856da093b018c8aad6b5f7fe39a74
BLAKE2b-256 9c50bac8ddebf4bfbb714f08c42cf77a36b961bdbb6455e1bed06dd6bebae72a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1778540451-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c4c1ca4252fca19c1e5aca4a23e2a88deecbbf5eecd5501221411adf86cf9b8c
MD5 652bdf9c08940b3a3af9ee7d977105ba
BLAKE2b-256 420f32b2bd41c395774d29e86fd8d2422e91cd4766cd42ea103dbc238c96be59

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1778540451-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 4359f5f8cafbcc61a5b3f00742e81e6235bd6c24d5668a4b380889416e63a39e
MD5 2cd9518a38de5b6d4ad59f66bd2a4404
BLAKE2b-256 bb15718fddb264e27f4f5f5d1e7a9c22ee9b3424b7271e4d8731f461c0531a8c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1778540451-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 bce398a5a27b5ff0d000e1bfbc039a099c3f90c2ff827fa3cbf20081e3cc9ca3
MD5 718a4eca423f00b36704f7f56395ad16
BLAKE2b-256 6f127d292521e12825bf3a794470f24cb7693cfdd06be7017dd9006d91bb591a

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1778540451-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1778540451-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 283c4668f2ec156ec2458d7506b8191c832bba16c2810d33951e3ac24e1d5e4c
MD5 26a2fab2423b7e70cf38c005b56290fa
BLAKE2b-256 b53b1e035e7e2d120c5c8670c2c32606c4cecc0586e4ffb97461d0bb04afa80d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1778540451-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2a400c5afd2d4fe4a8ae2ba6289c133e1b13bb52b047a852b4b58c57a11ccc5e
MD5 58d961855594b0241f51d8eb534430f1
BLAKE2b-256 1fd1d2d1b8db95c3c5d1fb7470f4ef08195276e4881146eca9dc2f65fc026fb4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1778540451-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d73886cc6f610f899f818ac4321e34715511a56339628594d148ffc018e1edfc
MD5 74a6df409d97e05e4b7adcafcbfba8b9
BLAKE2b-256 5ac8655133b6c26243d2cc5ffd7cb47e9a99a4e513eb5491ef81457c9f0f4892

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1778540451-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 64a0dfb61eeb0dc5498d59f2b8aed1e0e31acf5f44ca56e6b1a46a032d95eb85
MD5 5340f86f87037fa3b9243ebe9c4dc72a
BLAKE2b-256 0ff9c7aa95992968d5f362858d7c0dc7edcbfa04ff9c9baafe6c3b4ea4f2cb08

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1778540451-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1778540451-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b8ef04637be5aa6f7f55159fdc139c1cd785ce34fdf7839dc4943eea40fbea87
MD5 c45d3cf2e4249ab3657a163cc31e8b7d
BLAKE2b-256 bf64aff5c07d452893c93af90c7e8a18f8453c74a4a527b4798f82b496e9f9bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1778540451-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f01faf79fec9ae613c2d176cdd840c6548de1917842bc509c5f166658358efe9
MD5 90961135bebf06418a3858b539c7c416
BLAKE2b-256 af973a6bdd02982fd8cf6a922f29a60daedc504134d6713c035178a49753870f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1778540451-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 271b15968b94d2bb5ebda302c64bf08c9e795d0f6075e24c8b6f63561eab5bd1
MD5 94b6158a5fe9d4d6ffe0611de39a4285
BLAKE2b-256 7762304e9024bb44fde3a99d920b756774c1fe53817e7badd74f4e83c7fd264b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1778540451-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 75cfe919d067a8283d6aec2abe0e919240062440d6baa09c573157b69c421aaa
MD5 d2e52a1093a775ea843c7f99ab16a623
BLAKE2b-256 9aeca897c6780508cb775febaa9c5f83cdc30df630b11f87a490eb0257aa8556

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1778540451-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1778540451-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 31257ac0c57d6adace4c2483fdec26ac06a9079abdb3d5f23170085e5f247893
MD5 99955efba07834eca5a82e91f9145637
BLAKE2b-256 d453544306cbe116aa8355811a440a48c9e9639e603968a3c3a8ca5569a59296

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1778540451-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6e9015a6a9ed316cbfeb619d106e14c455168d68f07d6fda8aa271f5a4d22574
MD5 73baea8553b522079a30a6c1bea216f7
BLAKE2b-256 fa22d5967244b87fdd3debc3e2cddca1bbab8776724349c2796648735f4c74c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1778540451-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6cdf90b2a6bd4c0f121d7edca4201fcc28430288ccea4d24dfd2948b7b7d2dba
MD5 7a171962d2a84cfed87d5c6bc981131d
BLAKE2b-256 ff641c4b931acf16e2a91ba26ad98cd00eab98f40f57f1f193c02e427024f0f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1778540451-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 2661a5a74b09a52fca44a8f923610f2aeb677718260855b995f53ccf3162bdec
MD5 25570625275091ea22a0a78f64dbcb9e
BLAKE2b-256 f92768fcf73d19fe8a0ed5496cb95a1605691235fb0f5c7841f32b12810f3251

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1778540451-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1778540451-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2481950cace4de51e648f060a37569101512a1c2049f1224893af11ae345188d
MD5 b934fbb1923db4b84e0f70f2575ef5cb
BLAKE2b-256 e5f19a6ac123fdc01412bf325262ce15f37bb74872d811085253ce54f184d775

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1778540451-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6fa69c02a33bb0cad324a235560d04042714a26d892a8a965eab2d0922348d41
MD5 88b55b62e619b3b86a2f9d531a07522b
BLAKE2b-256 c0cae05cb264fee8657475c8f505111e6fa7e6bc8b3b323ca0c2d90297e8483c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1778540451-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 67465d56eb644f9bfff52a1eb32d0d15b6b9fb9b5671c22543076f6ae1dfbeca
MD5 84691cc402ed765dca6f62c8bee68a58
BLAKE2b-256 4f2d58def2785d25fcd6befb817566d5f5edd1116526525b796cadbf15654cbc

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