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.dev1757476334.tar.gz (855.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.dev1757476334-cp313-cp313-win_amd64.whl (2.7 MB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

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

Uploaded CPython 3.8macOS 10.9+ x86-64

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

Uploaded CPython 3.7mWindows x86-64

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

Uploaded CPython 3.7mWindows x86

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

Uploaded CPython 3.7mmacOS 10.9+ x86-64

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

Uploaded CPython 3.6mWindows x86-64

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

Uploaded CPython 3.6mWindows x86

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

File metadata

  • Download URL: stim-1.16.dev1757476334.tar.gz
  • Upload date:
  • Size: 855.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.dev1757476334.tar.gz
Algorithm Hash digest
SHA256 e9536b4624f87e25da3954e2484c560b27a0141566a0f38d7c3a226532b9d98d
MD5 43b3977342dcaa21e6cff273ad22cc56
BLAKE2b-256 696c2218f0d2e57abf5a60cf9d746be115719dc68f10d849c2c07bd4e1fec011

See more details on using hashes here.

File details

Details for the file stim-1.16.dev1757476334-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for stim-1.16.dev1757476334-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 f0ff72f9363795b13b51fe88fff7b4b19299bf5a20f5d2e1317beb7ad99080de
MD5 7b8ff37ec1922d60e1a220a342a22e4b
BLAKE2b-256 dc9e3acf0a3dc8cfdfb3ab85af01b6550ad907ebfedaf0522e16015f0626d12c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1757476334-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4739ae899e25d3c0b197aa2b5851e42abca462c007775db80f371b739025f933
MD5 a47e1c02c28f81059659991ece9c301a
BLAKE2b-256 992d597d47f95b56b9d87421f81c105d653435f694d71319f1b84181bb0dfd8c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1757476334-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8a0958422406999b1d45ba8fd5991cae84f7d410af946c5e1af45e48815507d4
MD5 fea590e8c4e058f7bda6f816b40b6f01
BLAKE2b-256 c243aa61b79fda78b5e3ad9924057b2900a072e471d5e0ad88a1b46af3499cb6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1757476334-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 efb785a4f2d2ed0ff304875cfca008f7b7da322f8351a9b4d502b21e5ebeacc7
MD5 c1ba093bab90bb07288fea9f5213b62c
BLAKE2b-256 8d89beefb6deb0b81b355a2c6871187edf73393b0ea39996d7ebec2c694cc470

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1757476334-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 5510dfbd94602ea82211f0b5f727ccd00b33252ee6a883ad8f611001ed7ed92d
MD5 d3a4c4485a155b03c040e1295b647770
BLAKE2b-256 4923d5a87e698e7876ae0ab1d1258be4ecb2c1f1af830befb99d79f547373f7f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1757476334-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7e8575935a24c4133d03845c2266d09a995e08176a5691e369fc16b999a73fc5
MD5 a679a7ab6fd9b59fdd2119ed77ecd043
BLAKE2b-256 83d1cdc6252a82c88da55b02789edefaddcf345e0d2d32db34f058365d7582e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1757476334-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bad530556579fa7144820d7410c43df1d43b45845255796a80d4ba230d7024a4
MD5 05dc26462d42a9d794f4ce6ccb5d6d07
BLAKE2b-256 ad8fdae70533296d3bf06653b42a2a321d7dc3c6bfdfbed59258e1b031cab085

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1757476334-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 b9d2792c432c4813e2348101d230c686d6fc988c235f7c78c4136cb981beae08
MD5 0410fe3cd68160759cc24fcbb260a0ce
BLAKE2b-256 ed392d195338472996183a3bb4839e57f5b01dd7c5ce722f57efea6bc43d8d6f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1757476334-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 f0939c60aa58c3976f741ec043b49fc8c35a899a80a85396a2a9d33a729c4f49
MD5 0c46687d63a22c7b99d8081598bc9109
BLAKE2b-256 6cd1ca619b53e88c94ef1bbc1edd099bf4601a6548c87638006da96cfae9297f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1757476334-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 304c73be3a657546a0abe1f8bbb51bbed02f049cf11b89e022dcb87afd80c47e
MD5 a041994b2b8c5e48d57806b5d3db5dd8
BLAKE2b-256 0ea852ece733862e6e9898121de9d6e5f6a8de7de429bc59ac2e53096d6978a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1757476334-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 825ec6c5de1233a9a14bc2934f0f5233062e4cb3c76b7182ac640c7928d955f0
MD5 509fc6634b9135747fa0585eb7937d72
BLAKE2b-256 9c60c7e920ee31cdf09b944dceecf3188b0c16677d575dc931e82c9e69f9706b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1757476334-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 224aaa1e664898ce0bb76498cf9e4b8efa9c8aec30e982c8ae0165992c73fde5
MD5 8e543b06efecfe8c21bc3408f3238889
BLAKE2b-256 1d42df5124d0cb800d25553aa66786453fc1ed896d6c9ff728370faca0f5b60e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1757476334-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e3efa9f5a0a07a4a7dd4fea1ab2212ecf269f55d27875ed987783191b025364a
MD5 e9cb83a955c6d5886a7f9e81311440d7
BLAKE2b-256 88745c31cab774236994f73c914461d953cfd3572dc110811c8c41d506c40a13

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1757476334-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f731ea572bee27982bbb69cef7128e27f95b102ea948d86538173c337832ab0e
MD5 ad0b60a9b6bbe01daf97d1080a6e9561
BLAKE2b-256 619e5ec4e84ff398949f920ac44b765a1057be31a1bb26c5662dd20f61dae3d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1757476334-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bbe423e6b970891fd43edc781cc7dcd9cee9b253d561ce883819bc6f089e4de5
MD5 734c91f6abedf45bca58d72758cfc9d0
BLAKE2b-256 bba35587df460cf387ab706b9c8fec836952ffbc705619f87e024cf5a8c44d42

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1757476334-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c3547f4c64b6a6d6948adab0d5ff91c9a2cd174a85b286a4db4edb4d11848cfa
MD5 5a0ed2a93d39bfda67aa16f8200ec1bf
BLAKE2b-256 7814117d2c71a85388c4297f5b0345cd72f170a7445b135cb3e4c4f84070ab67

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1757476334-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 4104531e071a8dba31fa2c705964e0590b92079cd49515a07baaf6dbd529d946
MD5 024f28ec0b02fe45a53d69c228f53b53
BLAKE2b-256 9cd7aae3c5e889433222fecce84ed88c468b834289cae9489d2cd1443d520505

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1757476334-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 974aab07125b4b84947c3667d020dd3c9452f30362183e8fe1c54af38307e0d9
MD5 b4845b5124c8a42e6b4e6ac5be7507ed
BLAKE2b-256 51525a0861de7b4b27ad91f1d2fd6805e1513054053720d65feb601a9ba47cad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1757476334-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7d1a1dc66debe7a44c41ddad7b1e23ee1a1b8b8495904ed361bec30083a550e0
MD5 87c3404af084e1721437bf5e0645942f
BLAKE2b-256 8e6ca9faa3dc6afc3ac34d6d120254bd1300362a407378f75638812b6aae1841

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1757476334-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d7abeeee9d04836d40ab32c4ecace4203839e12f5250f217a942b927ddef9fea
MD5 0fe29880c7604acfa72af7745d511b1a
BLAKE2b-256 6fc07f2585b278ec12dd5b0be152a620e10f58cabf61b8fc63969ef493169ce2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1757476334-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 1abe25ae24c494181d4ceaa5ea968bb5d6b08a9cf99476ab3397b0306cf7a102
MD5 536ab87e12774e1cbc55701f9ffe47be
BLAKE2b-256 b65e821fe847c05397d5a26ff8d37c80adc3dc82c8ce0f7f87a74226a59c8dec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1757476334-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9450afebbd5037090d79564341cb2b58db1979461f7ea452ce88db39b493bb3a
MD5 c2b6315fca1fb6ebda379b7569c27a15
BLAKE2b-256 50d94964b6b51bec92e3e9eaabf5d3be20118fb138b139288ab99f38e57d2b82

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1757476334-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 438fab91f65408e3ea04c23180b567129d359991c42f2c9fe2b0c0a15d496d1a
MD5 aa146b04996227592c4a016d11bb3e9b
BLAKE2b-256 fb6d9b68acf8e71bb44cc34c44e56877ba8caef243db1e7c90d7c5286761ef2d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1757476334-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b82e80b8e9485081065b4d798406d491cc6190b4d5edc0ab8130a37040cea405
MD5 93a877ec4392a472fd66cbf40e5c7586
BLAKE2b-256 7059bef66f5956d28c12a10fefd7bf05815a20caa22249b63beac4c77134e76d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1757476334-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 8ef15cdd7442d7967b92faf7f498f2e48579881917a578e87ee08a6b4c2dcbc5
MD5 7732b702fd5de82106ae0dd5d095e177
BLAKE2b-256 e15b1c938066eddf7a0306ac07395d784ab7689678fe97e148e23644b42b874e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1757476334-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 a607c2185ca14c6672079b6c4e85dc3d7f7100fbb8518eb0bd97b46fce1f6a6a
MD5 87924942a015a20f396bc98dad2d09c4
BLAKE2b-256 16000b7234873fa5ed26a43d4aa8c2c3baf9b0559828fabfb9d05932db9abb83

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1757476334-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4e4d495ac2d65aa0cdc5ecfc3c4f60089c3779613b529b3a5c78e326b166b26e
MD5 8b010e8371aa749a869a88f77ef77ba2
BLAKE2b-256 f1e6ce0bbafc37b78d86ec4232eefd3019809d6899659c057483a54f4d389434

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1757476334-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8a72cd174e27aa4eed3da91f88b54ed14cfc9667753ee38d736313480644692a
MD5 ddaab1ded085c24ca70648c85372bda9
BLAKE2b-256 07f5dc7577ae10b6227b7a16c7aa888c287acbed253857d394003e2db470206f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1757476334-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3279636e53bc733bf20d1b05e68fe7aee3258d4f4776543ef2b2c5b1ee7bd229
MD5 2888f3ed16569073a8decd34e664eaf7
BLAKE2b-256 92ca4da4a29b96e9d93571a5001935155cd8ba2911fd9fb286aae41faf3e5388

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1757476334-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 747827732f6e40eb124ce131e74c557e088bd5d69b0de3e7c626db622f653e0b
MD5 711241c6f87f3fdcdf81f3f741c45256
BLAKE2b-256 39820ab89af1e8191f1c5178a855350fbfe241fd2322d32df37d96457de14040

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1757476334-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 413ce303548cd085cf08cbcb964026aaa726b894be0f70a01ba854b1958b7a5d
MD5 a9cc900453694ad2e83c0ffcab87b75a
BLAKE2b-256 f7ad83f2f16cc47082b51e2fb08bd9d9b089e21909276a3efe47ab2d3e529aa4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1757476334-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 295050f76ad0c6245e97f23d6674e32a8592250ff20797c5714985329ec14797
MD5 e769fa058d7d5fd525240c642890a094
BLAKE2b-256 7eab65bad7d96be77d5298cf62d650b73b2bb8148b97b602fd89130677ed2e89

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1757476334-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0514238c03d55489a5e3c3b0f64106ed8470796407faacab58c3e1649dad3c90
MD5 8e0858faaaeb77a190ce39771f4d47ff
BLAKE2b-256 7a2c214934d44864c626d3dad24bf6cb4fd3cb4e84cc9acde63b11d1d4cf947e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for stim-1.16.dev1757476334-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a262af99d11231c01e0096a9bb2cdd82a28f98f8a033bff15ee1a81e0705776c
MD5 d01c7fc792908a3e989b92397cc66011
BLAKE2b-256 eafafe43a4576a0fa8a3ae8bc9966e7f333a2b310ff4389ed7ca7a55d6286ba3

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