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.dev1768520142
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.dev1768520142.tar.gz | 877.0 kB | Details |
Built distributions (wheels)
Total release size: 85.3 MB
Release files / stim-1.16.dev1768520142.tar.gz
| Download URL | stim-1.16.dev1768520142.tar.gz |
|---|---|
| Size | 877.0 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
90b9ad9b700a52046b78ed69b7792029d19eb98eac14298449718adc112e021b
|
|
BLAKE2b-256 checksum How to use checksums |
e5c40bdf166ace5814a9574b43c09c6fdfc95559ed2d619709222442303a8ac0
|
| 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.dev1768520142-cp314-cp314-win_amd64.whl
| Download URL | stim-1.16.dev1768520142-cp314-cp314-win_amd64.whl |
|---|---|
| Size | 2.8 MB |
| Tags | CPython 3.14 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
2cf2d4f7cd04a91a50b388993c1cbce083fe82e78fd9ef65d90a7ce90eeb07d0
|
|
BLAKE2b-256 checksum How to use checksums |
a9795b9e78e05624c0cb6f6e9874ad76e2e5d4d0dbde972dd6555c679c923d33
|
| 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.dev1768520142-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
| Download URL | stim-1.16.dev1768520142-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 |
063be92c9f4b8baa8e3f71a93aee135926b71793b3c9c56d9526e112fd8dd2f6
|
|
BLAKE2b-256 checksum How to use checksums |
47057587010ce60b4d4b941d5fa51d029b929306171386ffaed98584ff315354
|
| 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.dev1768520142-cp314-cp314-macosx_11_0_arm64.whl
| Download URL | stim-1.16.dev1768520142-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 |
99b82e19e8932e15954cfa8cd0e742cb30d0cde29e66751a1573302bdd764b75
|
|
BLAKE2b-256 checksum How to use checksums |
6ab67a9c067f6c2dbe74e610b1d412cef79fac4765f507a51a74708122c822d7
|
| 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.dev1768520142-cp314-cp314-macosx_10_15_x86_64.whl
| Download URL | stim-1.16.dev1768520142-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 |
f9e6d7a3bde59f417ab75a57438860574a2b9f3b4f54caaf5005d9735d363cec
|
|
BLAKE2b-256 checksum How to use checksums |
56500b30c09ae1f6d5598a48d0c3a1558a8ac345da9a72e4c045afb50c2e61a4
|
| 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.dev1768520142-cp313-cp313-win_amd64.whl
| Download URL | stim-1.16.dev1768520142-cp313-cp313-win_amd64.whl |
|---|---|
| Size | 1.4 MB |
| Tags | CPython 3.13 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
be01b0050b32b61958220e1b997007f8ffbcd3f582e2dfdeefc0f3343dbd19bd
|
|
BLAKE2b-256 checksum How to use checksums |
e3fd19fe612e1f1c5ba231a6f7e165677e6f5b099572873dd631ce018f4f75e6
|
| 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.dev1768520142-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
| Download URL | stim-1.16.dev1768520142-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 |
a28d3cc071edd2ffd0ee3c4f1c21de7daab8cddf39be4a22f016c1baefce20b4
|
|
BLAKE2b-256 checksum How to use checksums |
0156ab544a1ec964085e7f7016d78ca79fc8c1b37bc5140a7089eacc3891b246
|
| 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.dev1768520142-cp313-cp313-macosx_11_0_arm64.whl
| Download URL | stim-1.16.dev1768520142-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 |
74b31b614a3511cf85185cded11260cb171cdce51efd4298377f2b770d068227
|
|
BLAKE2b-256 checksum How to use checksums |
221e6241d1e4b1c4de0b4bc24ec02f27e28fcf3bfb11505788ec002bbd70389d
|
| 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.dev1768520142-cp313-cp313-macosx_10_13_x86_64.whl
| Download URL | stim-1.16.dev1768520142-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 |
f867f97ff7d8e31ffd5e5129ef05785d3273bf7d11930b6eb35956fb1e556ba6
|
|
BLAKE2b-256 checksum How to use checksums |
7f4dd9e1ee819dae30490043cf9e9aea359462e46a468502658b0c5481473d2d
|
| 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.dev1768520142-cp312-cp312-win_amd64.whl
| Download URL | stim-1.16.dev1768520142-cp312-cp312-win_amd64.whl |
|---|---|
| Size | 2.7 MB |
| Tags | CPython 3.12 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
64f62f33147095548a56fb581972ef6e672da2c05b50806d1a7b91556bbdb1cc
|
|
BLAKE2b-256 checksum How to use checksums |
ee107df6f8f5efac94f3814c723a405b30b6a83b47f45383bbb985e28af0beec
|
| 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.dev1768520142-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
| Download URL | stim-1.16.dev1768520142-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 |
e4830163c1865e84a4a58e2dcadaaf6e606ae3decb0d76d65a4de73c774d608d
|
|
BLAKE2b-256 checksum How to use checksums |
ff93505a5070706a7006e91edc72dbfb3541f340220cbfe2c723ec04b0ac5e89
|
| 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.dev1768520142-cp312-cp312-macosx_11_0_arm64.whl
| Download URL | stim-1.16.dev1768520142-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 |
85102db7cd8b3c1133a9a7429f9adda5e1e6c7f6b84b7973a5b4248348bf9239
|
|
BLAKE2b-256 checksum How to use checksums |
0c2144ceea69244c3065c64d3f3eabaf90c480eecc55484a176cce1ec8032073
|
| 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.dev1768520142-cp312-cp312-macosx_10_13_x86_64.whl
| Download URL | stim-1.16.dev1768520142-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 |
134ece9b4721f710587ab45ed611c6764d477ef87876062631bcf4a642beadbc
|
|
BLAKE2b-256 checksum How to use checksums |
d94cb3464e8da0b2d986a4a3ce04b62b10231087352c680c406b442aad13c2ad
|
| 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.dev1768520142-cp311-cp311-win_amd64.whl
| Download URL | stim-1.16.dev1768520142-cp311-cp311-win_amd64.whl |
|---|---|
| Size | 1.4 MB |
| Tags | CPython 3.11 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
4cac76df9428f8f259f836e7f519c050b159dfcb147b427b4b779eb0cbe8056c
|
|
BLAKE2b-256 checksum How to use checksums |
95647c04686742a05a7965a248f01aa1e5e5f8188ff1fec941e1a37c26545d3a
|
| 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.dev1768520142-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
| Download URL | stim-1.16.dev1768520142-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 |
d49572b51b6dbb4bf1b325d999eb3fd446006547530c1bf9e72679ca730886cb
|
|
BLAKE2b-256 checksum How to use checksums |
057cc0d8b5bc25648d2517abb4fbf5bed5de960230a671079bdfacdf033144cf
|
| 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.dev1768520142-cp311-cp311-macosx_11_0_arm64.whl
| Download URL | stim-1.16.dev1768520142-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 |
6d62f75ff3fecbebe667b93f52b6af89f48ec145f9ba2733a59772086801db96
|
|
BLAKE2b-256 checksum How to use checksums |
d070ebdd4beb114e105f68c1cc85f51e66a61537f60ff59227977ba78ba3dc73
|
| 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.dev1768520142-cp311-cp311-macosx_10_9_x86_64.whl
| Download URL | stim-1.16.dev1768520142-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 |
9985febcfa4a4e95a29f9f520b050fcfa916fc05188384c468492eae15c7fd88
|
|
BLAKE2b-256 checksum How to use checksums |
a0275a07695d619b9d6d48d9378e84c6224f45f004d06d253da44b92756e2ffc
|
| 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.dev1768520142-cp310-cp310-win_amd64.whl
| Download URL | stim-1.16.dev1768520142-cp310-cp310-win_amd64.whl |
|---|---|
| Size | 2.7 MB |
| Tags | CPython 3.10 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
9c1aa44f0096dbe3252774960fc9b8544a9db8e917a773f47b9a844d0f7cb2bb
|
|
BLAKE2b-256 checksum How to use checksums |
c17114fca868c8af955a69c7b96f039f07b4cc2e1afcf26639df49c84bc7e779
|
| 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.dev1768520142-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
| Download URL | stim-1.16.dev1768520142-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 |
67ece6f4022a114bd97c991b0024af3f932fa112cea772119719920c1a2acf72
|
|
BLAKE2b-256 checksum How to use checksums |
b302fae24dd6452744d252c5b6309a5733b85159a1a6cb652eda0073aac4f48e
|
| 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.dev1768520142-cp310-cp310-macosx_11_0_arm64.whl
| Download URL | stim-1.16.dev1768520142-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 |
9a8064760df72c70ae3e98ffb24c7839667b9a926570322c7ae2a1394ce1a1ce
|
|
BLAKE2b-256 checksum How to use checksums |
dcf231df8f1e1faa972406674be6858588bd0518bc5e7296c9aa150f6f36f7ee
|
| 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.dev1768520142-cp310-cp310-macosx_10_9_x86_64.whl
| Download URL | stim-1.16.dev1768520142-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 |
8f538564a365681f6284a8f3b76b86e3f714529053794d3af8e576e9019544a6
|
|
BLAKE2b-256 checksum How to use checksums |
0d0adb3e7aa7f8fe5694fcba20471a57d7bcb496fd76c438de35018a6cc09447
|
| 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.dev1768520142-cp39-cp39-win_amd64.whl
| Download URL | stim-1.16.dev1768520142-cp39-cp39-win_amd64.whl |
|---|---|
| Size | 2.8 MB |
| Tags | CPython 3.9 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
5fb19ff987a49fedae809ae11e3c44eb96d7285b262062410a322ed709be708a
|
|
BLAKE2b-256 checksum How to use checksums |
690d8fe7c9afce9911692750b8989e758436b42f047a65d0de76e88647b5a875
|
| 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.dev1768520142-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
| Download URL | stim-1.16.dev1768520142-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 |
a889ac9f6dd71ff481c83c745cf5b99d3245e411aa08a57a22f6ebb08b9fc470
|
|
BLAKE2b-256 checksum How to use checksums |
73f556783e2c150583fa0e8e0a88b763134750a3fc59a96156ee5c92a223677c
|
| 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.dev1768520142-cp39-cp39-macosx_11_0_arm64.whl
| Download URL | stim-1.16.dev1768520142-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 |
683d0af265c2a6f90747174ba33c09e2d1d62a2805b005829f576bc872faa24a
|
|
BLAKE2b-256 checksum How to use checksums |
5769e82901bba2840c96dcaa7fdc8d3dd2c0321ac83818745035a64576d38872
|
| 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.dev1768520142-cp39-cp39-macosx_10_9_x86_64.whl
| Download URL | stim-1.16.dev1768520142-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 |
a55c5c2b02a7faa51c59e9557934d4dc280c3f15cbd8544dd57248d96c7bc885
|
|
BLAKE2b-256 checksum How to use checksums |
7364c150902fc162c696e0e099e34f1b5a3ad2fc085797c8c070e04517452564
|
| 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.dev1768520142-cp38-cp38-win_amd64.whl
| Download URL | stim-1.16.dev1768520142-cp38-cp38-win_amd64.whl |
|---|---|
| Size | 2.7 MB |
| Tags | CPython 3.8 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
8d163d5371c737b95a20b40565135e5a8fe201cd765720b0c00eeb00ad80899e
|
|
BLAKE2b-256 checksum How to use checksums |
cda31805e141cc886fb0f4b35e8797e9c33f2a834b1b663abbe61b5ea49787c1
|
| 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.dev1768520142-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
| Download URL | stim-1.16.dev1768520142-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 |
a052d28ec2a8ea228823fa86c82af2ce54cab6ebe02e431844973e0a52a464ee
|
|
BLAKE2b-256 checksum How to use checksums |
8596512bdc6cb2e104479b151b98ca863188a80a08ca1527c3b7f72ea406a1e7
|
| 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.dev1768520142-cp38-cp38-macosx_11_0_arm64.whl
| Download URL | stim-1.16.dev1768520142-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 |
7656cf2bdac6b7337a097f76f750d2168f8bcf4c775fe6bf2dd2e57e59f4c08b
|
|
BLAKE2b-256 checksum How to use checksums |
71db251ff03d0dbd3ea4e51c02522e6e0f8da44872aa982a395884b23c96b3cd
|
| 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.dev1768520142-cp38-cp38-macosx_10_9_x86_64.whl
| Download URL | stim-1.16.dev1768520142-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 |
9ad117697b0f8441862462cd7a9cb8db572d2b16c84c26a5c0b0b4bf5d87fe4c
|
|
BLAKE2b-256 checksum How to use checksums |
aad6598600b3b8a902955656cfbae7b6896da2e64b965985ed2fd494aaf4ed7c
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.12.9
|