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.dev1743543556.tar.gz (842.1 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.dev1743543556-cp312-cp312-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.12Windows x86-64

stim-1.15.dev1743543556-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

stim-1.15.dev1743543556-cp312-cp312-macosx_10_9_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.12macOS 10.9+ x86-64

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

Uploaded CPython 3.11Windows x86-64

stim-1.15.dev1743543556-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows x86-64

stim-1.15.dev1743543556-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

stim-1.15.dev1743543556-cp39-cp39-win_amd64.whl (2.7 MB view details)

Uploaded CPython 3.9Windows x86-64

stim-1.15.dev1743543556-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

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

Uploaded CPython 3.8Windows x86-64

stim-1.15.dev1743543556-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

stim-1.15.dev1743543556-cp38-cp38-macosx_11_0_arm64.whl (3.5 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

stim-1.15.dev1743543556-cp38-cp38-macosx_10_9_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

stim-1.15.dev1743543556-cp37-cp37m-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.7mWindows x86-64

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

Uploaded CPython 3.7mWindows x86

stim-1.15.dev1743543556-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.15.dev1743543556-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (5.2 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ i686

stim-1.15.dev1743543556-cp37-cp37m-macosx_10_9_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

stim-1.15.dev1743543556-cp36-cp36m-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.6mWindows x86-64

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

Uploaded CPython 3.6mWindows x86

stim-1.15.dev1743543556-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.15.dev1743543556-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl (5.2 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ i686

stim-1.15.dev1743543556-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.15.dev1743543556.tar.gz.

File metadata

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

File hashes

Hashes for stim-1.15.dev1743543556.tar.gz
Algorithm Hash digest
SHA256 8728788516150f2d379cce6f38f499cfbe38a5314bb07b6579e3fd81c90eeb89
MD5 64325148d81ea9b5fe0c1f1d6d347c72
BLAKE2b-256 7bda15a59f9b8df01a90befc0fcc399b4e08b2e9fa3aa0e28f2696f15ca8ea33

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743543556-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c8a54b3e47c39d56ea31fa7240b5c543e2f812cde8fdba24916d172d22221789
MD5 80832c7c043c95473fac5e7116f200e6
BLAKE2b-256 27a306d618be969330feeebf73c3646f3997362db0e7e0616f1dbe44c5fe351a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743543556-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2a43203c98c0ac801f48d35b3359a0f9f3c5457ca3691b8917101254e22dfd3e
MD5 0edde0f66283e91ebedc5ef6f8b1683b
BLAKE2b-256 c5f8ab45803773156e370af446142985683989524f3554dba9dc1ca3cf56236b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743543556-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b553e7fdef475abd1f7b00a75a43f0162ce823898efcb38a7e19a9d1871cf7b6
MD5 49ca5c9f80e462e09d906b04cdcec44f
BLAKE2b-256 41f05530a1fb9c144ff4ef99c96f56f6c8da954d3ef8b769f9cb592c0aa4f518

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743543556-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 020b7dfebe5b92f22e85a8943be4273c4911aabbc7aed05cff713aee00b3b608
MD5 28298d5a0867d06db101581e0f36dc7c
BLAKE2b-256 bcdcb2e8fc6d7847f82c6d81e194dd0f50ec513a1b5f132f9bb5786aa25b8ed2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743543556-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 300e11f6104896c631120e720b3ff6c10a276b176cc38031344a8b4d0f3b5166
MD5 4cfeb7cbe374efe03919c9236c30e54e
BLAKE2b-256 0e61e00b2351f6796788fbb009095adb89ed30a291a6f1b56ae490cf82ebd89e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743543556-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5f5d18f19427e5092dabb10327be63918e639c92fd7677623a474285da831e6b
MD5 3e75eef29f6e9f630ecc021aeff2b87f
BLAKE2b-256 2495ceb2b966584857f0016673a5c4a80dcfa8af8602a7beafe8c50f8416a4a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743543556-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d55e3ee3ce25ffb9bc0ec7b741e4629bbd41565d65edce3238638a5000d2f12e
MD5 dae01284b07989acec0f29ad28f857bd
BLAKE2b-256 eb0aa6ff359c64050f3d4a7a9384d7ab0c4e5237dd19d7de2e0e1f92cb3f756a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743543556-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6d32d1150b1a840ddf5908818e04a91dcd434cfbf0ef76c927c9d308ce5289ab
MD5 f731a87d00668d042d75a234cf4ea7c6
BLAKE2b-256 56eee7ed44598d93bc61fb898d48b8ab23949ecf591fba1ec6a54005ace3972e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743543556-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 462922578cf4d45ccaeb6770fc00111b5324c489e58ab9b103453c0631d825c3
MD5 e30443955e458c901186ff3f4b0fbe85
BLAKE2b-256 390760d14aac791d42a19cce9dafe0321c6f19ac3446dc800cd316ccfae0b5db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743543556-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 166277a50ecfad3e82648b2a3ccb9e0934b893b1d8194e03b8dc4a0cdec2cb1f
MD5 5f53ef087661a53a2a1c4a07e2732be1
BLAKE2b-256 567c83a3ac42939198523f741931d7b2c1584452c0fb4ec9c68a138ba71027f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743543556-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 46c39c7e8eeca250a814649a4cd9f0e3ba95c2581f378b4e3bc2d4681514f55d
MD5 0e874efb250f0cbc1adee2d6646e5014
BLAKE2b-256 973eafdf4403b4dc79495b5537e72eba0b57728828ab04ae794a2114753c3c13

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743543556-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a0e2880709b13555e3a0207c26cc66cfe53fc5324a771f0cf022f693e3c341ee
MD5 a3113f0ad299b70e2bd911d3629bec12
BLAKE2b-256 9d13effddb3797a68980697098b0a3220940fd394d6b656467a53fc477e452b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743543556-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 86ebb0e13bc78f18620c0bc2911abb51045b65ea46239a2c43e56ff3772fdb99
MD5 0f2e7a6b58ed2174651dcd697ca7276b
BLAKE2b-256 369ac0932c0f011a08573b321f3a182b9b0ac6cdd635a35b3b6f946011dd9311

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743543556-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2189bee644541df455b663b5489045221dda368caca508fa006cf15c3ffb715a
MD5 a4ddde04cf5aefec68f78dc89bfedc7e
BLAKE2b-256 548dc99e1aeb2d82da3eb77f5b54cf71f8fc96f3bae8199a1341782b55680510

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743543556-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cd49da9d2e0b1aa6bd9c212b87435ade4aae8df39152ed3a08ca6cfeb334b425
MD5 639574b33c8cb14689a1320dfc6389db
BLAKE2b-256 18318732e528c2e41d43f2bb8713fa83d53467734600a8774279dda1554649df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743543556-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5f4b4fb3c795f52fa465c06aaf0b5969a5119ee99ce3837139f90a2f40773f0c
MD5 bbc606783400d59018e05ce189046fce
BLAKE2b-256 af6925074b1ec2ba823cdd0899390685ed7d955f0cf4546923b5f293f21edeb1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743543556-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 1de56a29f2112c23dab03cf2c9e87a473ae42f0636dae8dee944ca241b0ad09f
MD5 2647c73576a2f6cfadda24491553fb4c
BLAKE2b-256 fa5a050acf2413964251456a39a20018d4dab6e775715d62c4c9f02aa29c3be3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743543556-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fd9d3efaed242d135f2252d9e3930379220162c20d18daea04f1914ff999de96
MD5 5a4244486bcc36d796de69b5ac235c4b
BLAKE2b-256 3d031c1a58e8aaaabc060e4d2325bab7850e7b062c553e0d7f18de16bbae2ac8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743543556-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c340c706cc5ab087dfd85c932d95c7e1813ad5df2de6d6bf2d43c9c1019c4e63
MD5 a2c8c841c5a4d74e6319632adab8309b
BLAKE2b-256 667454a8ef9e72a33065ac7fa068c1c3215b3a101a425d443c96f84c3c9c3fac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743543556-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4c8294b572d9b2e3a40e610d5e8ff816196f5f5b6ef2e8b2dc81fc66997b8154
MD5 ec497e29ce37e5bf4f28ec16b3beecfa
BLAKE2b-256 7448877054ef0b61e8ab4358e25811281c47542d86bb548bfee9585c81f9eb0d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743543556-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 6e87f6f869b2d2cb5878d47dedb4eb42b2837743cf90ac0861a580bc440b8977
MD5 858d9fb0dafc2dd8f027a72fd9cfc296
BLAKE2b-256 397518e868a2f204ceb96f8d3e33445391fe9799820b44ddc7609dd6f1ff1306

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743543556-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 66203f7ba3d6b58c3b2499b2aaaf59812535d9fa9aa6f4794ba5b2ae1f417b5c
MD5 f21062f9153532e0accfa1df478ebf8d
BLAKE2b-256 a21eec3026cd4b010e545db891cc305d638dea6290573909487ac8ea471b8fc2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743543556-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4722493e3f693d56ced38cb4604037b4ac1f0d70c1a489a2bca3478f525b63cc
MD5 28482a706ab044abb29150ce839632cf
BLAKE2b-256 f6a162da6d383edd1aac5269d87cd6588dac4f54e069ccd3b5bf423595c3d4b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743543556-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c9cfab515aed827765e132e8e8eed2bde585644a4b87db9ca025c48e8fbe83ed
MD5 f54933111b508e05e530997fce0b7a30
BLAKE2b-256 b50f59b3d954133578a0e5ebc2ed4e7390e31fc4bed0e96f79398d10514cef7e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743543556-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 21082098ca8cc499d929483bae238f9dbd1e1676080b13c051b32e8b41812aba
MD5 7c1de65e106d882561104795f852a11e
BLAKE2b-256 2e70be71c38b9e51369b40badfb10f79dd4e9c9dd8cd0ac840e8cf55749ad464

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743543556-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 f81a05fafb375a9bbaf3db7fa7f3d7d05d0b33b071f9bd2d5aa05bfab85717f4
MD5 5b978167d15b1be8140f45d93e13df16
BLAKE2b-256 8ae1d6fdd5f04936c8f3268cf6c1c74abba2e99be38214cf9be852aef529b7c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743543556-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 b1e3b29ab7d5cb96f5a440c397913270545f67c26a86ce87d97bbdfa2a00ecf3
MD5 35b62903317fcb86e76a070fb8bb5cfe
BLAKE2b-256 a2dc0725f36e9f67371a94bcd9d61e0fb595119af0adf5c5c21d106cb786f682

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743543556-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1f3bf12c64c54a7583689a71b6eb51793e2fdaef5ccf65409b45ac734184057e
MD5 6211f7ffc2126ce0f4f4c75a823ae0f8
BLAKE2b-256 6d25cfe41855c548735dabcc6bac3b8113354df2785697721038bfc176632425

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743543556-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b36f802e983ba22373a003415afd36dc219b2487b6e830e7d313dd06667661a6
MD5 7bc12a1183f4d66c335ece00f30c3462
BLAKE2b-256 6af3111dc000b8e33dd48349161d8c6ae8de5b1b5f68d1237e9f938ab2de5d8a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.15.dev1743543556-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d20f1136cc66462856463517b5217e70d257f2e98258d75a9f1d2673daaf2061
MD5 10294200be1675c1de4a2ef1fb6b9f24
BLAKE2b-256 563c483715207ffa484eda568790cf05fc0093267ddc11ec37b37687e054a3a9

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