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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

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

Uploaded CPython 3.8macOS 10.9+ x86-64

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

Uploaded CPython 3.7mWindows x86-64

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

Uploaded CPython 3.7mWindows x86

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

Uploaded CPython 3.7mmacOS 10.9+ x86-64

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

Uploaded CPython 3.6mWindows x86-64

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

Uploaded CPython 3.6mWindows x86

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

File metadata

  • Download URL: stim-1.16.dev1750923543.tar.gz
  • Upload date:
  • Size: 854.0 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.dev1750923543.tar.gz
Algorithm Hash digest
SHA256 6264c6f4e2332e64fdee6164201cfc83451a2f3d01e5b8554ec77ad64e286ff6
MD5 ff5b1c7a546c3a10563ab538975401ef
BLAKE2b-256 8cd22c29e2357f9d49e8927f7f6324e854aaadb8cccc4ed5d1ed7bd33d5a5277

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1750923543-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7011e79af56d81754e02f2b1decb77acb990aceb90256465a4339ae5f12af523
MD5 38aed879883dc621b938efac07ec96f4
BLAKE2b-256 4d2dfacc1f455a896ba0c1d7cd74d545fda0060781580f59c94eb29f3a2c1ab3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1750923543-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b2227923ac3b7bfeb17e7afed02d6fac994dff2f9647e656c27962045faab7f2
MD5 286c53943c1d52ba244562e3e0779f28
BLAKE2b-256 6a41003b6de4f16b7a7dc890436963fa9b854fdf5d27cfdfd9eae674adfa33ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1750923543-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 bf09f955c635f408dd1afa6f5e3fea86c9d272ea0cab0bfa4f1f6556b16765f7
MD5 114e2c1348b30f35a8e56d2d4f5124d6
BLAKE2b-256 6900e249a8c803701a05518cc8d61a562640fecf2484bb67f9aa539a3f0ce4cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1750923543-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 fe6d04c216386aabb2ea475609e2cfb67f2195a7cf2d38a3d127ab2671bed2e5
MD5 1315818f4cc07924687ea47a8783d1fd
BLAKE2b-256 633d5df35a8aac7a689d12cb4d81477dbb08fdaaac902d094b7a5b12525a3fda

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1750923543-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d3f665561470144264f4aea482d3b56138766413f4655314984a86fa678c094a
MD5 202c43918f73f751510cd9259bd6e018
BLAKE2b-256 da091f6876abb916546ef1b3251e13834d658bbaf57ebef19a29cc578b4b5a21

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1750923543-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b6b6a5e1a2328aa34fa169397de081ec9414c9afcf769752e6983869e560afd5
MD5 5a819fee9a41b6f3bdd0eb56d5c89e70
BLAKE2b-256 0d5d1dbe9f9aae9c23259be2399adefa91e51fb9e23019bd3dd5669f53560f9b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1750923543-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 98b0ae347788f52ab4e0ef2b539b656ab487098aca70cc8c25b2611ce7a824c8
MD5 6aa9546b2607830a269332b70a1e5d35
BLAKE2b-256 e0c1b7131a08bb11de55b6c194cbfa9ab60f86c417ba5b6ddbaf9afaed0a6cda

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1750923543-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 5bb83b8f35effbbd0adc4e2fe7276e602da8bb64b584be942c4cde38c148e251
MD5 ccc1712c37c08d68e2574b101933d883
BLAKE2b-256 2dd451b7befbaba2c4a6f5d2b9b4f5fae2b446b83ddf68b51732e97f9d74aa7c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1750923543-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fccfff3b38a4c5b4d60aad41736d8f6f22c3422d90c4fdccec4f458ec6eef45e
MD5 92331f1dd242a0ff0308e5fb55b0a894
BLAKE2b-256 84159af207ee9ea1e44cfe5a422f694ae89bda909890b648f16cdb827ea5dc90

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1750923543-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a57f32f736ce5ab4874d47700692b48bdd84177e91ba4f3b0d461a771cf60d8c
MD5 08cf917bb3a931b841571ad1c2730b1c
BLAKE2b-256 f78a57426ce3da6c5314541c638235547c5140ff17ef58dd7e1b97730127b7d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1750923543-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2bea4504c9522d3bb37d6e00f957bfeb64f2a28415d970876a8ef49da7adc342
MD5 dad7de8ae6c85a6e9d7d0c4683c92631
BLAKE2b-256 c838c78cbfdecc3d802871b94abc640b0b049472c5e48fbb2393db3657f60e1f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1750923543-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 032d692abd774d419d6891fa82ec08b97d07b86831ac63b45717b1e625f827af
MD5 56d3769c67e1f7347514d88480aea0f6
BLAKE2b-256 90847737ccf36408de9a293a69f2eb2caf9f2c095d3979e99430a3343286a970

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1750923543-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7797c130e4673b7afb320838d2844b04da27abd3a1b3638875fe3d28e797a366
MD5 d60286c293a6aeef628acf7e00063ece
BLAKE2b-256 477757e98ce50a6de2a32e7d345ab263580a06878a008853e45b0c9372b0cea4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1750923543-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5e0530e768eb60b14a83bb54c5109c410b586d9665417288c0ffa6429372a293
MD5 b62981617d512cc6612fa8aece248686
BLAKE2b-256 bf357b84a561c89d73a34c1a458f54c1b22c37a9ccd0be7b4515d512482c792d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1750923543-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6217f41a2dc9df962d571e3f5aebbaa4e11a5f75f0f16043b9e4e31c72d17369
MD5 aa9ad8dbfae12a2185f4e76611cf808b
BLAKE2b-256 fcb928ba3ad82e185f7b5a362e57d6bac2860dd28098ed38da32954697a6e928

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1750923543-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 c3c4ca253af6a99b7b26258c68511e1b66d1cbed74d21081745f88d01ac8a4e2
MD5 276b4affcf8049a022411733daccb0fa
BLAKE2b-256 190485e4341b81da6b9b41def322e79fad634ca26dc64ce0785dc0fff11eb9f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1750923543-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8dc8f8f08a028755f4f86afdb2941e597e8c72a2e84f89c19c0f0c7c712874d2
MD5 565d01b8e89cebfb904ca44197229fde
BLAKE2b-256 3ff7f3a4c535891ab295133fd83c08bfa3a17e8b8bd99a6ff1671e160ce362a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1750923543-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 74e3492d719d785ab92130f71b6962d2cd9eb47cc79a2f97341cf2958cef20ec
MD5 4faf4147a03dd9e56fc84d3f5499da6c
BLAKE2b-256 be570fddb5876251ac8df6a22cfabfbcb95351b7c5cd4942f59054b4322e254a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1750923543-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6a5076a0c66061d976d7ab1bff08e5b9f532d024fb72548b49a73ff36ef0a9a3
MD5 2c6abd2ddf83e87b5ced75bd7b49769f
BLAKE2b-256 3789f586d185a79a5a34d5cf466f58497897ebd3762b35e7bcab90c8affb687d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1750923543-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 2dd6eab841ce9252e10af226293dbfe2d099ac84ad198d5aad2df4a7c1a4cd6a
MD5 61ca9fa6edc1019a26d77ec29d255c65
BLAKE2b-256 961474e31a5abf1638912762d781a915360893a6596d138127bf5fad9e10307f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1750923543-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 efc1ad0e399e473778a31d41f849bdf4e95d2ca439a59179af07ab6f5230ee2a
MD5 85260602e52203436eead5a490168a00
BLAKE2b-256 b0597a023ebfb37e908827fbb4a178c0b1949d9eb8d2953eecad37558aa38eb5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1750923543-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 87a1ea3a2b5ae0971649f33aedca35d1b0baabeb762ec30d78adaa15383d2236
MD5 bfc2acbacacc50c21d400d4f3dca2e8f
BLAKE2b-256 195dd86bb601b823d4dfc04ef37d8abc83fa10579ccbcbf016bd0515251af1d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1750923543-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5e6e572a34e936050a0347a6efb094447fece1e11057e9f4f00ce05b1ce77ed6
MD5 d80fc9f8f53c9d9697df53e0cd760c65
BLAKE2b-256 e284e563e861eb1274757c333c731197a056e5e210601b726ddea014a2ac64dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1750923543-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 98003fdefff74d01127663f263ca07eeb2d6c7ed772d2f3f8ed9aa572b63a68c
MD5 4a78f52377199a57743df5903f8a9480
BLAKE2b-256 b33627ab7323ce46cac9e8a75bf62fb2056803cdfbd2477af78d5ef683f0a681

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1750923543-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 abcf8e93cf1f48e2d8884ea86442e5223aa1653f0897681affe9c7e56afa2768
MD5 1fe0b0cde503f1d3ec452f2dd35ea894
BLAKE2b-256 e570ab9a3644a44eba49233ef7364f81dead8642697651e071bd8e17a6176e6e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1750923543-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4b73c7f09fe93a3746c0363e6db22f2a808130ee47004e5300c4692339b9b3f8
MD5 84834351ef280a8ebbd19576a9f2d340
BLAKE2b-256 ef9f11d0bb8e85469beb53b52ab8479e5b896cfce1f156f16f3b5caec7628c5d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1750923543-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 183c38efd60ad6a9c03a9cf7a3a6c5baa92c167dce66ae9cf18c8f551cd1955f
MD5 c4a64fd9e2656a59617209ebcc9b6afb
BLAKE2b-256 ecd629f0679828f21c5631dc07ae543f8e82437d2179e88a2d7a68c62f35fc49

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1750923543-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4b5d2022b536beaef8eed8a1dc7941dc0f5342fe7fe410ab481d417456dd4321
MD5 e035f8e0e31aeb42e6d804fd2c502eae
BLAKE2b-256 49cfec992aa6673191e8c40f4e8b839c8998f7fabc31219b4cfd9f874a2f210b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1750923543-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 ab14df5bcafae4224a6a964112b76f705048019652ed7c17dbd8f48c172ba7b7
MD5 63639c03f3457cf15d3b8b3c00c0b944
BLAKE2b-256 f9c05702c4b18c950eb91950f9f5a78a40bde3c6564a155d6c12de7e488b2cbc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1750923543-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 634cf9e513f8beb39a9ab0ac686b6d1a2f5a0a997c0589666a36095ae57847f9
MD5 5761049eeedb1cae81f7b78459bbf22a
BLAKE2b-256 390b3b624c7a19405b991cf655cdc69637287817f739a2b336d7d6a7729200ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1750923543-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e354d8b1044c8bca884490e01efe1c96d35cca0f62fd3c4e6d55700732c32a69
MD5 62d331007eedc694df3c28888a76771d
BLAKE2b-256 2c7fc575a74915ef82593485286da2879ec1fa418eecceca7e5b0184fb865e24

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1750923543-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 34ebda079e0b7d366cbee5a05f08cb613bec4af7ef7203c7a1c8dab77594e6b0
MD5 c9329ebac876c763f4e595cce1135aeb
BLAKE2b-256 07f7d4316b909899c8fc338cd19766e9d7c163dde4a28dbc2a53dc442cba8e72

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1750923543-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c452acaaaea0fd0b6a40162aae1fae6c71a3d21c7e0b1d459eafc63b749f5918
MD5 edb59d4e9f5f7ce1576717ad1b560a61
BLAKE2b-256 31de9b53625254f0ff0571319759fcbb1141ba43894a4a37e3d2a01e8c81eae5

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