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.dev1754438568.tar.gz (855.2 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

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

Uploaded CPython 3.8macOS 10.9+ x86-64

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

Uploaded CPython 3.7mWindows x86-64

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

Uploaded CPython 3.7mWindows x86

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

Uploaded CPython 3.7mmacOS 10.9+ x86-64

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

Uploaded CPython 3.6mWindows x86-64

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

Uploaded CPython 3.6mWindows x86

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

File metadata

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

File hashes

Hashes for stim-1.16.dev1754438568.tar.gz
Algorithm Hash digest
SHA256 840366a5228d77a59356bfad3ec306ddc6e13e7313d8a8054c59e65007d00a42
MD5 4dae13081d498021eb9de78aa9756f69
BLAKE2b-256 c69ee6f4818c03c2e7e9215bb5234ca0ef4222b5a542e9cbd261c0f909d25ef1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1754438568-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b12eca8e0f4bab5eb3693456a66f81c57d3efec383fb8d2c64d10067f604ec40
MD5 caf4afe459168aa1f211db87af9949c9
BLAKE2b-256 6727a39aca15fc3dbf700c0bbc08eca245917ae0c286f65a16f98586c8f427de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1754438568-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 763257fdebfabd8545540372b70813c51214be90aea673e8df20b19240159665
MD5 ad72f4a815ea8bcb42e12df4c68edba3
BLAKE2b-256 09f324afd231b80e14399843e8ab1021b477c54871f1ffc16133f5993c0ccbe3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1754438568-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 003f59e052d6c9f49bb75dcce1cea3fd09211af08521bfde8639e40567c6840f
MD5 9828459bb9b32740bf29c45c467e192a
BLAKE2b-256 dd1e2e90eef9dfad2f1e1e42a72e20aa151e3137df8a12ad6c0f9d2d4cb133d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1754438568-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 184cce327651b49498aa113be23f3c5293551b0048be3feae13a9d2b4faebba5
MD5 59a44528bd7e3364e636416aa8cc913b
BLAKE2b-256 0f910b677c820ff74fd41c758b0dbfb856dabd616e15cc2fea4fe8a423f8fa55

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1754438568-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 85e106bf64d9e82230263ae27d11bdd6225a2c1409213b601b544fea34ebb863
MD5 ab124641cbf8c3010d285d776003c2f0
BLAKE2b-256 62f66108965975ce34098b0572e444570f56d07ab4e7d31b0760fa59da2f72d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1754438568-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d5f6db1845e60189c22a5bf5e68d8c4dd1ea23495a5c431facba07d99ae41148
MD5 7d627d4453970094e86040877f8c4641
BLAKE2b-256 d6b90da517e1591976f0299ebfaca411c9fc414faf71eae9fa7d7d3c3df4bc30

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1754438568-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 363371609d474f407ea2b4f02f5f4b9ccdcd72b7a38766a29cef03fcdb12c5a4
MD5 54a3c5de7dc8b38e7b8f0581a5e58482
BLAKE2b-256 133e37ce30bc0aaa1da26132ce8d56189ddfa6ae4f1928b962f7c7be6f6c3ade

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1754438568-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 61cc4373451bbf8c9a3bf57799e0ff72cf951cc6c0e7740dd2d688ce8b2a680f
MD5 183185573fb51dd37c3368fc7ff4e671
BLAKE2b-256 1f5040941d8cff27aec10c27a0e44f9a30ccd43b6af6bf770c9d9822eefd1b42

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1754438568-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2f5f647c1cef1298db33f2c6b2e81bc173f46b58091452bb3c7810aecc3c896e
MD5 2735cd4b8314785676c732f8a526d1e5
BLAKE2b-256 b89fe628654a8388904c3baeee07d37d3c4ba5782e634cf9a8a68b66865f96af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1754438568-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 235de059a79bafc2d297d7da73c38331ed1ed5bb012f5e9d739e6c397e22b3e5
MD5 57b6d85f61b612c052a2c64974becf65
BLAKE2b-256 1261e3ea3c525c699b82a528481581425de67b31a907e6ddcfaf339243d7304c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1754438568-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 71c61af40b5c70c1c116eb83105049c293f7b0a02f55cd0c0594e13f4dd175b9
MD5 2ecc3f0d359ceb7cc8334b5c7d3f9b2d
BLAKE2b-256 c40306629b43c0bdae908efb6ac8686eac63ca117545f963ebdf96fa3f545f0f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1754438568-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 1c90bf23771dd767fb2b671c45237e013b57de69c3c9bf5aa9681719e5415443
MD5 66a3ce27fe6bc646208e1cee74283648
BLAKE2b-256 9faccbe8f65ab4899844a18d4a8a8a41e1bc067bb6df6e964dd0747c9134f671

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1754438568-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 281355a85ec908aabceab019b1fdfeb474d0d147aba8f6a9cdfb3d5d91b8b482
MD5 ccc6aa718d03fec026fde4de8079ff8b
BLAKE2b-256 75a0e6a7801f5acd589bb4172ab6a73aaf2ad8e5bfb9f824ccbb27bf660fac12

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1754438568-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 de6265b525247719a448f470ba70de790635e4c687f8a78d96be277c4f980768
MD5 ea0f2d9a4701e5e9dc390103ffdc8788
BLAKE2b-256 5d510875c3b0382045b9e6ad594e191793f9dcf2dd18372aef770f11faf9c0f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1754438568-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2275f74b773bfb7f5f090d54e2bb16999162d6b3a042bc83eabe6f346545cc8f
MD5 63f3fcd31b8f0ebfb9473f4d2a8c5f52
BLAKE2b-256 5aff48ad60315c5bdd674671e2b272b8b2ab9019d430bbe071d73a346fe61b6b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1754438568-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 76931e0ebe9217a84ef64799c37cd4234f8038f17b8ef13f510ed0b145665110
MD5 c3da4f101d8387500ee8376e08c35e2e
BLAKE2b-256 d60fbf6ad5444edf28684c303146915a897a1fae66ff1ed918ad4193b2ca8f80

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1754438568-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2d68353b1959bd018407a96784c424c598f35aa83d57d48bce307225b6e94ab4
MD5 5185be9088eb217d0369891d85bfd129
BLAKE2b-256 0ca4e21f790a55f5ad21fe6a93caf7f1536ced8e74cb13253ba25ce316b0494a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1754438568-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b1ca03cb82e99044d1788698cfb1856d7d009b87172eae1b9196ad1c9ef35c84
MD5 59cf42f3338c154daa9d5922c4058925
BLAKE2b-256 92b4d9e9e44726713aa8c27ce4ed9b0aeeace6d222ec5856b173b5013c68de91

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1754438568-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 be82845e440d98c0ccaea19f15daed77e1cec47286f82517ee154ae3da8543b4
MD5 e7fbd6ff6e47cd37a5abefd3094a5d8d
BLAKE2b-256 a16811a1e6604d9ae0f1cd2882df52d013321aead3f22c34029fa97d3575f471

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1754438568-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 a2aa33c8dfdabba84efa9ecc11e4c596ce2a0ee0d8cd5de5e1994c87e3aa9297
MD5 cdddf2c08950ef1492202eaeb1239e33
BLAKE2b-256 1806b90fad3eef519e3bfbde896635910ea2eff8258c30aeed9c1ea331a585f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1754438568-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bd808c150c8f92cf51985e24a2b281ea34d706fef16d4ff77e95342caf7d8ce0
MD5 ac0adf7703886ee9f506027e92f5178a
BLAKE2b-256 3c16e122f1b4b079900791d0c473baba5e57a2592a630a397ee8f12c5fc1671d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1754438568-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8201b0f4499eecf59bcee405242bca9f6ecaea18cc675e297a9726e102d12121
MD5 57e8326e7a08bef315585ca1d0997a73
BLAKE2b-256 f2dde80f7d04d8c01dddabee3298b3b5f73583d26c92cfee68ac72f3899b6f6c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1754438568-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 450a04b091398e87d496a0d37a3852d82d73a4a285116e664e3e065fb6842c5d
MD5 95fc26e0b1b1686ed74003946f074eb6
BLAKE2b-256 c18e46c73a7dc01e6e2666c748da56992a72cc8c1e948af9e9bad6f705a95d00

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1754438568-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 8ea535ed0fcda7a55b1d1534063f2175019fa23f75429435edbbc7cb60d88be5
MD5 13abe0bfdf4e6baa32ee08823e144591
BLAKE2b-256 64a629e9acf7c4fa3b9f632df708ba39b53571bee895d2c15b0b773f58dad848

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1754438568-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 a518fe1b642ab47ad0abd0acde381685ec52a67668d3c015517e6e134947f3ef
MD5 d29cc5636ca507626230e3f044d78210
BLAKE2b-256 d676d02df686579468a11fd688b05281717a77a0ab0dcd606748f3d2b0f8fe50

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1754438568-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 891f0ff13c4540480a3bdc2f51ef58ad5c128b21cac5c88782dfb2f7407e4ff8
MD5 b9767d17cfbf455f92eca27afc521965
BLAKE2b-256 1e7748ab9d906d2587bf7b26bbe4bdbe932e473dfa1c0b718b8440601ac74f70

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1754438568-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9127b651e13ab7ccc73840520540c9247fa23afea2bc203f13a8e239daf4375d
MD5 30915eb842062dda5933d11e16e6eec8
BLAKE2b-256 b28b5f5228c0a74b046188dd4392936e7f777e75da25ee604654960dc9ed9133

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1754438568-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 eae92a051e4d29997ea0078beec5159c872e638a7cacd0109eceac066d735d0c
MD5 4cb750bcf2dde53257a00b69c5e4522e
BLAKE2b-256 587b0ef5926321da64186d4f58b5663087e605f6eaec6276fd407747b44247a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1754438568-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 f956a22927dfd8003a91e0ef9efcf4f2f3a3f48224874e37ba31a43cca7091ff
MD5 e7d3c42f79b05cb4cb84e2fd6822987a
BLAKE2b-256 4eca38de12c2f5e6d5b5fe87490f02dae81f18c6347472838b82c9d05aa5a422

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1754438568-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 7eda75f3f4ac1418af0bce94abd068fb88819c0c54678ec33ab2c1c280190d28
MD5 1a7669d55bb6f56e8ebcfaba9998b8c5
BLAKE2b-256 3019122265d42d1dca1c54e6a656b57ba62fc2d9d32eab94f58dfac5268a3dc0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1754438568-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6019ad8c6767bb073b2987bc6ef461c53b10489546bdf3be609512d5f4bb6554
MD5 32a15fe6f0f60cd2ab81b80c8d516e97
BLAKE2b-256 28bfc195e170498c9ed11ddc7cc3be68ad1cd7ddfa4472b451785756ed2f5df1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1754438568-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 64bbda57d88a047f3cef0b4da3a804d71cd5449a3b2c5ee03aabe68da82625f8
MD5 0641135d1c3723c87a9110b433ad7577
BLAKE2b-256 7bc2d18007daa75cb742a25621ab33adc462c0cfab55beb06c4eb6ac868c3078

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1754438568-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d4191c9395dcca9c1928ac350b0d084702c84a5badf83297e89262048aafcd4c
MD5 5cd554ad98fe19a93623adb98efddf2b
BLAKE2b-256 f65a061aed3913f65ad55629e37c8323038cea102262590d553ecd9043a3a127

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