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.dev1745828296
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.dev1745828296.tar.gz | 853.3 kB | Details |
Built distributions (wheels)
Total release size: 108.1 MB
Release files / stim-1.15.dev1745828296.tar.gz
| Download URL | stim-1.15.dev1745828296.tar.gz |
|---|---|
| Size | 853.3 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
c0a14a108b157b7216331eaf662a31ef035362e98ddc604ca2e5cb71d8002cd2
|
|
BLAKE2b-256 checksum How to use checksums |
b01592bd7e87cbd9c00513e60749a279721117e036f9c6246b5f75aa8650cbed
|
| 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.dev1745828296-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | stim-1.15.dev1745828296-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 |
43edda9fa2fe28dc908661a7b00b09ce5ca2c9552f841903c0635727a38b9a62
|
|
BLAKE2b-256 checksum How to use checksums |
5bb05dbeb52a54a4a303bae4872c7219f4b778c1f081408c347b926af4cc2100
|
| 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.dev1745828296-cp313-cp313-macosx_11_0_arm64.whl
| Download URL | stim-1.15.dev1745828296-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 |
b5f2e69996f4633f7376076a81e910c9584eae6c35d4f049e218197b10e0d354
|
|
BLAKE2b-256 checksum How to use checksums |
047b146dd548b19ac01fdde1029205c6505267d34bd84a58fffdb8712f50782d
|
| 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.dev1745828296-cp313-cp313-macosx_10_13_x86_64.whl
| Download URL | stim-1.15.dev1745828296-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 |
a2cec4f61182ac1c28029693e799fb7a612a2557cd3adb290643e896ce8fd3f1
|
|
BLAKE2b-256 checksum How to use checksums |
050213d160c958f7c66b1f578fff44c37902f1362302a721436acc6e52b0a594
|
| 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.dev1745828296-cp312-cp312-win_amd64.whl
| Download URL | stim-1.15.dev1745828296-cp312-cp312-win_amd64.whl |
|---|---|
| Size | 2.6 MB |
| Tags | CPython 3.12 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
f859f8e8a88299d2b4f2914e924301957b660d9674afd2255d4cf43ff10dc295
|
|
BLAKE2b-256 checksum How to use checksums |
5d6c90edae2faffa7351bc2a6fcdc84b6219d72d2852c55a680237c4b3f3e78b
|
| 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.dev1745828296-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | stim-1.15.dev1745828296-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 |
e31493f26381a96e51171172e28706d5dc8a316f7098cb95989e73d324fab874
|
|
BLAKE2b-256 checksum How to use checksums |
798a024dcb8413ee21c33a6d0f243e43d2f678fe4559a80b9a23c52e222be688
|
| 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.dev1745828296-cp312-cp312-macosx_11_0_arm64.whl
| Download URL | stim-1.15.dev1745828296-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 |
408bc4f2f555c52b6ce1b3cb238ea108a9651574232c8f0da4ea7b0fb1786234
|
|
BLAKE2b-256 checksum How to use checksums |
ee2052f2912ee33834ab6358c46c911c4c1f96f8b2112525594493031d8429a0
|
| 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.dev1745828296-cp312-cp312-macosx_10_13_x86_64.whl
| Download URL | stim-1.15.dev1745828296-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 |
ba0ff04f8873e0c2feef5966157bc82ae93e2d2cd7e98893e3f32bfee66bcefe
|
|
BLAKE2b-256 checksum How to use checksums |
63ebf430c7284f593fd0583f8b09287257a376eb597645bf2d6b90e18c8df895
|
| 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.dev1745828296-cp311-cp311-win_amd64.whl
| Download URL | stim-1.15.dev1745828296-cp311-cp311-win_amd64.whl |
|---|---|
| Size | 2.6 MB |
| Tags | CPython 3.11 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
fa780200649df28b065becd9df3a362b50c6c0fb1b354d919f05e0df0d511fa6
|
|
BLAKE2b-256 checksum How to use checksums |
102dd35a6b97dbde8e9288aebd3c1cd47093bbb42052156203505af6e101aa0c
|
| 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.dev1745828296-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | stim-1.15.dev1745828296-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 |
522767ea98b27e77bfb14513dceb0a1c418cb71de307ca2c45441c5b136a2a68
|
|
BLAKE2b-256 checksum How to use checksums |
188dbaf940f23297fba0c026b09b7e51bf2757d5bb96731df6de1b0b956b7faa
|
| 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.dev1745828296-cp311-cp311-macosx_11_0_arm64.whl
| Download URL | stim-1.15.dev1745828296-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 |
25a81e211d89ab40bef47c0163e72423981ecab042ed79a4c043613b48db0248
|
|
BLAKE2b-256 checksum How to use checksums |
9dddcac76367df39f24ce755aa46d81422c8c60d6d759eb6b9f99d06fb012651
|
| 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.dev1745828296-cp311-cp311-macosx_10_9_x86_64.whl
| Download URL | stim-1.15.dev1745828296-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 |
4902f073bceffa83bcded6770b2f4ba2a4de080374123630f5f24821af494f30
|
|
BLAKE2b-256 checksum How to use checksums |
1e5d6e43ba0962659e7eeadc15c5d96f1f411b0bfa36a157b1cbee520e9ca5ec
|
| 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.dev1745828296-cp310-cp310-win_amd64.whl
| Download URL | stim-1.15.dev1745828296-cp310-cp310-win_amd64.whl |
|---|---|
| Size | 2.6 MB |
| Tags | CPython 3.10 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
687944f71556e9752555e1e802b940dd4fedcc8d3f2648e168483275de396604
|
|
BLAKE2b-256 checksum How to use checksums |
73f91dd25a4aaefab3b8d480086654fb593081e6a080935489aaa29f7cf89300
|
| 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.dev1745828296-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | stim-1.15.dev1745828296-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 |
b79750102883637b3b146b99b08cac94363423681728edae1365c9487277771d
|
|
BLAKE2b-256 checksum How to use checksums |
0ca408dcc344fee4237095c5b89be38eb5b875e9dfdb25e56078cb317c4321e6
|
| 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.dev1745828296-cp310-cp310-macosx_11_0_arm64.whl
| Download URL | stim-1.15.dev1745828296-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 |
f65d0204e2008462ea09feb623ec8993fbd408aa6a98a9253dd8997b7552dfa7
|
|
BLAKE2b-256 checksum How to use checksums |
b9b1a444da7333238d900f9330c00c75f7d1d4f6cdb6e134e076754c5a344696
|
| 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.dev1745828296-cp310-cp310-macosx_10_9_x86_64.whl
| Download URL | stim-1.15.dev1745828296-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 |
931740c8a9e5023a87a024a19af54ade01f396cad9b7a2e49caaf86f99b48da9
|
|
BLAKE2b-256 checksum How to use checksums |
23b0bb494e0ed01eed623865933612cec9116b8961f7e3dae55303a4c6559574
|
| 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.dev1745828296-cp39-cp39-win_amd64.whl
| Download URL | stim-1.15.dev1745828296-cp39-cp39-win_amd64.whl |
|---|---|
| Size | 2.7 MB |
| Tags | CPython 3.9 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
646bc11c9b81c9d66bf62799558b4f76a21341788e57ac65eb6f9421d1f49916
|
|
BLAKE2b-256 checksum How to use checksums |
c7439bdd4b836e324da0e2db319f95826fc0b44e6f1214934e4dcee416ef9b6b
|
| 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.dev1745828296-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | stim-1.15.dev1745828296-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 |
b16da105b74b23c13863a39d8ba250bf17e6ed81079904ce7f2e7ef0239cb862
|
|
BLAKE2b-256 checksum How to use checksums |
94181d6cb6a49f8045091b01fb9381f1529685cdc598ad4158c412c527467745
|
| 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.dev1745828296-cp39-cp39-macosx_11_0_arm64.whl
| Download URL | stim-1.15.dev1745828296-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 |
5eea4b467086a8c8d17c4068a53b3aba76aa23bf30471c1580f9c4eedaa3a2c5
|
|
BLAKE2b-256 checksum How to use checksums |
2a694b59afefa1f63e77bef28b26234e86aa2afa1840c89933b63f73eed48a45
|
| 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.dev1745828296-cp39-cp39-macosx_10_9_x86_64.whl
| Download URL | stim-1.15.dev1745828296-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 |
65e4bd7390a2d98a7dc9e656fb85d4e439a206038c95d301931b0af997577c29
|
|
BLAKE2b-256 checksum How to use checksums |
3a4a18c0698fb7f9fc011f0f4071a1d9affc1c5890395cf8d682cb7f1f1d1376
|
| 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.dev1745828296-cp38-cp38-win_amd64.whl
| Download URL | stim-1.15.dev1745828296-cp38-cp38-win_amd64.whl |
|---|---|
| Size | 2.6 MB |
| Tags | CPython 3.8 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
37d207d9720814992553894810f1ee72845762498e120f5f0a77fc63a033bee3
|
|
BLAKE2b-256 checksum How to use checksums |
e25d7dd6628cd479313a7e3b5e280f42d8bb8c23b08b3e89b4d682546eac137d
|
| 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.dev1745828296-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | stim-1.15.dev1745828296-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 |
73a107781026598e8165525d7698b063c0c47d7c075df01667c02d906f5794d9
|
|
BLAKE2b-256 checksum How to use checksums |
47eb1cbd3cbbace59b79528e3d6cb92e1f59041bbbf2f9ab0d72f4f63ee7c378
|
| 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.dev1745828296-cp38-cp38-macosx_11_0_arm64.whl
| Download URL | stim-1.15.dev1745828296-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 |
e1e92ca290b3cc5573e522cc08af9ac3f400ad8eb0791c0da5b7485d0e3e1022
|
|
BLAKE2b-256 checksum How to use checksums |
aac9395a5e5281c0daee06c8fd812422969ddd9e59da140a540175c000cc0abf
|
| 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.dev1745828296-cp38-cp38-macosx_10_9_x86_64.whl
| Download URL | stim-1.15.dev1745828296-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 |
96896c38e5e4be2ffd111e20765e3d9ba9eecbb2a78232d3bd9d360f728b7464
|
|
BLAKE2b-256 checksum How to use checksums |
85ebfe311ed22784eb42edd0e3768c19b825450d377eee610e652dc6eb59dd3e
|
| 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.dev1745828296-cp37-cp37m-win_amd64.whl
| Download URL | stim-1.15.dev1745828296-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 |
9eac76ab4179d9781f0d4a0220a7a2195e2f10636cc1a6804d0c172f7138ecf3
|
|
BLAKE2b-256 checksum How to use checksums |
b1c6832150150d83bf1d537055156d9de05623ac06563894cd5e27afa64abd9d
|
| 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.dev1745828296-cp37-cp37m-win32.whl
| Download URL | stim-1.15.dev1745828296-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 |
2f674af20209026dcdf9e5b3e9a2639d028d1347c1d279e01a3dd7c4d166e0f7
|
|
BLAKE2b-256 checksum How to use checksums |
653e8db1ea8502e6d268c09dee1a07054f5730a75a46b14b97e8154e990710e9
|
| 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.dev1745828296-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | stim-1.15.dev1745828296-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 |
2d99d4a1baf9770a9a3a45e9472c6d1d373402c1152d0ac7741327d5a7bca097
|
|
BLAKE2b-256 checksum How to use checksums |
ccc61c53625181d16f390da0e30a1034bf2a564e1add734f100c047e0779eac2
|
| 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.dev1745828296-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
| Download URL | stim-1.15.dev1745828296-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 |
19079e1cdaa2ee8de3f4d5d24a2b5adc527470e981a1c7190988afae156ccd44
|
|
BLAKE2b-256 checksum How to use checksums |
e1c71c50d09e900c4fee045565c9b71576c69ab4f479552e00c7a8ea01ac96c8
|
| 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.dev1745828296-cp37-cp37m-macosx_10_9_x86_64.whl
| Download URL | stim-1.15.dev1745828296-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 |
d017d50bf64e3626f2141e6d1c821e73d1d0ade74c52dc3dbb9e33f67309f3ed
|
|
BLAKE2b-256 checksum How to use checksums |
0b5e598d457dde4a689c05d66d45debf6cea7841fea9782d7fcdb8cbafd5a48d
|
| 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.dev1745828296-cp36-cp36m-win_amd64.whl
| Download URL | stim-1.15.dev1745828296-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 |
d99c5161ac801492b3c8bff112442abba55e6461f5159b1bf49149cfc8ae171f
|
|
BLAKE2b-256 checksum How to use checksums |
387a99b043d251580dd816685520b39b1bf4483916748f86c3860b8b9722d7d1
|
| 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.dev1745828296-cp36-cp36m-win32.whl
| Download URL | stim-1.15.dev1745828296-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 |
6e2e3ff124f81bc1cab4597518eff58ef9daa30b0e187ff1550418888ba527c8
|
|
BLAKE2b-256 checksum How to use checksums |
ff19c469f3fa386f230a7770307439373889d1cbed5ab92e19e6b1f05ab36bba
|
| 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.dev1745828296-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | stim-1.15.dev1745828296-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 |
ca99d821792526d4cb6258233d702dbb4375e3388a53f54af8b1c444d78c10f1
|
|
BLAKE2b-256 checksum How to use checksums |
0ce11e06b308809aecc5ace9bd6f607abd0ad9d5a63111e21750d901b92cc3aa
|
| 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.dev1745828296-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
| Download URL | stim-1.15.dev1745828296-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 |
815ee7a207bb670e5c8330532cb3437aa0b1837fcefe87cf971c10182b382aa8
|
|
BLAKE2b-256 checksum How to use checksums |
e7ba0972bd76728c054b1d9dc3c7e633de832c0922232c553f30e0ac50a45b37
|
| 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.dev1745828296-cp36-cp36m-macosx_10_9_x86_64.whl
| Download URL | stim-1.15.dev1745828296-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 |
cb2efd7181e3db8be9b877eaa25eeb15d8362b1824628037da15ff8309736f7b
|
|
BLAKE2b-256 checksum How to use checksums |
633aead372508e97e5066a5f89e12ea44cdf25d429eef98c3f979c56bc5c94a4
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.12.9
|