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.dev1773248378
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.dev1773248378.tar.gz | 881.9 kB | Details |
Built distributions (wheels)
Total release size: 88.4 MB
Release files / stim-1.16.dev1773248378.tar.gz
| Download URL | stim-1.16.dev1773248378.tar.gz |
|---|---|
| Size | 881.9 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
1bf2bfb9bb1da6d300c588ae67a3881d4bd8193a0af8749b45e4aafb127668f2
|
|
BLAKE2b-256 checksum How to use checksums |
42edfad46583bb1a44a0da6075c451923475392095379f827d7a65400e62723e
|
| 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.dev1773248378-cp314-cp314-win_amd64.whl
| Download URL | stim-1.16.dev1773248378-cp314-cp314-win_amd64.whl |
|---|---|
| Size | 2.8 MB |
| Tags | CPython 3.14 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
e58c5bb826ceb5cf0b799d055083ed1f7b48678a03de52a6f5137c5c866c1254
|
|
BLAKE2b-256 checksum How to use checksums |
7b76c38f431fab2b73b400ba61e54100af9b087e8d50df93e4048f376e459b8c
|
| 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.dev1773248378-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
| Download URL | stim-1.16.dev1773248378-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 |
42461a063b2f795e64b7be836770687d3e2baff9b3efc862275f674ee1915d8f
|
|
BLAKE2b-256 checksum How to use checksums |
33ef1f8ea2550e10ec79771cfeaf802fe2782644fc0a1611cb73bdc64865dc72
|
| 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.dev1773248378-cp314-cp314-macosx_11_0_arm64.whl
| Download URL | stim-1.16.dev1773248378-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 |
d4cd22687560cf8e606b1f04ccc96176f706ad805c9cf39304b838d9f5fbf462
|
|
BLAKE2b-256 checksum How to use checksums |
b4eff5d32dc8a8969ed33c83cb803606016af73d9e557187f486e917161aa5c5
|
| 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.dev1773248378-cp314-cp314-macosx_10_15_x86_64.whl
| Download URL | stim-1.16.dev1773248378-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 |
e1c3adc3ae43e30d364b82f71c263e8a5eb75de8b85777545a3e1d5f33dd298e
|
|
BLAKE2b-256 checksum How to use checksums |
a509a9b24917bff0613af4fd4893ca6a540e043935d2a7888ba1d8ac19247e3d
|
| 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.dev1773248378-cp313-cp313-win_amd64.whl
| Download URL | stim-1.16.dev1773248378-cp313-cp313-win_amd64.whl |
|---|---|
| Size | 2.8 MB |
| Tags | CPython 3.13 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
61f5aa237431c8ca236eac6a93827495842e970b2c22e5ff66edc66146909b3b
|
|
BLAKE2b-256 checksum How to use checksums |
3ab976d4b797d80a0c49e223772b045360878e27e3433b2bc3b8eefdcd305ceb
|
| 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.dev1773248378-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
| Download URL | stim-1.16.dev1773248378-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 |
c97115da04032a47c0e9b5c7314b80bfd5656f26a722a7b2ccb2a70638e4ccc1
|
|
BLAKE2b-256 checksum How to use checksums |
1bbf4b66caa1fc704f1dd0367e846f3e005a54680431c17b10f045f78363410c
|
| 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.dev1773248378-cp313-cp313-macosx_11_0_arm64.whl
| Download URL | stim-1.16.dev1773248378-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 |
d0d542df98fdeba00b963a2be6eda443238b53eed93e942787897b77ae765ce5
|
|
BLAKE2b-256 checksum How to use checksums |
ba971e075b60dd706978abfd6725cefd8439ced1a8090793f1a6610c5d0b6953
|
| 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.dev1773248378-cp313-cp313-macosx_10_13_x86_64.whl
| Download URL | stim-1.16.dev1773248378-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 |
5e87745f21a51b7db9dd065f09d223fcf47788c1c00dff2b8e99307f64339bf1
|
|
BLAKE2b-256 checksum How to use checksums |
14375064d2560a7454e4d4618bd75d889fe4a1e896057e7892f8439361b4221a
|
| 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.dev1773248378-cp312-cp312-win_amd64.whl
| Download URL | stim-1.16.dev1773248378-cp312-cp312-win_amd64.whl |
|---|---|
| Size | 2.8 MB |
| Tags | CPython 3.12 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
7168ab1eaa616f23167e51164a3e643d85b75b2f087feb1867fa670dda72b681
|
|
BLAKE2b-256 checksum How to use checksums |
2605c70d306536e2d8dfd673b1bfeddf4de6047864e480fdc8c02c1b7dd5f1ee
|
| 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.dev1773248378-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
| Download URL | stim-1.16.dev1773248378-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 |
a2acff662d239342d9eb9465cb0af49b9e1e8be675266f0772dc1d217ca65a8f
|
|
BLAKE2b-256 checksum How to use checksums |
7edce46a92a674555a37722503c01d859de75c6f0ff91f0f3335ce9d0f54bd69
|
| 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.dev1773248378-cp312-cp312-macosx_11_0_arm64.whl
| Download URL | stim-1.16.dev1773248378-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 |
966504fe553f3767469257218792970a5e0966947b5f074d2f66642049662abf
|
|
BLAKE2b-256 checksum How to use checksums |
2f28cccbdcce427bbd5412e72481ad51b28d443b9a7bcc75e7262d2bc97812ec
|
| 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.dev1773248378-cp312-cp312-macosx_10_13_x86_64.whl
| Download URL | stim-1.16.dev1773248378-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 |
afe15697fb93f5e9ef5ebefa2746dd29b6b7af76610fa615bd154dc4c33842a6
|
|
BLAKE2b-256 checksum How to use checksums |
367497d1c2f925b7743516e4c38ca3f3660c5e5a9b78f125688582ec7736ed61
|
| 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.dev1773248378-cp311-cp311-win_amd64.whl
| Download URL | stim-1.16.dev1773248378-cp311-cp311-win_amd64.whl |
|---|---|
| Size | 2.8 MB |
| Tags | CPython 3.11 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
75b3118529b6c14c0e8efe7b168d86cbfe015f19a7f37aa210ad0c0b2dfb1803
|
|
BLAKE2b-256 checksum How to use checksums |
055f73a903e28845879af60f51f2cfb433cc298a800c1742bf4527767409c09f
|
| 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.dev1773248378-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
| Download URL | stim-1.16.dev1773248378-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 |
9e892b512b76a25f2e409db420d1e1f44c2f0440995b0601c351d919204f065e
|
|
BLAKE2b-256 checksum How to use checksums |
948d641da4ff7de408e33d89e9c877ee478ccfaef5687701cd3a2a0e4981bba9
|
| 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.dev1773248378-cp311-cp311-macosx_11_0_arm64.whl
| Download URL | stim-1.16.dev1773248378-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 |
01d591118fc4db0ec8d0f3e36e5f95f87a0fbe694981d0feaf9eb524727868c3
|
|
BLAKE2b-256 checksum How to use checksums |
7c60211027c749b2ac7adf9417ac4833de343c7ca4ff8bb25a082783fc55dbed
|
| 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.dev1773248378-cp311-cp311-macosx_10_9_x86_64.whl
| Download URL | stim-1.16.dev1773248378-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 |
d55c6def412ee612eb35b3826bd91352282e5907e607ce64ac6882772488e490
|
|
BLAKE2b-256 checksum How to use checksums |
523e51862cec7bbbddff5f1a6cf62434890bd4985e6e826f0723b270d1b12f22
|
| 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.dev1773248378-cp310-cp310-win_amd64.whl
| Download URL | stim-1.16.dev1773248378-cp310-cp310-win_amd64.whl |
|---|---|
| Size | 2.8 MB |
| Tags | CPython 3.10 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
abb776b2db2778f11a80a9f222b010d06bf68fac97274c667fd150da685bf933
|
|
BLAKE2b-256 checksum How to use checksums |
20dc3a0b05a23c8db8a433dbd2e2ceb105fb9f7adaa383624ff03855188decbe
|
| 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.dev1773248378-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
| Download URL | stim-1.16.dev1773248378-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 |
83e4da5ca6b86bbbf58d0ead9f3df0fdef0617cf860a5e2a6aa24e399cbc5a78
|
|
BLAKE2b-256 checksum How to use checksums |
9c32da3d633b4f9b355fd2c0118a3ebde4612bdca08321c5b1ba22cea8d6fb09
|
| 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.dev1773248378-cp310-cp310-macosx_11_0_arm64.whl
| Download URL | stim-1.16.dev1773248378-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 |
c0a765f29d6160369704ed33ff966644e158e9fafa45aa85964aeec4c7f00257
|
|
BLAKE2b-256 checksum How to use checksums |
af427540bc36b943981944a38b0e2690b6ed627ebad0620926802b4e6c3ad9be
|
| 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.dev1773248378-cp310-cp310-macosx_10_9_x86_64.whl
| Download URL | stim-1.16.dev1773248378-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 |
c03c17a2546cee659ffb9e810231f83c4f69dc5869bd8334a4744a6a93fa37c2
|
|
BLAKE2b-256 checksum How to use checksums |
871568dfd364662d4e200e2f22220ecadcaacf500616a797b6764d796f0a8dcc
|
| 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.dev1773248378-cp39-cp39-win_amd64.whl
| Download URL | stim-1.16.dev1773248378-cp39-cp39-win_amd64.whl |
|---|---|
| Size | 2.8 MB |
| Tags | CPython 3.9 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
fd413ff3cdc9a483fd72e2cb4a597cc0d3c1cd61271cee19883eefa523fcc1ea
|
|
BLAKE2b-256 checksum How to use checksums |
634ac343e4f101d33aa18d957d7cae12e12c5d388736701f676fa27497d3f851
|
| 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.dev1773248378-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
| Download URL | stim-1.16.dev1773248378-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 |
7af1762d78809f60de4fe17c7d3fdbbd04ac625765def114ed5ce8c1d315cadc
|
|
BLAKE2b-256 checksum How to use checksums |
2a5ac77b335ff54280c686a3791239b6a99d2f946d9aea5cb6d6545fdb034d4b
|
| 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.dev1773248378-cp39-cp39-macosx_11_0_arm64.whl
| Download URL | stim-1.16.dev1773248378-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 |
d40f6914fb94f621ff3ab9d335a8c2eb916efde58363093f47fd1757bde657aa
|
|
BLAKE2b-256 checksum How to use checksums |
c246a5c4d2472c884fdc36e21f7c3f5d1844881580d8e1bf881a6e8c5d202716
|
| 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.dev1773248378-cp39-cp39-macosx_10_9_x86_64.whl
| Download URL | stim-1.16.dev1773248378-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 |
db6743403ff9fac771356aec0d6cf380b4600cdbb58bda426745e954af16116a
|
|
BLAKE2b-256 checksum How to use checksums |
984658e5f45d213f2de424e172319fdd4bcb96660c316d0c824db4fbd869c7d4
|
| 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.dev1773248378-cp38-cp38-win_amd64.whl
| Download URL | stim-1.16.dev1773248378-cp38-cp38-win_amd64.whl |
|---|---|
| Size | 2.7 MB |
| Tags | CPython 3.8 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
beec8e4ab2688a62f6ee770ea15c4b2398b778daf43d4fdf34da2dc239772e63
|
|
BLAKE2b-256 checksum How to use checksums |
5092e520a92d2c19b6441a1665c42dce61a2250c377a226862ac53f7293c4af6
|
| 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.dev1773248378-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
| Download URL | stim-1.16.dev1773248378-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 |
0de8a5023c326f3889858c5710d6fed98611384a2c9fcf1bd5b76c028ffd72a7
|
|
BLAKE2b-256 checksum How to use checksums |
282194bb61747de199a1522884e040b3343ecc90f3e2bc096075509ef09bb61c
|
| 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.dev1773248378-cp38-cp38-macosx_11_0_arm64.whl
| Download URL | stim-1.16.dev1773248378-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 |
aeb5eb683a62ac3cd3e6be0f4368b34bb5c5255ddb88034cfcd138171833569a
|
|
BLAKE2b-256 checksum How to use checksums |
1daf258ea1bc06e5e56d3da942e04902fa4db53e4064003701765c8fcfb58923
|
| 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.dev1773248378-cp38-cp38-macosx_10_9_x86_64.whl
| Download URL | stim-1.16.dev1773248378-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 |
75acb62d56fa6289dbac79046922c315529c74c97f8652ec9184ed301830335d
|
|
BLAKE2b-256 checksum How to use checksums |
101f23215fd1bdf5915cc94399cc6bd0df97fb9fa88bc15b855f941c4ab79bc1
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.12.9
|