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.16.dev1768459926
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.16.dev1768459926.tar.gz | 865.7 kB | Details |
Built distributions (wheels)
Total release size: 82.7 MB
Release files / stim-1.16.dev1768459926.tar.gz
| Download URL | stim-1.16.dev1768459926.tar.gz |
|---|---|
| Size | 865.7 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
d240ecb2b160d14e1dc076b4ca55d0be8b3a3004aa6ec77e66cc5cb99fee7189
|
|
BLAKE2b-256 checksum How to use checksums |
92d384ff2a10cd8e6abc7c3ad4a4eea388b7070a9e8a6843e525045070b0b529
|
| 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.16.dev1768459926-cp314-cp314-win_amd64.whl
| Download URL | stim-1.16.dev1768459926-cp314-cp314-win_amd64.whl |
|---|---|
| Size | 2.8 MB |
| Tags | CPython 3.14 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
618bd199c6415f942fccb8d626a29e0afdedfb5ded41e944e79c5112f75194aa
|
|
BLAKE2b-256 checksum How to use checksums |
2cab6ed8e79f806bd7228111412c946bfa41f160c36f3e02a9d9a7de5280a474
|
| 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.16.dev1768459926-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
| Download URL | stim-1.16.dev1768459926-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl |
|---|---|
| Size | 5.2 MB |
| Tags | CPython 3.14 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64 |
|
SHA-256 checksum How to use checksums |
48a063246c32b6f8bcdc5eb8e70839f64a0d09457de47e978c2111fbea45315c
|
|
BLAKE2b-256 checksum How to use checksums |
ee4a1548b3e089dcbb30a456b198818221e4885fdbb110f5df99f70bb78ad373
|
| 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.16.dev1768459926-cp314-cp314-macosx_11_0_arm64.whl
| Download URL | stim-1.16.dev1768459926-cp314-cp314-macosx_11_0_arm64.whl |
|---|---|
| Size | 1.9 MB |
| Tags | CPython 3.14 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
d07bb60e4483cbffa9bdd6c8c021ea94fa7389b9bbb9b34f3a75bb5feb4a7359
|
|
BLAKE2b-256 checksum How to use checksums |
f7272f9113e6213b5dd134686787b9bdbc3d212219b307684d0eca13603a0de8
|
| 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.16.dev1768459926-cp314-cp314-macosx_10_15_x86_64.whl
| Download URL | stim-1.16.dev1768459926-cp314-cp314-macosx_10_15_x86_64.whl |
|---|---|
| Size | 2.0 MB |
| Tags | CPython 3.14 macOS 10.15+ x86-64 |
|
SHA-256 checksum How to use checksums |
9cad9da5973d442810aa808185dd5e5a5bd87b44ba0692391ea47a86b5c6b218
|
|
BLAKE2b-256 checksum How to use checksums |
27f1953aac9ab02a611c85997fa74481439fc82590a98f41c5a3bce6e4fe4c68
|
| 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.16.dev1768459926-cp313-cp313-win_amd64.whl
| Download URL | stim-1.16.dev1768459926-cp313-cp313-win_amd64.whl |
|---|---|
| Size | 2.7 MB |
| Tags | CPython 3.13 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
17f0d23b3ce44945359692f400255577884e2c681835ebb69f281ddde1bd48f0
|
|
BLAKE2b-256 checksum How to use checksums |
4e6be2ff35efe5f4d093217858f5920587ab7edccd08dee0fe4b0dcd74558f7f
|
| 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.16.dev1768459926-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
| Download URL | stim-1.16.dev1768459926-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl |
|---|---|
| Size | 5.2 MB |
| Tags | CPython 3.13 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64 |
|
SHA-256 checksum How to use checksums |
ea24b7048dc907823351304b8daea8bfc89cbfb76833dc5a1d951270d44224ec
|
|
BLAKE2b-256 checksum How to use checksums |
763ac95604def24be6d53dc7ad67d756c69a1c9130487e215eb9bf22f8fa0bde
|
| 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.16.dev1768459926-cp313-cp313-macosx_11_0_arm64.whl
| Download URL | stim-1.16.dev1768459926-cp313-cp313-macosx_11_0_arm64.whl |
|---|---|
| Size | 1.9 MB |
| Tags | CPython 3.13 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
d9317bbc75ecd8079a614fbc82dd7189f72d8afc2dbcf9b73bb8419687dda296
|
|
BLAKE2b-256 checksum How to use checksums |
6ad4da9721c2c341b4123937703084ba5c5994a3d2e7116c0e4c4b3d26bd3643
|
| 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.16.dev1768459926-cp313-cp313-macosx_10_13_x86_64.whl
| Download URL | stim-1.16.dev1768459926-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 |
b16effee311260783b8f378dd0a50d902ce9a66b9e8c8a5217cb77e74d3a6f4b
|
|
BLAKE2b-256 checksum How to use checksums |
dea9da002f7b811a281b083e4be64cedf331b3be3db6b39fedfee0ff1dda2280
|
| 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.16.dev1768459926-cp312-cp312-win_amd64.whl
| Download URL | stim-1.16.dev1768459926-cp312-cp312-win_amd64.whl |
|---|---|
| Size | 2.7 MB |
| Tags | CPython 3.12 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
5f2ecd44a3fe6777d88685da9afa00779232dd21f651bc4e2f492a03de8e0162
|
|
BLAKE2b-256 checksum How to use checksums |
10b8cbb491a3142f1bf8ec2c0b06953f3ba94a8b84e89357e91429054fd60b42
|
| 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.16.dev1768459926-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
| Download URL | stim-1.16.dev1768459926-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl |
|---|---|
| Size | 5.2 MB |
| Tags | CPython 3.12 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64 |
|
SHA-256 checksum How to use checksums |
401a7b55c58a73703b6725a15bab0d9ab1431a6811c51933274161a58e9ecd4e
|
|
BLAKE2b-256 checksum How to use checksums |
2036e7c78b93857bacb5f64ff8b2aa51cba9ca7dcee124095b019d29cab98388
|
| 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.16.dev1768459926-cp312-cp312-macosx_11_0_arm64.whl
| Download URL | stim-1.16.dev1768459926-cp312-cp312-macosx_11_0_arm64.whl |
|---|---|
| Size | 1.9 MB |
| Tags | CPython 3.12 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
78485b705395b1ec2df2a3c4d48e007153ca9793d91d91fddb1336be86eb6248
|
|
BLAKE2b-256 checksum How to use checksums |
1cb49784738930fd9e9269c92716eb515b4bca4a1632c4585869ccd6417137d0
|
| 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.16.dev1768459926-cp312-cp312-macosx_10_13_x86_64.whl
| Download URL | stim-1.16.dev1768459926-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 |
4ca94d019a51b239f6ea4356027480eac310cfa4c011b6ef0c9092ff13d42e54
|
|
BLAKE2b-256 checksum How to use checksums |
f0382ca73fb9f1316f90916bd76d949422e668bdc02efe8260391a19ff7365a2
|
| 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.16.dev1768459926-cp311-cp311-win_amd64.whl
| Download URL | stim-1.16.dev1768459926-cp311-cp311-win_amd64.whl |
|---|---|
| Size | 1.4 MB |
| Tags | CPython 3.11 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
8e300bdf67e4f885b576290c25d0d86bbbd52dc26d634e641968cc6a6908f7a7
|
|
BLAKE2b-256 checksum How to use checksums |
105edcb9fb93a5dec546082b7fe96671615f749d659b271e39b995af3647fdbf
|
| 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.16.dev1768459926-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
| Download URL | stim-1.16.dev1768459926-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl |
|---|---|
| Size | 5.1 MB |
| Tags | CPython 3.11 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64 |
|
SHA-256 checksum How to use checksums |
aed302efab376baa434316be4e41ec531896180fcfdcdfa56ce932338fae51dd
|
|
BLAKE2b-256 checksum How to use checksums |
b851cbb93ee3fa2771ebeabd50913dec5927bc5c42b08d94b6e104a5462bf718
|
| 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.16.dev1768459926-cp311-cp311-macosx_11_0_arm64.whl
| Download URL | stim-1.16.dev1768459926-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 |
f13bc6816ade138583e88ba84101c63e0d7cdf4c4c007b715c8fa2ca6405d7ae
|
|
BLAKE2b-256 checksum How to use checksums |
7e70a110033566d29320ce9191c5c4e8a5ddb7f679418ca1d19f18cceee825e3
|
| 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.16.dev1768459926-cp311-cp311-macosx_10_9_x86_64.whl
| Download URL | stim-1.16.dev1768459926-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 |
67bb8239e2f650b35f020451015681e37e1c096ab3d38d9cf9d5aca73bcb7854
|
|
BLAKE2b-256 checksum How to use checksums |
2be6bedfc7835649cd882be1360e0f8bcb565eb8b76bb521959990f1e6a77427
|
| 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.16.dev1768459926-cp310-cp310-win_amd64.whl
| Download URL | stim-1.16.dev1768459926-cp310-cp310-win_amd64.whl |
|---|---|
| Size | 2.7 MB |
| Tags | CPython 3.10 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
c2111ad071903711fab4374ef8045abc0b4f1f3957a49d5a7c93aea120d8bef4
|
|
BLAKE2b-256 checksum How to use checksums |
e0206a6da94d8cdd5ac062947d4d7d3ac4f4d7639aaa84a28b653e1d4977deaa
|
| 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.16.dev1768459926-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
| Download URL | stim-1.16.dev1768459926-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl |
|---|---|
| Size | 5.1 MB |
| Tags | CPython 3.10 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64 |
|
SHA-256 checksum How to use checksums |
374f9a9e71c46020fc128c25b5cde1a87fba223d599d01bb7e708095d4f06309
|
|
BLAKE2b-256 checksum How to use checksums |
dbb9c98742075b4577dcb702f396f4afd9b2f9e6c8905f0eeb22b839429e41bd
|
| 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.16.dev1768459926-cp310-cp310-macosx_11_0_arm64.whl
| Download URL | stim-1.16.dev1768459926-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 |
61c5e0fbe22fc8444146b74ad2a9eef0b4f77155419d472eef08869cedb104b9
|
|
BLAKE2b-256 checksum How to use checksums |
9909f131dff4a186e8f18e6ddd19f0747a49c7362e0a2235891e9bf17dbabb81
|
| 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.16.dev1768459926-cp310-cp310-macosx_10_9_x86_64.whl
| Download URL | stim-1.16.dev1768459926-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 |
a9a5db685e8765687d1539723060f6ae746de15357adb4312fa5146d60c9e73f
|
|
BLAKE2b-256 checksum How to use checksums |
042f148d56f7b56f787441dbce00fa7d8e0cce9637242d18d256f36adabe331a
|
| 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.16.dev1768459926-cp39-cp39-win_amd64.whl
| Download URL | stim-1.16.dev1768459926-cp39-cp39-win_amd64.whl |
|---|---|
| Size | 1.5 MB |
| Tags | CPython 3.9 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
012222685a3b8a7ff1c30d8f536b6e6cb7a9ef69b6c7771c706b758bcae44e83
|
|
BLAKE2b-256 checksum How to use checksums |
35e4e09ac0922f0f09ea82aae69877a8f20f2859f6bce2761e5d52a8386fb0fe
|
| 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.16.dev1768459926-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
| Download URL | stim-1.16.dev1768459926-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl |
|---|---|
| Size | 5.1 MB |
| Tags | CPython 3.9 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64 |
|
SHA-256 checksum How to use checksums |
e727bae0806c13cf6f53a0e2eec8b4b5c98ef90875fc95bdff3884cc630c184f
|
|
BLAKE2b-256 checksum How to use checksums |
b2e05ff8a0d4f17bdff17bceaae817ef4537f2436c2aa36231dbc49a7e518615
|
| 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.16.dev1768459926-cp39-cp39-macosx_11_0_arm64.whl
| Download URL | stim-1.16.dev1768459926-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 |
41dc8d58f0016b6643b086f8689cd473fca00f592bfa6bdb21c3fc48f5a7f06b
|
|
BLAKE2b-256 checksum How to use checksums |
13a376cf1b9e27cee1c18297b476355eee14645284e616496232efd6c881c3ca
|
| 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.16.dev1768459926-cp39-cp39-macosx_10_9_x86_64.whl
| Download URL | stim-1.16.dev1768459926-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 |
33c84a9bcda47a226e57d59004affb70e479f25717a2a5aabd53239929e8ec2e
|
|
BLAKE2b-256 checksum How to use checksums |
da493402bd17e8f4f5f9b93003681ace8fbc0fcf5ddac55ad22af7cf6c270b8b
|
| 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.16.dev1768459926-cp38-cp38-win_amd64.whl
| Download URL | stim-1.16.dev1768459926-cp38-cp38-win_amd64.whl |
|---|---|
| Size | 1.4 MB |
| Tags | CPython 3.8 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
6032cfe02a2fa021b772dc2cb073e3681b3fd60c35ae66dfadce3eb12f726bfb
|
|
BLAKE2b-256 checksum How to use checksums |
e46b05cbcc73cc8098d3af86bc2fddfabe33328e9cf155ab1312ef53234404fe
|
| 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.16.dev1768459926-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
| Download URL | stim-1.16.dev1768459926-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl |
|---|---|
| Size | 5.1 MB |
| Tags | CPython 3.8 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64 |
|
SHA-256 checksum How to use checksums |
5293bf612a7238bb2e4702ee3a6962a98337ede6bf8584d38c82a484c636689e
|
|
BLAKE2b-256 checksum How to use checksums |
445429112127fa175edd79dba107069bf3eef9d9b2e4f082ff07c4085210f931
|
| 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.16.dev1768459926-cp38-cp38-macosx_11_0_arm64.whl
| Download URL | stim-1.16.dev1768459926-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 |
c36643d884f8a52b7c5a2e51bddd01e68911b7a0ec90b7d127cec8aeae314611
|
|
BLAKE2b-256 checksum How to use checksums |
43e9862efa48008e6cb54ee7e426546159624d5742727b8c46618b8446d824fa
|
| 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.16.dev1768459926-cp38-cp38-macosx_10_9_x86_64.whl
| Download URL | stim-1.16.dev1768459926-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 |
e3966820d2f654e4cb2e9669d2aa0c9c8093b40c703342c7e300dcb8d611d933
|
|
BLAKE2b-256 checksum How to use checksums |
9a7a6ce83d1b1beb0d253432138dc30ca4ad0826154c438ecdcc19889e2c7d0f
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.12.9
|