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.dev1776308765
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.dev1776308765.tar.gz | 882.2 kB | Details |
Built distributions (wheels)
Total release size: 88.5 MB
Release files / stim-1.16.dev1776308765.tar.gz
| Download URL | stim-1.16.dev1776308765.tar.gz |
|---|---|
| Size | 882.2 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
e0ba82bfd50b88e2eb16faadca40ae073e472beb709d380e2ca58177736380df
|
|
BLAKE2b-256 checksum How to use checksums |
9ee192a4c9f7057504f0acf1229752cd8f87810a8bcd64121d427e6b034ccab1
|
| 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.dev1776308765-cp314-cp314-win_amd64.whl
| Download URL | stim-1.16.dev1776308765-cp314-cp314-win_amd64.whl |
|---|---|
| Size | 2.8 MB |
| Tags | CPython 3.14 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
a9679436243bcafc5ee5e0397277fec11777ba8f42b10c6dbc3ec02a57854f3a
|
|
BLAKE2b-256 checksum How to use checksums |
84a5b9c669b9bae856a3ace2fc770e4152cc28ea85319a67a9dd5053846ae19d
|
| 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.dev1776308765-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
| Download URL | stim-1.16.dev1776308765-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl |
|---|---|
| Size | 5.3 MB |
| Tags | CPython 3.14 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64 |
|
SHA-256 checksum How to use checksums |
8583b92404daedd5b2b5c0863451d52c121e061cf483120ac50c6c53c1194fdb
|
|
BLAKE2b-256 checksum How to use checksums |
46e75da7e4b44d92fa26a22d7b496d8065ba93b2cf7328123f1fbc0194d2a8c1
|
| 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.dev1776308765-cp314-cp314-macosx_11_0_arm64.whl
| Download URL | stim-1.16.dev1776308765-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 |
10dc843df44daccf8184bbae594fd2edcf402aa1ac35f116ea784795f7bd3398
|
|
BLAKE2b-256 checksum How to use checksums |
28e4cf7bad2cc30387c20a2159bb02f2ef4a6e957bd98489b73188714cc27919
|
| 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.dev1776308765-cp314-cp314-macosx_10_15_x86_64.whl
| Download URL | stim-1.16.dev1776308765-cp314-cp314-macosx_10_15_x86_64.whl |
|---|---|
| Size | 2.1 MB |
| Tags | CPython 3.14 macOS 10.15+ x86-64 |
|
SHA-256 checksum How to use checksums |
21de9ba6db8a84de7fe2c7a72474161e274b70293362b722bf7f4e9e93f2b8b8
|
|
BLAKE2b-256 checksum How to use checksums |
11a632ee3a40031a20274ccbc1aaeaf6de5a77bf68e66f8bbcce268548407ce9
|
| 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.dev1776308765-cp313-cp313-win_amd64.whl
| Download URL | stim-1.16.dev1776308765-cp313-cp313-win_amd64.whl |
|---|---|
| Size | 2.8 MB |
| Tags | CPython 3.13 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
b3c3645d221a8c476bfe57ed3a04a6400560f9ef37ca986e4bfe693202309596
|
|
BLAKE2b-256 checksum How to use checksums |
13ba1670e0749b59b406f50a74e9001a48c7172a6ebdf01a8bcdacab12b6cbc1
|
| 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.dev1776308765-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
| Download URL | stim-1.16.dev1776308765-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl |
|---|---|
| Size | 5.3 MB |
| Tags | CPython 3.13 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64 |
|
SHA-256 checksum How to use checksums |
0dcdacce9ef7520e439173b971fcff6ae0c8c1501816628aae4465f158747991
|
|
BLAKE2b-256 checksum How to use checksums |
a996b8230b1dc8db5c03938811242db5d60b9546e99fcb62f7a7c1e9e44e67f4
|
| 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.dev1776308765-cp313-cp313-macosx_11_0_arm64.whl
| Download URL | stim-1.16.dev1776308765-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 |
5610fb3488880b989e11e3711dff8e077e8c8430d1f293c8bcaf1ad8f80b08e1
|
|
BLAKE2b-256 checksum How to use checksums |
715a76b5680b40cee6992db01d614762e2e4ae0e921b0fc29f208b9673b62572
|
| 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.dev1776308765-cp313-cp313-macosx_10_13_x86_64.whl
| Download URL | stim-1.16.dev1776308765-cp313-cp313-macosx_10_13_x86_64.whl |
|---|---|
| Size | 2.1 MB |
| Tags | CPython 3.13 macOS 10.13+ x86-64 |
|
SHA-256 checksum How to use checksums |
69827d1d872e7cec391f0006f3d26a9b5328814800357c51d1d5bab55b7cdee6
|
|
BLAKE2b-256 checksum How to use checksums |
b2d771a7dd14b0630fe741a551a3b4d2f63a495c072d53770e5d41f6bedaf6b4
|
| 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.dev1776308765-cp312-cp312-win_amd64.whl
| Download URL | stim-1.16.dev1776308765-cp312-cp312-win_amd64.whl |
|---|---|
| Size | 2.8 MB |
| Tags | CPython 3.12 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
ab5c9a1c21c3437149a7babd025ad141166e78ff21972db1efb4d6dc4a6f0ec3
|
|
BLAKE2b-256 checksum How to use checksums |
5e4dd52996baf4b18f7c827cfec672215ae040f6c41f65f05bd21c83cc78073b
|
| 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.dev1776308765-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
| Download URL | stim-1.16.dev1776308765-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl |
|---|---|
| Size | 5.3 MB |
| Tags | CPython 3.12 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64 |
|
SHA-256 checksum How to use checksums |
98257e51adc6cba7b982451f6fec5ded71dd1059a6500dbe3d57e6a3f3c0e497
|
|
BLAKE2b-256 checksum How to use checksums |
f47afe2bb84d07967841599ce0b1c65c0824711979aea3e679b9500e81064906
|
| 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.dev1776308765-cp312-cp312-macosx_11_0_arm64.whl
| Download URL | stim-1.16.dev1776308765-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 |
44d0efa4e36b32bd47beec8b54049ec4e01c9733e27c8468a7c2aca1e7e6a8ea
|
|
BLAKE2b-256 checksum How to use checksums |
c733c0ed9cb50ed10d5a8b833a7ac0e3498f6f223f10a0440365f114f6d32b69
|
| 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.dev1776308765-cp312-cp312-macosx_10_13_x86_64.whl
| Download URL | stim-1.16.dev1776308765-cp312-cp312-macosx_10_13_x86_64.whl |
|---|---|
| Size | 2.1 MB |
| Tags | CPython 3.12 macOS 10.13+ x86-64 |
|
SHA-256 checksum How to use checksums |
92c23282e193e14328330a32e3d65e6383866922f7c63623358745f6f75868b3
|
|
BLAKE2b-256 checksum How to use checksums |
851c3ea5212d04d7dcb737611ebb5a49cf6fecc9d4f6c83e32a0d00c8864ab1f
|
| 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.dev1776308765-cp311-cp311-win_amd64.whl
| Download URL | stim-1.16.dev1776308765-cp311-cp311-win_amd64.whl |
|---|---|
| Size | 2.8 MB |
| Tags | CPython 3.11 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
2c564b9c80112d6c39afb6609e7c199816ab8592db4dd2d5687210f8351d1b4e
|
|
BLAKE2b-256 checksum How to use checksums |
6172a04d48ee7d4d93dab727aac3e086db2459354e6da6d390410be47a76ed24
|
| 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.dev1776308765-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
| Download URL | stim-1.16.dev1776308765-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl |
|---|---|
| Size | 5.2 MB |
| Tags | CPython 3.11 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64 |
|
SHA-256 checksum How to use checksums |
def148cff560162abb59ac9d0f9f9450705968a63b01778839b94317b95fe51b
|
|
BLAKE2b-256 checksum How to use checksums |
308567bb45e69d829b29fd2d0bb3600442cd292b06c46785c606b779e0fa08d3
|
| 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.dev1776308765-cp311-cp311-macosx_11_0_arm64.whl
| Download URL | stim-1.16.dev1776308765-cp311-cp311-macosx_11_0_arm64.whl |
|---|---|
| Size | 1.9 MB |
| Tags | CPython 3.11 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
48c6736e5eaddf9efb8b1c2eec6c1c0580f72e1f4ed87ae6c34db5ee262eeb34
|
|
BLAKE2b-256 checksum How to use checksums |
145f6ab878a06b17faa598fc01d922dd9123035a0ce095e59e51e68575c6ed3c
|
| 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.dev1776308765-cp311-cp311-macosx_10_9_x86_64.whl
| Download URL | stim-1.16.dev1776308765-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 |
73a572d58f3df3945a16dbb226fd21042019816668846257be23945771710479
|
|
BLAKE2b-256 checksum How to use checksums |
5052b422097f7c02dc0a5ec28a459a1982147ae2b12886c54efc909c0d2d22d6
|
| 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.dev1776308765-cp310-cp310-win_amd64.whl
| Download URL | stim-1.16.dev1776308765-cp310-cp310-win_amd64.whl |
|---|---|
| Size | 2.8 MB |
| Tags | CPython 3.10 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
af7f762268638e3ed2323dad9993a03cbc3d46527637d9536dc33a7e18590462
|
|
BLAKE2b-256 checksum How to use checksums |
47b262855d94da440679fd25f97a700f809e433acf9e45dfdd4738a5af9c7f54
|
| 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.dev1776308765-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
| Download URL | stim-1.16.dev1776308765-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl |
|---|---|
| Size | 5.2 MB |
| Tags | CPython 3.10 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64 |
|
SHA-256 checksum How to use checksums |
b8d64e00d8bb3515d376523e63e0287b8f42e6e1194ae988ec97269aac0062fa
|
|
BLAKE2b-256 checksum How to use checksums |
51db734da300885c1301ea5169065b2551d0de810c9b4c9c2e9c2d90446c6d2c
|
| 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.dev1776308765-cp310-cp310-macosx_11_0_arm64.whl
| Download URL | stim-1.16.dev1776308765-cp310-cp310-macosx_11_0_arm64.whl |
|---|---|
| Size | 1.9 MB |
| Tags | CPython 3.10 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
a4ed8ad4d7e7b4e2bddce94ef9cd1942f38c4c4bc23e51ecd5fc8b7dd617497d
|
|
BLAKE2b-256 checksum How to use checksums |
9ea933f8599b5e5ca8eee7f89447f4e7bf7d45f7417d4c46c7e07cb508cd5915
|
| 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.dev1776308765-cp310-cp310-macosx_10_9_x86_64.whl
| Download URL | stim-1.16.dev1776308765-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 |
9007f23b5bc3140ce4b628529c6dfacfa155651ade5e6c701e9f0c2f1b1a89d0
|
|
BLAKE2b-256 checksum How to use checksums |
b09f5eed07bb5b6b1f3f6aa2f57295e7222e357751a7ab8b2715ced540590a82
|
| 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.dev1776308765-cp39-cp39-win_amd64.whl
| Download URL | stim-1.16.dev1776308765-cp39-cp39-win_amd64.whl |
|---|---|
| Size | 2.8 MB |
| Tags | CPython 3.9 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
11a3a5db4859575ea34962da7bb487b9b39e3786599dda90d91cfbdcdee15014
|
|
BLAKE2b-256 checksum How to use checksums |
8a8ba6a5d235de24c9962f75b073d62e754011cec4e60f95b697644b684514ce
|
| 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.dev1776308765-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
| Download URL | stim-1.16.dev1776308765-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl |
|---|---|
| Size | 5.2 MB |
| Tags | CPython 3.9 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64 |
|
SHA-256 checksum How to use checksums |
eca09cda506de084a59cba3a1acb54118e71f3305228be12bce7a36bb5fbdd18
|
|
BLAKE2b-256 checksum How to use checksums |
5f60dacd74ff7baf7376f895281b6e077da878d1213afa0bfdaca6438050ac9e
|
| 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.dev1776308765-cp39-cp39-macosx_11_0_arm64.whl
| Download URL | stim-1.16.dev1776308765-cp39-cp39-macosx_11_0_arm64.whl |
|---|---|
| Size | 1.9 MB |
| Tags | CPython 3.9 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
cd84562fddaf156f09ffeb6f0e158853ba97a6557c3cb7e90baac86de209a975
|
|
BLAKE2b-256 checksum How to use checksums |
4549cbae3f549009e936a729650514621e56967280cd87ffdaf40bd2945fee92
|
| 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.dev1776308765-cp39-cp39-macosx_10_9_x86_64.whl
| Download URL | stim-1.16.dev1776308765-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 |
04d0988287353c3f8a4b201b0ce3eaf6cba214b9fa92580c6036d65d64f8cec4
|
|
BLAKE2b-256 checksum How to use checksums |
d2da4d399b7c3ff0fd3b4e23768deb9bf07fbf662558bd7cf302e387287bde58
|
| 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.dev1776308765-cp38-cp38-win_amd64.whl
| Download URL | stim-1.16.dev1776308765-cp38-cp38-win_amd64.whl |
|---|---|
| Size | 2.8 MB |
| Tags | CPython 3.8 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
8a8566fe193d7928871cfaee5eba0e5b95680368db76f7479868363253d90dd6
|
|
BLAKE2b-256 checksum How to use checksums |
f925a31f5a7d84393919f259278116362774c2000b01385674f38a3f0656b3b9
|
| 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.dev1776308765-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
| Download URL | stim-1.16.dev1776308765-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl |
|---|---|
| Size | 5.2 MB |
| Tags | CPython 3.8 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64 |
|
SHA-256 checksum How to use checksums |
e54f95ca3f62ac402a9dee9914161a5a4b744f0c845aa8893ebe3112e6a723c8
|
|
BLAKE2b-256 checksum How to use checksums |
90b797f6bb4bfd8bb273df6d459e5af27585e620c23e672a768dbc547a606426
|
| 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.dev1776308765-cp38-cp38-macosx_11_0_arm64.whl
| Download URL | stim-1.16.dev1776308765-cp38-cp38-macosx_11_0_arm64.whl |
|---|---|
| Size | 3.6 MB |
| Tags | CPython 3.8 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
389c5a439e693322cc3abec8feee03637009448c6f073fd63598be0f72d0ab4f
|
|
BLAKE2b-256 checksum How to use checksums |
bc7bb17bfbee1b507bab3202142a5994c9bd8b3e7967313243d41d0af0c90bd0
|
| 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.dev1776308765-cp38-cp38-macosx_10_9_x86_64.whl
| Download URL | stim-1.16.dev1776308765-cp38-cp38-macosx_10_9_x86_64.whl |
|---|---|
| Size | 3.9 MB |
| Tags | CPython 3.8 macOS 10.9+ x86-64 |
|
SHA-256 checksum How to use checksums |
aa076c62bbf4197d5c30417ae749820dff7d4d84ba85b10c01193e36fec70fb8
|
|
BLAKE2b-256 checksum How to use checksums |
27eaf20d1206db3efce8258002ab43314f6205121b09fdcc17ec849b6d535dd6
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.12.9
|