Skip to main content

A fast library for analyzing with quantum stabilizer circuits.

Project description

Stim

Stim is a fast simulator for quantum stabilizer circuits.

API references are available on the stim github wiki: https://github.com/quantumlib/stim/wiki

Stim can be installed into a python 3 environment using pip:

pip install stim

Once stim is installed, you can import stim and use it. There are three supported use cases:

  1. Interactive simulation with stim.TableauSimulator.
  2. High speed sampling with samplers compiled from stim.Circuit.
  3. Independent exploration using stim.Tableau and stim.PauliString.

Interactive Simulation

Use stim.TableauSimulator to simulate operations one by one while inspecting the results:

import stim

s = stim.TableauSimulator()

# Create a GHZ state.
s.h(0)
s.cnot(0, 1)
s.cnot(0, 2)

# Look at the simulator state re-inverted to be forwards:
t = s.current_inverse_tableau()
print(t**-1)
# prints:
# +-xz-xz-xz-
# | ++ ++ ++
# | ZX _Z _Z
# | _X XZ __
# | _X __ XZ

# Measure the GHZ state.
print(s.measure_many(0, 1, 2))
# prints one of:
# [True, True, True]
# or:
# [False, False, False]

High Speed Sampling

By creating a stim.Circuit and compiling it into a sampler, samples can be generated very quickly:

import stim

# Create a circuit that measures a large GHZ state.
c = stim.Circuit()
c.append("H", [0])
for k in range(1, 30):
    c.append("CNOT", [0, k])
c.append("M", range(30))

# Compile the circuit into a high performance sampler.
sampler = c.compile_sampler()

# Collect a batch of samples.
# Note: the ideal batch size, in terms of speed per sample, is roughly 1024.
# Smaller batches are slower because they are not sufficiently vectorized.
# Bigger batches are slower because they use more memory.
batch = sampler.sample(1024)
print(type(batch))  # numpy.ndarray
print(batch.dtype)  # numpy.uint8
print(batch.shape)  # (1024, 30)
print(batch)
# Prints something like:
# [[1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1]
#  [0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0]
#  [1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1]
#  ...
#  [1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1]
#  [1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1]
#  [0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0]
#  [1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1]]

This also works on circuits that include noise:

import stim
import numpy as np

c = stim.Circuit("""
    X_ERROR(0.1) 0
    Y_ERROR(0.2) 1
    Z_ERROR(0.3) 2
    DEPOLARIZE1(0.4) 3
    DEPOLARIZE2(0.5) 4 5
    M 0 1 2 3 4 5
""")
batch = c.compile_sampler().sample(2**20)
print(np.mean(batch, axis=0).round(3))
# Prints something like:
# [0.1   0.2   0.    0.267 0.267 0.266]

You can also sample annotated detection events using stim.Circuit.compile_detector_sampler.

For a list of gates that can appear in a stim.Circuit, see the latest readme on github.

Independent Exploration

Stim provides data types stim.PauliString and stim.Tableau, which support a variety of fast operations.

import stim

xx = stim.PauliString("XX")
yy = stim.PauliString("YY")
assert xx * yy == -stim.PauliString("ZZ")

s = stim.Tableau.from_named_gate("S")
print(repr(s))
# prints:
# stim.Tableau.from_conjugated_generators(
#     xs=[
#         stim.PauliString("+Y"),
#     ],
#     zs=[
#         stim.PauliString("+Z"),
#     ],
# )

s_dag = stim.Tableau.from_named_gate("S_DAG")
assert s**-1 == s_dag
assert s**1000000003 == s_dag

cnot = stim.Tableau.from_named_gate("CNOT")
cz = stim.Tableau.from_named_gate("CZ")
h = stim.Tableau.from_named_gate("H")
t = stim.Tableau(5)
t.append(cnot, [1, 4])
t.append(h, [4])
t.append(cz, [1, 4])
t.prepend(h, [4])
assert t == stim.Tableau(5)

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

stim-1.15.dev1738352709.tar.gz (829.0 kB view details)

Uploaded Source

Built Distributions

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

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

Uploaded CPython 3.12Windows x86-64

stim-1.15.dev1738352709-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

stim-1.15.dev1738352709-cp312-cp312-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

stim-1.15.dev1738352709-cp312-cp312-macosx_10_9_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.12macOS 10.9+ x86-64

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

Uploaded CPython 3.11Windows x86-64

stim-1.15.dev1738352709-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

stim-1.15.dev1738352709-cp311-cp311-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

stim-1.15.dev1738352709-cp311-cp311-macosx_10_9_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows x86-64

stim-1.15.dev1738352709-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

stim-1.15.dev1738352709-cp310-cp310-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

stim-1.15.dev1738352709-cp310-cp310-macosx_10_9_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

stim-1.15.dev1738352709-cp39-cp39-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.9Windows x86-64

stim-1.15.dev1738352709-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

stim-1.15.dev1738352709-cp39-cp39-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

stim-1.15.dev1738352709-cp39-cp39-macosx_10_9_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

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

Uploaded CPython 3.8Windows x86-64

stim-1.15.dev1738352709-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.8 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

stim-1.15.dev1738352709-cp38-cp38-macosx_11_0_arm64.whl (3.4 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

stim-1.15.dev1738352709-cp38-cp38-macosx_10_9_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

stim-1.15.dev1738352709-cp37-cp37m-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.7mWindows x86-64

stim-1.15.dev1738352709-cp37-cp37m-win32.whl (2.3 MB view details)

Uploaded CPython 3.7mWindows x86

stim-1.15.dev1738352709-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.8 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

stim-1.15.dev1738352709-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (5.1 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ i686

stim-1.15.dev1738352709-cp37-cp37m-macosx_10_9_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

stim-1.15.dev1738352709-cp36-cp36m-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.6mWindows x86-64

stim-1.15.dev1738352709-cp36-cp36m-win32.whl (2.3 MB view details)

Uploaded CPython 3.6mWindows x86

stim-1.15.dev1738352709-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.8 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ x86-64

stim-1.15.dev1738352709-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl (5.1 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ i686

stim-1.15.dev1738352709-cp36-cp36m-macosx_10_9_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

File details

Details for the file stim-1.15.dev1738352709.tar.gz.

File metadata

  • Download URL: stim-1.15.dev1738352709.tar.gz
  • Upload date:
  • Size: 829.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for stim-1.15.dev1738352709.tar.gz
Algorithm Hash digest
SHA256 552f1e654b0cc01c01c7f06682673a173dc9d711165e6e712ceca43ff2fe9f50
MD5 aa2c0d6a25ef47991b133a26042a2a90
BLAKE2b-256 c535e87ebf23006f90ff0493a975a601ee56d0d05f9c70662d6c71311db7fc3f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1738352709-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a17dabd60f6d347098f6e6ee7dfa8854a5a838a0c40975ad2171226b322e8162
MD5 4f1f55c1c299b601ad141df2a749502a
BLAKE2b-256 0dce3e3965ea365ca55e4559bd304cfc71d3c6804f7a13adf376c7feff2772ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1738352709-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4962a244e595f7793af2471819cb570d7e327a23cc04d0b1fa99aaf70d93337f
MD5 9df9432c024718c578396a4991e8a8c4
BLAKE2b-256 c78179fa128d7ecad29d2aa8d23dd63f907664ed46ff45ad136d6f04885901a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1738352709-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c068b21645deb045cd26ab500d0fe640efe3be4170fcb5ffa4d241a8b2739a96
MD5 600f8f63862df3f6dc57e118c4aae7b2
BLAKE2b-256 b997aae48c35320101cd1ded224afc20105122d87fa9528d8a7e4859793d56a5

See more details on using hashes here.

File details

Details for the file stim-1.15.dev1738352709-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for stim-1.15.dev1738352709-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5709f1c2c15d4395ede0e0e8cf68e9379b7e9711515fe622374ec8fe4d662f44
MD5 64bff5209225f4c498be7ddc407fce0a
BLAKE2b-256 f0d0dc31c8dadc4eb539b68bb590639ee0d8f611b264aaea0402543708d3bdaf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1738352709-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 5ef4ef1f715d7487de3f0c6e9188ca3700dbe7e8eb377257b305c24264edb29f
MD5 37b164d0fa16c60a14a732ea868a7586
BLAKE2b-256 2641f7d1e3ad92a6242b6d5fc826ff361c3f8a9524e98a9ddb8a689ace839809

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1738352709-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3d7a2549ea3788131bf921b60e6ba3e527615c43efd0d1fe83e62eb01faf566b
MD5 871f14fd57e1202033111d9d2f32849a
BLAKE2b-256 68a33deca2e5b172c00977e35239ce63d620b9980c6cbe44d051e7b396718065

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1738352709-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d6257ff60f2f01e1df8a1ef65cca9aaaf52fe6029f014a9546583d837453cbba
MD5 9f2beba6a42076847470c28e672b78a8
BLAKE2b-256 6be44a6599f61d2840b6d70b61b42ba6ee4d70562e28dbf1b019c1b7d7d78e9f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1738352709-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ade7fd6a87ff052b46a1ac6cab62872e3b690dcffee59cfcea9970359f5bb485
MD5 2ee78b8b537f7e4ca65cb207d861992d
BLAKE2b-256 038d6cdbbefe75d89e97774d8d5c3ec43bedc14fb7fcb5c0b702300ff8ff44ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1738352709-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 9b23cd2d2538b5b68fa3603237f599e6bbbad3997e7986314b4d6ed08ce23cbd
MD5 c9c555b776e8037b1ab0faa206848b9f
BLAKE2b-256 8c0b21a95c3c22fc702350e87b2c81586a43d85e729e455238409a4e57711dc9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1738352709-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a52ecb36933a2a520f1434cbeb86caa9a3b719cad2f4fad1b2372ed01925ac12
MD5 4103749a0e4be165594aaeb4a55bd174
BLAKE2b-256 6e6ea5842fa9ec17e438eeb91a9491b120780089bd0c7d36dbc5549e62ac78ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1738352709-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8df5a63228df859d024ec057e72a893856b96733d5f51524ab5cdf380a71f5e4
MD5 471306a15b698eac645d6e462b6b05ab
BLAKE2b-256 0bca7de0a1ddc6bb131e4af39072feee69041ba951ab16ffe2e02a2d7958b3d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1738352709-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6cad2d701debaaf938c0e1e41add6e4af477918f752f16c92b76f2d9525616a4
MD5 79f86f2ed80152cdb4509b040689e65c
BLAKE2b-256 5bab8c780f83a2e4d26485aca341f7312ad1d4110b3547d6a6637ddf978c854d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1738352709-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 82ab8b9e2482e2a176582f6e298bbe4ab914be11a9fe3484652a82fe55f60dd0
MD5 5794e64a69cb6826bf05a7eb73bb832d
BLAKE2b-256 f9d783da0911c2dc159ea436a2cfafb4dd3ad0223c77d327c89eb1fdaa4ed43c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1738352709-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 55df5f809e84b37b575d47fc6eeea7719a4ed62313500734f90209ec1c145f66
MD5 a8434448d189cb81f82dd14f7328421a
BLAKE2b-256 e94a29cd618e075446db63850bfd9829612079fc1df0076152a66081912453fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1738352709-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e7e28a51089b0aa4a3473e9e133a51600da437fb6e5a553668ecc9accf92ba5b
MD5 f9c087fcce4331c2ff46447463c1c5b4
BLAKE2b-256 0972769735513b3e665d06e71832d12e23dd17113907a5371234629af431b16a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1738352709-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 dd95b4d8f3c547664a132bd644ade5a74bd5054ed4649cc8045a189e5cbc4337
MD5 665a3e6cd0347d1d283ac7d5f3f4e147
BLAKE2b-256 011db0863f32857b77673b433a4e055eaf95387069bdceeca210a969bc64cd05

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1738352709-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 e2708104842316e64d53cf3db9cae37abddab235e027db557b6fcd43a8b4a261
MD5 ac81eaae8618b72acaeb98cf9387fd58
BLAKE2b-256 3480425aa63ee99dd622a687bee6ff619722f023693a835a59391054686282e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1738352709-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 522c56799b94999d8daa628183636a2af49a0bbb8334b301b853566396e91e0a
MD5 097176819af40bf35ec82f7e18546ce8
BLAKE2b-256 fab72e3c3347d0cf99281cd7b77fda2f18fabe1e182dbbb4eaf313e027c036d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1738352709-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2054e0713ae9e95be05efa5563e952601ad510bc88d1388a1fa7f5904616ace7
MD5 d8a793913fba15c6bbcba9ac13310ef7
BLAKE2b-256 0223fbe8a1a24dbe6489b8b31f1090d10243db44b2dfd12ae668236889820e6c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1738352709-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f797c98d7c32d3a51e0dc2885b9417dd07f02dc45a7d61acbefc14aea1fdb59d
MD5 ef920e4b4e08d75fa22af30aeca1ec72
BLAKE2b-256 ba24bea646104d86fe5f9c22ffc3885c200ae118035b794abec473714a8f79e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1738352709-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 1c7dd18f98cb0b87953bab6fbb742e26c8ebb49f37b653351eddc5f1be31bb56
MD5 a496b0d1c0e58ed9a51e3c5fb1c62ba7
BLAKE2b-256 9fca83f5841b342df72ad86d52a6c2c860e9cd1b0c5dcc1b037315fbafd292f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1738352709-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 8f822f56e02bbdb77afe9138165e929cefa323bbb58f693715cd407f81ea19b1
MD5 877c8ced38604dce998024e976fae15c
BLAKE2b-256 8749e7067f950124d4a0fd28d1ed73d1044ca8b9fd255b5abfadf01f4cd6021a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1738352709-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0ba4624a3a6fd2a2a1d240b0bca03eb8f7d54fa7f35942dbcc8df837cfc98006
MD5 929454a163686bc0d18824839060fe4a
BLAKE2b-256 51d3b6196f8b27285ffa6524eb9c80ac93aa6b139552d60cfa24d69f0907d524

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1738352709-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1f9df896679b8fd2e6ce4a33b4467048da67072a2a0f1cafe8e1a80f308648ca
MD5 87a0c48f40d7af2e38543ec6f0cce83f
BLAKE2b-256 5bde918188150c42c35782b81a852f81acd629dbd0edee8ec93323e348589bcb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1738352709-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 77fd92bfc583bfc8b5f926790d6fd5b989eeec4ef44e607ed839c1d987f09f99
MD5 349589062965c2fd945d739d8be83795
BLAKE2b-256 5ee9466ed514c117a5c3421ce6cf1cc620e84cfe5bfffa5e0fe76016b492c2ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1738352709-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 d8b24e1353d7cebb1885d4c552ffa26c65fadc3df74ac3bef9211f5fa576195c
MD5 455efda05c3cebeb6d3cfa8c2619f161
BLAKE2b-256 fb224ed91616579b27a4cdc0b4bc2f8b7e93a1c16b7348a4704f5e0fbc2ed672

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1738352709-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 2e041b0305081e7cfb094de0bfac87cc1d8adf6c5705808bef445b8f96657b9c
MD5 f0ad74b51285d6dac9a6b2d7c65c6c59
BLAKE2b-256 35771479197f54a2060db5249b8c7005ef35d559fb77a76f0019498fab46b404

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1738352709-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d9dd7a3413a1c04ca46812a5fbf82ab5765e6caca8a835f331db8b37dc6570d4
MD5 82039cb7a5bdeef5dc725e23750786af
BLAKE2b-256 fe5e92ae128003d4c6b0f7bc68cb896f81f664e857f1bc03cfc8bddd5ca7968a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1738352709-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 55918b37f0c1e5c074f1a5d81c8c855dbfe845a84d3536e456aa68cb5013015d
MD5 20966e66e9eb0c331f8c885e3ed49da7
BLAKE2b-256 cd2967f7ca15bbd352715fbb23e6077038ae6fd0f1873a541b202c9af7fc1a15

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1738352709-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ef5a526fdc7694cccdd4f94f8d70793f23a19a5ffd65f17fa52e50bf6d4262e3
MD5 5878f4afddf1e9ba176f8f70cbe1bfbd
BLAKE2b-256 4e94e478c20058a341dc79b7960f55f3110a6cf2d63e862a229c982eeddce8e1

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