This release is a pre-release and may not be stable for production use.
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:
- Interactive simulation with
stim.TableauSimulator. - High speed sampling with samplers compiled from
stim.Circuit. - Independent exploration using
stim.Tableauandstim.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)
Release files for stim 1.15.dev1746595831
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| stim-1.15.dev1746595831.tar.gz | 853.5 kB | Details |
Built distributions (wheels)
Total release size: 108.1 MB
Release files / stim-1.15.dev1746595831.tar.gz
| Download URL | stim-1.15.dev1746595831.tar.gz |
|---|---|
| Size | 853.5 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
a8b65a4f11d41b1ffb42126360f182eab7b51f632357c4067fb5e7e6603fce30
|
|
BLAKE2b-256 checksum How to use checksums |
c3e2508ca1a53659f4a612efd1b69bd3e00ed4e33af7924ca37e02b927a1ed2b
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.12.9
|
Release files / stim-1.15.dev1746595831-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | stim-1.15.dev1746595831-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl |
|---|---|
| Size | 5.0 MB |
| Tags | CPython 3.13 Linux glibc 2.17+ x86-64 |
|
SHA-256 checksum How to use checksums |
6875a866f6315063094cac18a7b47ecacc5612db039f30ec66c042a9d705cf57
|
|
BLAKE2b-256 checksum How to use checksums |
de2eba39b0519d7398fe255c6090e192bc02d9535da800561e7464de10b1097b
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.12.9
|
Release files / stim-1.15.dev1746595831-cp313-cp313-macosx_11_0_arm64.whl
| Download URL | stim-1.15.dev1746595831-cp313-cp313-macosx_11_0_arm64.whl |
|---|---|
| Size | 1.8 MB |
| Tags | CPython 3.13 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
518703f5d11f88c8eda6a0ad30c9a29779806e083dc5c1696e71e0fe591bf2ac
|
|
BLAKE2b-256 checksum How to use checksums |
b6f9e64423a329dbe1de2be3862e32cfa9017e90ce2c68b1960d896334c0142d
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.12.9
|
Release files / stim-1.15.dev1746595831-cp313-cp313-macosx_10_13_x86_64.whl
| Download URL | stim-1.15.dev1746595831-cp313-cp313-macosx_10_13_x86_64.whl |
|---|---|
| Size | 2.0 MB |
| Tags | CPython 3.13 macOS 10.13+ x86-64 |
|
SHA-256 checksum How to use checksums |
48a9faaad26a68c236b8bd7828b54ab340bbc20e7b18d544bda827a71d1c7afe
|
|
BLAKE2b-256 checksum How to use checksums |
cb2ef1dd5022488adeb4406ad198400883c8d40768b71c1ff1f3a9516de52bc6
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.12.9
|
Release files / stim-1.15.dev1746595831-cp312-cp312-win_amd64.whl
| Download URL | stim-1.15.dev1746595831-cp312-cp312-win_amd64.whl |
|---|---|
| Size | 2.6 MB |
| Tags | CPython 3.12 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
781d45b1bf69f6fb13fa2030560e108cf3f667dc4a8efdb857d753d04a4ba910
|
|
BLAKE2b-256 checksum How to use checksums |
c10a470eb30d2b847aee2db2709329cf1233b8a72e854771f77b6a0d4c45e73f
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.12.9
|
Release files / stim-1.15.dev1746595831-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | stim-1.15.dev1746595831-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl |
|---|---|
| Size | 5.0 MB |
| Tags | CPython 3.12 Linux glibc 2.17+ x86-64 |
|
SHA-256 checksum How to use checksums |
ca52fec0533f094f411b1934e7eac07db38270b98ffeb843ce1a7ae5c53418ce
|
|
BLAKE2b-256 checksum How to use checksums |
ea835b9dae2850e45137a509fea36aa359b2e619e9a5f5ae3ab7746a5c910db0
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.12.9
|
Release files / stim-1.15.dev1746595831-cp312-cp312-macosx_11_0_arm64.whl
| Download URL | stim-1.15.dev1746595831-cp312-cp312-macosx_11_0_arm64.whl |
|---|---|
| Size | 1.8 MB |
| Tags | CPython 3.12 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
11b917af00eb7bae8ff7a87ed95fb16713237d7d0001b21042f05056223ed08c
|
|
BLAKE2b-256 checksum How to use checksums |
11c6a14534c26b19bcf44cca7df3f878ba2e19f09e6c003f9137faa781fdcc71
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.12.9
|
Release files / stim-1.15.dev1746595831-cp312-cp312-macosx_10_13_x86_64.whl
| Download URL | stim-1.15.dev1746595831-cp312-cp312-macosx_10_13_x86_64.whl |
|---|---|
| Size | 2.0 MB |
| Tags | CPython 3.12 macOS 10.13+ x86-64 |
|
SHA-256 checksum How to use checksums |
2d1d0455610c9f93ca84ae3741c61fd55eae43a18e847e4b5a3ad35ed90ec865
|
|
BLAKE2b-256 checksum How to use checksums |
5b9102d7f84479cae92a2ea9a0ea57f6eec7f7b38002a5537b5cbde2ad6d0b87
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.12.9
|
Release files / stim-1.15.dev1746595831-cp311-cp311-win_amd64.whl
| Download URL | stim-1.15.dev1746595831-cp311-cp311-win_amd64.whl |
|---|---|
| Size | 2.6 MB |
| Tags | CPython 3.11 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
fba2109fb6c8d5628b34b38d955ef53f52c6953d0c8ce529c66b2c3ab11ab1a0
|
|
BLAKE2b-256 checksum How to use checksums |
dd9225d7dde0eb01dc12fada3530cb41f1982825ae8285208d4267f1ece76c46
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.12.9
|
Release files / stim-1.15.dev1746595831-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | stim-1.15.dev1746595831-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl |
|---|---|
| Size | 5.0 MB |
| Tags | CPython 3.11 Linux glibc 2.17+ x86-64 |
|
SHA-256 checksum How to use checksums |
49cb7a428238667bee846cc736386ff3c07a48ec50f8fa0231433ac5fd7b4669
|
|
BLAKE2b-256 checksum How to use checksums |
7246a0e720b5071f300f336fc877964e1e8fff4d96bdc62afaa47fb0f95339d4
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.12.9
|
Release files / stim-1.15.dev1746595831-cp311-cp311-macosx_11_0_arm64.whl
| Download URL | stim-1.15.dev1746595831-cp311-cp311-macosx_11_0_arm64.whl |
|---|---|
| Size | 1.8 MB |
| Tags | CPython 3.11 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
7205b11e614627a111a763ae5ff7370efcd11b843e88a18f8df5988f9bda2f16
|
|
BLAKE2b-256 checksum How to use checksums |
2e017999b70257efce45dfe08462530cec04883f1ce7d366184ce442c85cb65d
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.12.9
|
Release files / stim-1.15.dev1746595831-cp311-cp311-macosx_10_9_x86_64.whl
| Download URL | stim-1.15.dev1746595831-cp311-cp311-macosx_10_9_x86_64.whl |
|---|---|
| Size | 2.0 MB |
| Tags | CPython 3.11 macOS 10.9+ x86-64 |
|
SHA-256 checksum How to use checksums |
66075a2990004083568011a66b25e3692ebf5beab92247b27214faf7a6aa301e
|
|
BLAKE2b-256 checksum How to use checksums |
8da80cb5ed5132a633bf3faa6096502380c52801d5e1019a5953baba13674141
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.12.9
|
Release files / stim-1.15.dev1746595831-cp310-cp310-win_amd64.whl
| Download URL | stim-1.15.dev1746595831-cp310-cp310-win_amd64.whl |
|---|---|
| Size | 2.6 MB |
| Tags | CPython 3.10 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
75ba9929de54a7ad8997cf962e7eac0464f475f2216c50bdae6d270465670c6e
|
|
BLAKE2b-256 checksum How to use checksums |
d9728a92fd52891ca505babd903abf6256e3168ead23e921fb140516be65fa44
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.12.9
|
Release files / stim-1.15.dev1746595831-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | stim-1.15.dev1746595831-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl |
|---|---|
| Size | 5.0 MB |
| Tags | CPython 3.10 Linux glibc 2.17+ x86-64 |
|
SHA-256 checksum How to use checksums |
70fd38e9df1f5e06820bfa74c22f6e4ff7215451330cfe2f3f0e6a823761cb62
|
|
BLAKE2b-256 checksum How to use checksums |
0db1bce2d3805e59a3bfd55d990d8606f1d4ffb5db68671381b80ea3e4438352
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.12.9
|
Release files / stim-1.15.dev1746595831-cp310-cp310-macosx_11_0_arm64.whl
| Download URL | stim-1.15.dev1746595831-cp310-cp310-macosx_11_0_arm64.whl |
|---|---|
| Size | 1.8 MB |
| Tags | CPython 3.10 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
e0ca04d8afcfa8bd10be4923de2a71b860ae71d7bf1c70f25502dc85185676e5
|
|
BLAKE2b-256 checksum How to use checksums |
a0e20397639dd7b3f1c4306dfa057b693337d39ff4fbdaf58f8d7170feeed597
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.12.9
|
Release files / stim-1.15.dev1746595831-cp310-cp310-macosx_10_9_x86_64.whl
| Download URL | stim-1.15.dev1746595831-cp310-cp310-macosx_10_9_x86_64.whl |
|---|---|
| Size | 2.0 MB |
| Tags | CPython 3.10 macOS 10.9+ x86-64 |
|
SHA-256 checksum How to use checksums |
05db20f5bb17ca18674f06eb6624dbffdcd0d8d55910c38e4a7febbbbd29a666
|
|
BLAKE2b-256 checksum How to use checksums |
2c2dcbd529252598ecde9d5f20ef05ea8705623b6ca12993b7defde195d56143
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.12.9
|
Release files / stim-1.15.dev1746595831-cp39-cp39-win_amd64.whl
| Download URL | stim-1.15.dev1746595831-cp39-cp39-win_amd64.whl |
|---|---|
| Size | 2.7 MB |
| Tags | CPython 3.9 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
d10599583eca91366112aa2c0f3384a1edbb736bfc94441d7148e18da95ea1df
|
|
BLAKE2b-256 checksum How to use checksums |
469a6aafc2467e8bbf2ee3a2e584751826a25e64d5fa25110b5964907b89b075
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.12.9
|
Release files / stim-1.15.dev1746595831-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | stim-1.15.dev1746595831-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl |
|---|---|
| Size | 5.0 MB |
| Tags | CPython 3.9 Linux glibc 2.17+ x86-64 |
|
SHA-256 checksum How to use checksums |
65d84453bc02ea975aaab36a4ce62ba19ae45a3922e4ca44aeaa79e898b35450
|
|
BLAKE2b-256 checksum How to use checksums |
6977ae3e805ac04b0c4e3188f3fa4763530ef38ad47f7664437392e1dd334a76
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.12.9
|
Release files / stim-1.15.dev1746595831-cp39-cp39-macosx_11_0_arm64.whl
| Download URL | stim-1.15.dev1746595831-cp39-cp39-macosx_11_0_arm64.whl |
|---|---|
| Size | 1.8 MB |
| Tags | CPython 3.9 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
978ad02c1a1504fe42f22e14daa667c9837a0b1f96ac554ec7a03db93b98db5b
|
|
BLAKE2b-256 checksum How to use checksums |
368d52e267947ba585973debbf8e8e8d840159639e6ff504a17f3f695946c4b2
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.12.9
|
Release files / stim-1.15.dev1746595831-cp39-cp39-macosx_10_9_x86_64.whl
| Download URL | stim-1.15.dev1746595831-cp39-cp39-macosx_10_9_x86_64.whl |
|---|---|
| Size | 2.0 MB |
| Tags | CPython 3.9 macOS 10.9+ x86-64 |
|
SHA-256 checksum How to use checksums |
ed9305b16e20d88cef03ab81d21ab34289b674ac8b7fd88cf302a2b4b5bf0666
|
|
BLAKE2b-256 checksum How to use checksums |
1a805a0a33a7ea0c0de3b4e0f811f3a601b65613b8975bce8c2762d216299b29
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.12.9
|
Release files / stim-1.15.dev1746595831-cp38-cp38-win_amd64.whl
| Download URL | stim-1.15.dev1746595831-cp38-cp38-win_amd64.whl |
|---|---|
| Size | 2.6 MB |
| Tags | CPython 3.8 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
3215eb51142d1ba05f56bde867a4d6a3a7755d585580c75d8cb6e44d7a351c34
|
|
BLAKE2b-256 checksum How to use checksums |
702ef46361a4586afb68b68104ecd4c235b9f237977f2def24dec6ef66f7d6aa
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.12.9
|
Release files / stim-1.15.dev1746595831-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | stim-1.15.dev1746595831-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl |
|---|---|
| Size | 5.0 MB |
| Tags | CPython 3.8 Linux glibc 2.17+ x86-64 |
|
SHA-256 checksum How to use checksums |
61f2e542ca2431b15b79523f7962233f2d9614e994f01d7022104936b9a0c510
|
|
BLAKE2b-256 checksum How to use checksums |
96bd9be4364322bf5e78b7e57ab52efbbf56fb38c3cd851a3c075669e9c8f525
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.12.9
|
Release files / stim-1.15.dev1746595831-cp38-cp38-macosx_11_0_arm64.whl
| Download URL | stim-1.15.dev1746595831-cp38-cp38-macosx_11_0_arm64.whl |
|---|---|
| Size | 3.5 MB |
| Tags | CPython 3.8 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
c1501be87bda318224b939fba5c4c770c5fe05c78e9b896a6bb71d2906890873
|
|
BLAKE2b-256 checksum How to use checksums |
b7b8baa3127dc6dc2a8e5e3466eec5dec76b86c4e9b6873b01f86d397c6367c0
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.12.9
|
Release files / stim-1.15.dev1746595831-cp38-cp38-macosx_10_9_x86_64.whl
| Download URL | stim-1.15.dev1746595831-cp38-cp38-macosx_10_9_x86_64.whl |
|---|---|
| Size | 3.8 MB |
| Tags | CPython 3.8 macOS 10.9+ x86-64 |
|
SHA-256 checksum How to use checksums |
5f6b757297d1bb0f59a5362b96f42f4f085aa80c5394fde61371f18fffee177c
|
|
BLAKE2b-256 checksum How to use checksums |
879c62b8c551df1a89acbde3100c438103a8471a880033e272bebc034160a3df
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.12.9
|
Release files / stim-1.15.dev1746595831-cp37-cp37m-win_amd64.whl
| Download URL | stim-1.15.dev1746595831-cp37-cp37m-win_amd64.whl |
|---|---|
| Size | 2.6 MB |
| Tags | CPython 3.7 CPython 3.7 pymalloc Windows x86-64 |
|
SHA-256 checksum How to use checksums |
27c2566bbcf35da161ffba6ae5681b7da3cdb3085ec4c0120b316b0024bf9556
|
|
BLAKE2b-256 checksum How to use checksums |
7be682e2d10cfa19da579a9137d78be048297d17921bc562c1a400f4c4b07812
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.12.9
|
Release files / stim-1.15.dev1746595831-cp37-cp37m-win32.whl
| Download URL | stim-1.15.dev1746595831-cp37-cp37m-win32.whl |
|---|---|
| Size | 2.4 MB |
| Tags | CPython 3.7 CPython 3.7 pymalloc Windows x86-32 |
|
SHA-256 checksum How to use checksums |
68ffe845484583a1d379520f6a62aa863eb8771f949c466ef9ea2f26d8560a01
|
|
BLAKE2b-256 checksum How to use checksums |
489cadd7dc090727b65aa9c5546bb4d6426b291cebc20556ec3c0d284bcfd613
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.12.9
|
Release files / stim-1.15.dev1746595831-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | stim-1.15.dev1746595831-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl |
|---|---|
| Size | 5.0 MB |
| Tags | CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-64 |
|
SHA-256 checksum How to use checksums |
a74528142128c84c1ee7becab5f60548b5d02761c03e6ea69e3370ceb31a60ce
|
|
BLAKE2b-256 checksum How to use checksums |
79cb4b2c88a9dc143b733e0463fba4630523d9e54c73a89f2ed39b974b50d8e5
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.12.9
|
Release files / stim-1.15.dev1746595831-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
| Download URL | stim-1.15.dev1746595831-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl |
|---|---|
| Size | 5.2 MB |
| Tags | CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-32 |
|
SHA-256 checksum How to use checksums |
7f71f92cb42e1af21a589f9acf52350f776756fb3e2fceaaf089b320f2de58e0
|
|
BLAKE2b-256 checksum How to use checksums |
239ef0b70c6e47ad6e5f5875bd51bfdfa74800865051debdacb71047a34d0320
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.12.9
|
Release files / stim-1.15.dev1746595831-cp37-cp37m-macosx_10_9_x86_64.whl
| Download URL | stim-1.15.dev1746595831-cp37-cp37m-macosx_10_9_x86_64.whl |
|---|---|
| Size | 3.7 MB |
| Tags | CPython 3.7 CPython 3.7 pymalloc macOS 10.9+ x86-64 |
|
SHA-256 checksum How to use checksums |
5e96790954a2c1e42e73fd4a5b96a4d296e21fefc8f582a04deb612e55e37e30
|
|
BLAKE2b-256 checksum How to use checksums |
0c6bc365a5faf882d02baf933566e1a10d9c14e50e75d72f5f72af67a56f7eb2
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.12.9
|
Release files / stim-1.15.dev1746595831-cp36-cp36m-win_amd64.whl
| Download URL | stim-1.15.dev1746595831-cp36-cp36m-win_amd64.whl |
|---|---|
| Size | 2.6 MB |
| Tags | CPython 3.6 CPython 3.6 pymalloc Windows x86-64 |
|
SHA-256 checksum How to use checksums |
733b8f047eddb2d7c6e674682d6c510ce89fe9586bedc5436a4e7d4d239aa950
|
|
BLAKE2b-256 checksum How to use checksums |
9d27e4cd74ab78c540ee31e2ce2415400f23fc8394ac2ce9957781b16d177c45
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.12.9
|
Release files / stim-1.15.dev1746595831-cp36-cp36m-win32.whl
| Download URL | stim-1.15.dev1746595831-cp36-cp36m-win32.whl |
|---|---|
| Size | 2.4 MB |
| Tags | CPython 3.6 CPython 3.6 pymalloc Windows x86-32 |
|
SHA-256 checksum How to use checksums |
dfb7851c76c6cce6a0f142239f5c18e0c46b5678d785e51510a42e15ca3fa3ce
|
|
BLAKE2b-256 checksum How to use checksums |
7c4612971498cb920b262daf7cca5824bca2a748c916aa75ca6681a1b1963782
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.12.9
|
Release files / stim-1.15.dev1746595831-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | stim-1.15.dev1746595831-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl |
|---|---|
| Size | 5.0 MB |
| Tags | CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ x86-64 |
|
SHA-256 checksum How to use checksums |
a0a27ff8b350a7f31e1d8337253d66179d81e5cec0914ccbfc92cd513b418c75
|
|
BLAKE2b-256 checksum How to use checksums |
61adcadc073e24392ed0fd80b1756813032c7995f0851ec20cb9103ba24bba0a
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.12.9
|
Release files / stim-1.15.dev1746595831-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
| Download URL | stim-1.15.dev1746595831-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl |
|---|---|
| Size | 5.2 MB |
| Tags | CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ x86-32 |
|
SHA-256 checksum How to use checksums |
eff1d282345fb8449d12902202e0fc950beb107e79728c828c320ac5e2e25d99
|
|
BLAKE2b-256 checksum How to use checksums |
d302c04a3000ddbbe3e60589424a3137dcdfb82ac80a1081b07ecbe0837e28a6
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.12.9
|
Release files / stim-1.15.dev1746595831-cp36-cp36m-macosx_10_9_x86_64.whl
| Download URL | stim-1.15.dev1746595831-cp36-cp36m-macosx_10_9_x86_64.whl |
|---|---|
| Size | 3.7 MB |
| Tags | CPython 3.6 CPython 3.6 pymalloc macOS 10.9+ x86-64 |
|
SHA-256 checksum How to use checksums |
5e3cc7555d80f4d9a4f8906517f5cb467ab82d5c30300cc507f93a4fb4dba072
|
|
BLAKE2b-256 checksum How to use checksums |
c0894d1c56e736142f668c907a2b1a947bc484c9ac1fc1d54b7521016b069585
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.12.9
|