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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

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

Uploaded CPython 3.8macOS 10.9+ x86-64

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

Uploaded CPython 3.7mWindows x86-64

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

Uploaded CPython 3.7mWindows x86

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

Uploaded CPython 3.7mmacOS 10.9+ x86-64

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

Uploaded CPython 3.6mWindows x86-64

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

Uploaded CPython 3.6mWindows x86

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

File metadata

  • Download URL: stim-1.16.dev1746845336.tar.gz
  • Upload date:
  • Size: 853.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.dev1746845336.tar.gz
Algorithm Hash digest
SHA256 838426dbaca04cc6e4d90157f62058d1d2f8287e3947c66849ede89d5312d9d2
MD5 b7d9c943831566ea49850801d6e58b46
BLAKE2b-256 3c93aef2fbb8f35ff712ab0155e505adf3cd6040e1194c2803ddb08cfd1e3004

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1746845336-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bac34fdde3be25bba4a36be6dc2fdc94a87987f592426e29840af30319fd1cb9
MD5 a1625d304a06a88432012a229667a038
BLAKE2b-256 e5397d21b92e8d313d7134ad123c89026bbf8f53644d07a1bcd4691fd0d7eea2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1746845336-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5612910266157e78d89697aad447edfa304267b7389f7767a5440bbc7401207a
MD5 c7fb86031e31890d6153b29952096860
BLAKE2b-256 5c864d84dc670e661e00313c3f5b4deb64fa7b1a725d2693906f258f3ffbc8b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1746845336-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 f93b6e2896fc2443751c10019bdc3a44ab1e0f1ee1bfc42831ca5278edf99b59
MD5 d8896fe924b3af032a919e8249513daf
BLAKE2b-256 c77d144af56a9f1c2cb1067e5cfae75fafda0c914f9f616030e2bcaeca121836

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1746845336-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 772b2c4142037a83b63a86ff666f03500b65f0b7a1437786e7ceea4224e58f7d
MD5 88f1edcee25a74a3b743b87ef596acb5
BLAKE2b-256 f2f70f4bd60a190302e181a903f07ad1afe2e3764e104717e344b36028ca9a11

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1746845336-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 11528561b3d87826fa0a802765974ac4c14bfe4211ec52137078e1378579d299
MD5 c8ad76b97ebb6e59080ddb8c33872734
BLAKE2b-256 e09f61338a68f18e141535e8d1bfda4b31b4290512e85aee159b7079f98e26b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1746845336-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4a62379ebd6e08c739abfac78af0c9eead2dc461d330e0eb70f7e80add79b8f1
MD5 1bc0b5891da6593ac39da03a7bec90dd
BLAKE2b-256 4277163b66b928b913f3b1a26f92f7f8362c96cdb2d64d453ad3f06c5384dd7c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1746845336-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 4a726da8f11b43bce1d55dfef999052ecd1f7e457798c9fe072b1226c068c4ce
MD5 783d082e6159b808385200c13d49e27e
BLAKE2b-256 43c776a275bcae72c0ec6b4762d68f71c890cacdd915b4188f8bb4721d32157b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1746845336-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b83460420d12cdc3cc504a3041695cfea5b9e89604a7f2576db2dac257627406
MD5 bfcd3074ad05ee85cb6bdf3f13f16825
BLAKE2b-256 600b985f9559fe9da32d9a00022f90caa42abb7d10d865995f5366dd735c1b2c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1746845336-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7cc5fdebe6270737d2cdfcb73805479b0356eef4a1f5d4f20eda3298afd9b6de
MD5 0ec27bd7c54309c8537564303093f327
BLAKE2b-256 a5d516bdd8c4c27ad57b8deb5d57fc1bdc81c4171f9cbc07b8cc2af1a6ee97d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1746845336-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e0e70b5ba868ffd81a5e732da21602e0cb162ef47d12ea45fdb770d224427388
MD5 e487a7cc162cb51bef211a2a9c8a57db
BLAKE2b-256 f164bf40bca58342fe3ca8e9772c209563d51e0b90b8673aa192c3bd6777b249

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1746845336-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8e002534dae6a0ecb4f53d347c88a76c53356ffba9efe492208e398840b4f8f6
MD5 5ed456f106f0e07e4b67d77394d46ee6
BLAKE2b-256 e3cff76476e5cb1937d5a95aa9299038724ffe4ec2e0d6f5d0d7b78005b53067

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1746845336-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 4cd3b5dfc20b2d17376ffb07d2812d9e0ad1da3ec987d0e3219c01f306d9bbaf
MD5 295472fc1770149d71a2663daded8e2f
BLAKE2b-256 06f3aeda55ae92891098ba01234f1a21f26e0865e48781ed5a830283d4092610

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1746845336-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d9938ab6ca107dedb7073d3e6feeca88db2c68f29c3b9d829aa5443fd6f47726
MD5 9ee0b9ebea6569c1134648c3eaf43c15
BLAKE2b-256 ec6adaf5970d7b8803ebee9cee23916413e03cb974d6febb6fdf8920d6d3044d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1746845336-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8c19c5d68c48645bf52aa97d43d31b4f77e6e2ed57da23b4c7cb4fe0145dc542
MD5 bc80ab9d1bf8b9d1db6d8e67ea0236ce
BLAKE2b-256 a32a6c27178590af7e70165b67142f0e8b2ddc9b11da8abea13476033b413b2c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1746845336-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b4c184cbc4d480b1065fd9cc936bf3e38655eb0f082ff2bbb3cdf896964f37a6
MD5 75b42d427072d1db141c66cf62e8d339
BLAKE2b-256 7d9f2eac4dfe8b743f3a12c42a6283c7c31f8f7abfcb7bcda2e832a985eff85d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1746845336-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 b1ef5aae19db9c0843fe4e73d0c09e743839d05340ed640cfc5e92564f2add45
MD5 e2634eb5f396a5d2f116cbe94e9e2e11
BLAKE2b-256 6eada88a0fea90bc417ece5888e85da919cde1db42025b769ccb01783fd61803

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1746845336-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dd5d6d7d381e4ef8c5421b54be9af2d9c59275d5459256b42125fdb39011e7a4
MD5 febbd104c3cd97334b9f0ca78162a932
BLAKE2b-256 31a80fd71c5f21c61c2102d2f4360c1272498cb2e8c7c7716a6d7ccf78614f65

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1746845336-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 406535ed62380b41fd5b4cf396e148567db657f63eeb29f1310272db327c768d
MD5 f57bf455078e58b20aa9927360f940e9
BLAKE2b-256 3d858f68b6c2799f5161b02a7d5b7c2d49d7e9ae22d086675f9688ea70c6a020

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1746845336-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 64bfe0f2b8ea5375d64b26855248347c98fabf0ffa26ca656dc09306c31e1567
MD5 979af42df0f2039c694453e15df5d9c6
BLAKE2b-256 5d469bada44c207900f00599e39a5808aabacfa0eb565182e663a55b80647c0d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1746845336-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 30b15cf4eb55578e9af0113a25e2ec0cc1442db092f97a06711c6a4d069468f7
MD5 fc586a5b2df2b89bc5aaccba4bd1a9fa
BLAKE2b-256 02b9e9d726b3c7c3748505b8a838b5645d3749cacb694e7da7e1ae3a394c8228

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1746845336-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 efaae29b86844a8c9990d5b77c55faf0f6c512ebab9c6b1aa91089f7fb207ca4
MD5 12500af02c0a9bc27810182c1bd0ecdf
BLAKE2b-256 e3187300afd20ca900bf2ba2ac8659fb1362f313c744bd3e986ec0f4b3936f53

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1746845336-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 15d43ef4ecc4cc016160fe3f415656e36c46ff69b9cf27f73745dd0875c0663c
MD5 e3eccdbe97cab54b926a08168bbfb622
BLAKE2b-256 c5f5ba1452b75facfea56dda0021dd9ca50b405852babbeb4f4211aaf7e21646

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1746845336-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 650bfe5583b7fb1f5cfc9addb2b3da4a63f530a0d16d14f89353d8319d3633a1
MD5 4f6db70eac7656c84faba314852ef26f
BLAKE2b-256 a1f8fb6ed9f69f80381dea3e7e3288a5558e9415050234cea2372bc0e4a0fecd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1746845336-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 ff63a8dfcb76453b72f790638b66ee2d31aa8a122d768bd5686b7b472a9c8788
MD5 a932f47c3ea753abd7564f63efd79409
BLAKE2b-256 c67ef866f9de9d86e41f117081154d944aaa7b7e4378190827c669e0b2b97cb9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1746845336-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 d7b08d5366bc85088044439a531e7375a938cbbfecfc008bffd7465e1624ce89
MD5 4d0b96bfa2106ebfe4bdaea4ea7d84b8
BLAKE2b-256 827c1aa95a51d9d34d162cc065dea312aea60260ae4c8d2e80bbb5e33bcbba63

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1746845336-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e00966e0344f63527dfb89c6311bc442dba1ac9c8ffb7e73a4262a83ca40d2ef
MD5 aff966e96a11d2caf3ea057e5d29a13b
BLAKE2b-256 4baf05d9be39a57ffd570ede8c227c9eacf5bef7976a33e8544232ee765f00cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1746845336-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 256fa95c2f0bd567e9d025c11f3a5f212ad95a150ed8829f1bf8d93bd0813fbb
MD5 aab099a98990f504d63c020605a61351
BLAKE2b-256 b1fbe0e18a5e65e8ed76afd3ab43554640de4b484741ca13a14c7984311779d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1746845336-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 268812c8c04764a02a6afb06a7bef5cf059cd95956ccb99ceea3902593e1f936
MD5 684e64d194bdc5eb18bd9bb78511f07f
BLAKE2b-256 80d0e27514aa2444534390f48afa1070034c54d92384bd7309c91dd618fc3ef9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1746845336-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 d4c00f5d75f4816b267675257fb35e6af9d1473602a4195c57eb99ed8fdd3291
MD5 98e18145b49320bb5dd8f4904b029bca
BLAKE2b-256 d747308fe66982d4a34764a66155764a255bfeca96ac65438dcb2bdfe6375740

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1746845336-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 f5d0f49a038aafce678b63cad2c499b232745d26a2c73259a0743ffbf6f95da3
MD5 936b1f8c1e51df336f49f7f950efd47e
BLAKE2b-256 55015ead7beaa1b2d35eecf8cf85ff5b44e9ff6521716a34ed85413d782c1377

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1746845336-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c54d68e63e282299b44011ada731e758d22434354d65bdfc968630df6358390a
MD5 75616e06f09d2c81370c1579bd4abe24
BLAKE2b-256 0b7f319d8072e6fed15e19c454691a6fb35cc9fd9ffd2e7d6b260a273128aedc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1746845336-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 faad783d288ce61fbe4c22597f756a8e275c50368e589088a072eab92aa608a9
MD5 bec6ed38d07a6486aa2b436e1821dcc8
BLAKE2b-256 eee287d706b062307a4473fe75470cbd0f6c9a8df3271daeabb855f9406654c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1746845336-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a0414919b9e3d14b955b047fafd3eda90405e73f23c8a0860ea38172b9d38655
MD5 e537c35052c1703014b447bf1a57ff16
BLAKE2b-256 dceddedc44637e0db11906b906111f296e9155d921b953c437e4919a6c9e43c5

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