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.dev1770174832
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.dev1770174832.tar.gz | 881.8 kB | Details |
Built distributions (wheels)
Total release size: 87.1 MB
Release files / stim-1.16.dev1770174832.tar.gz
| Download URL | stim-1.16.dev1770174832.tar.gz |
|---|---|
| Size | 881.8 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
f0407a1382bd223d9e7b3cddfbe36e46e3d609a34936708132bf08b6d8152ac3
|
|
BLAKE2b-256 checksum How to use checksums |
2c9f7027990976de98e70ee732285463f1cdc76716c7d588220a77375f27b5dd
|
| 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.dev1770174832-cp314-cp314-win_amd64.whl
| Download URL | stim-1.16.dev1770174832-cp314-cp314-win_amd64.whl |
|---|---|
| Size | 2.8 MB |
| Tags | CPython 3.14 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
e079cb2da9ba403fd6fc509c68e7683b273626c7014738f09babe802d72c030a
|
|
BLAKE2b-256 checksum How to use checksums |
ea92c8d06d420b73f846ca4f59648515addb9731ad2eedf8c8c600910c067067
|
| 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.dev1770174832-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
| Download URL | stim-1.16.dev1770174832-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 |
f5cd4373472a4fdb7099dba410b9d7cc13020c6691266e12274f40a04d546ffc
|
|
BLAKE2b-256 checksum How to use checksums |
41fd1e9894ab174f4254cff7c9f909868897864fa096dc6e90f23b9e07b73f69
|
| 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.dev1770174832-cp314-cp314-macosx_11_0_arm64.whl
| Download URL | stim-1.16.dev1770174832-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 |
00f460ce8cd96253d2f35b014d58d66a12e955600a8efecc0418faa0bbf7cfe5
|
|
BLAKE2b-256 checksum How to use checksums |
00229e572327f05802bb830aa0bf88f4610b8943464c7d31099ee0b4a8ac3054
|
| 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.dev1770174832-cp314-cp314-macosx_10_15_x86_64.whl
| Download URL | stim-1.16.dev1770174832-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 |
34e9f6690946db11c28448354b0eaea7bebf8792bf207124f5e3c568785d6473
|
|
BLAKE2b-256 checksum How to use checksums |
f3ca1b90210d919bf23625f2b5b5dcdc42b4f5981fb801328c280435a5ece91f
|
| 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.dev1770174832-cp313-cp313-win_amd64.whl
| Download URL | stim-1.16.dev1770174832-cp313-cp313-win_amd64.whl |
|---|---|
| Size | 2.8 MB |
| Tags | CPython 3.13 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
39c55782efa970ac1bf78a98461ac57668891e51c1a04dabdeacf94b31be12bf
|
|
BLAKE2b-256 checksum How to use checksums |
f3fed771fc8c65d90147676591fb29f390d86e26fd9bb1914a11cb577a2d12e4
|
| 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.dev1770174832-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
| Download URL | stim-1.16.dev1770174832-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 |
fbcdcd130217c14755b79151ee2d5fb0a19880d241efbb9a3a7da3be957c2637
|
|
BLAKE2b-256 checksum How to use checksums |
61e07201fcb7ac5c70c47990bfb7efe26b02a646e297e193722685e235af8cda
|
| 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.dev1770174832-cp313-cp313-macosx_11_0_arm64.whl
| Download URL | stim-1.16.dev1770174832-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 |
65411519ee96e0b9b356cc01b92d8b3074770456a391cef84a0803ac20fceae4
|
|
BLAKE2b-256 checksum How to use checksums |
c377f70653213222028574c9c82a712fe063c1be901220088c781035abbf1110
|
| 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.dev1770174832-cp313-cp313-macosx_10_13_x86_64.whl
| Download URL | stim-1.16.dev1770174832-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 |
70a7105fabb4380c9b5c4b2c146dee74cec9599cea19dba8f4a30c957cee8eb5
|
|
BLAKE2b-256 checksum How to use checksums |
f37784ea05d9a2a365a6a9d2f36d491aa5cca82e3477a404ca14f68b3184a615
|
| 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.dev1770174832-cp312-cp312-win_amd64.whl
| Download URL | stim-1.16.dev1770174832-cp312-cp312-win_amd64.whl |
|---|---|
| Size | 1.5 MB |
| Tags | CPython 3.12 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
4878905caadc9222c12965f9e9a03127278442bfa2c31992b54aa93543d04ff1
|
|
BLAKE2b-256 checksum How to use checksums |
15978dfda0d3d04ef7d5d1659322c8b916bca5ece8cd987be86f245811363419
|
| 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.dev1770174832-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
| Download URL | stim-1.16.dev1770174832-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 |
283ad9f5bf213ebc3fe91453018bd4a928c9c9afdcb9600bc5ed6a0927f7494d
|
|
BLAKE2b-256 checksum How to use checksums |
af63b06f761cb12b0f47ada85828f0e19ebfab489dd4c0de15e9da8dc4899db7
|
| 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.dev1770174832-cp312-cp312-macosx_11_0_arm64.whl
| Download URL | stim-1.16.dev1770174832-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 |
20acff879cbb492af438bfc4f090b23fb73c6effa89b98fd0d07335e36ffdd98
|
|
BLAKE2b-256 checksum How to use checksums |
d2b42beee61ab9abbde0199ee3898a54a4ac97cafd5e7e424a8769b64923a3d2
|
| 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.dev1770174832-cp312-cp312-macosx_10_13_x86_64.whl
| Download URL | stim-1.16.dev1770174832-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 |
f2d045b4cea9f754e8e49e9071bad0ba595fea4d51ea7450cf984f5b6d262261
|
|
BLAKE2b-256 checksum How to use checksums |
28e66489e1b5e212e5d0651af97a979d0c4e7c8abb29df264c90588bc35d180e
|
| 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.dev1770174832-cp311-cp311-win_amd64.whl
| Download URL | stim-1.16.dev1770174832-cp311-cp311-win_amd64.whl |
|---|---|
| Size | 2.8 MB |
| Tags | CPython 3.11 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
afd0fc7aa34f7e1a7739a96d9c96145a03ecfb5d85f2098876220c1aa07baf79
|
|
BLAKE2b-256 checksum How to use checksums |
dae95c6fb1ed5ee64b1857d86a1fc0919a1c1ace03ca26c8cebc43b76611fae1
|
| 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.dev1770174832-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
| Download URL | stim-1.16.dev1770174832-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 |
63a446c99a0802e95740046ac6d6ccdf1b90d389e9a2041d33e2ee881af3c3fe
|
|
BLAKE2b-256 checksum How to use checksums |
9c7bec149af74c9adf74e1aecd2030eadce8b4267d310af7f6e55102dc7c1580
|
| 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.dev1770174832-cp311-cp311-macosx_11_0_arm64.whl
| Download URL | stim-1.16.dev1770174832-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 |
c583f75b9c349e3669abdf2e80d5e027044ad1b4063a504e5801772083ea698a
|
|
BLAKE2b-256 checksum How to use checksums |
e003820c3831e95cb8ceffe4666dddcd55cb099bf5c8d77c87294381d271a43c
|
| 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.dev1770174832-cp311-cp311-macosx_10_9_x86_64.whl
| Download URL | stim-1.16.dev1770174832-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 |
60182718d97c2e8dc567b1650d08dd422168195667cbd3f6f316f6baa476ee25
|
|
BLAKE2b-256 checksum How to use checksums |
761db41c320d5e39623f2369a34248161eb05d146629dfd184f11bab0be7869c
|
| 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.dev1770174832-cp310-cp310-win_amd64.whl
| Download URL | stim-1.16.dev1770174832-cp310-cp310-win_amd64.whl |
|---|---|
| Size | 2.8 MB |
| Tags | CPython 3.10 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
7e2d9cba8822c374f0ea01a4ad7448f2176ff0f5c099f25a1554e1cd9c180fcc
|
|
BLAKE2b-256 checksum How to use checksums |
2383a737425466e7f0b83f069e021f61c0c012115f75acec2aea863f5a5c3da3
|
| 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.dev1770174832-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
| Download URL | stim-1.16.dev1770174832-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 |
ce183719b38139bb6f033e332022aad82996282aeac3e05be3f99902d6568cf1
|
|
BLAKE2b-256 checksum How to use checksums |
492bb407f0a1d7162bd68172b51953c409fefc68b6b201dcef1e0fb2d8c2616a
|
| 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.dev1770174832-cp310-cp310-macosx_11_0_arm64.whl
| Download URL | stim-1.16.dev1770174832-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 |
9bc49ffb739310b383e64b557e3bca159a06199bae4852053194e6b9a0ebf44d
|
|
BLAKE2b-256 checksum How to use checksums |
9553aee73cf4385a67b88951cc3fe91b0914cc572c0a5af7d7e04563c356d0c6
|
| 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.dev1770174832-cp310-cp310-macosx_10_9_x86_64.whl
| Download URL | stim-1.16.dev1770174832-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 |
d8b2b1fb28ba7bc870a09b9f81ff31e5c90613a20ac42e4e2fb749f7ff15a7fd
|
|
BLAKE2b-256 checksum How to use checksums |
8d7748f9fc6a91acd0ffb3ad36ef1839fd9a22d370d10bb719d8f3bb61a0eeb7
|
| 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.dev1770174832-cp39-cp39-win_amd64.whl
| Download URL | stim-1.16.dev1770174832-cp39-cp39-win_amd64.whl |
|---|---|
| Size | 2.8 MB |
| Tags | CPython 3.9 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
c3230ad6bf109caa0f0a8f7608cf2b0277bdf752d93104b9ce6b91207d61907c
|
|
BLAKE2b-256 checksum How to use checksums |
923391518dcb9dd1efb5d2270a7604db3857aaf585d1586e90d71f6fdb925a08
|
| 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.dev1770174832-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
| Download URL | stim-1.16.dev1770174832-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 |
ede1e10806cac59b092bef7a63a2c82008f0cd734b47484712c11215c792d966
|
|
BLAKE2b-256 checksum How to use checksums |
bcc29846333d850b9c5c866e8f763470010dc62d9c9c2c458c8b83dc7522e66a
|
| 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.dev1770174832-cp39-cp39-macosx_11_0_arm64.whl
| Download URL | stim-1.16.dev1770174832-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 |
764a6ac33711527bf7ca281f6666a5c2090753c6f07ae696484412bf5e109840
|
|
BLAKE2b-256 checksum How to use checksums |
0251d93cc53c7a371943379e37889d183ed03a1b60d65ffdc3259a7f378d37a9
|
| 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.dev1770174832-cp39-cp39-macosx_10_9_x86_64.whl
| Download URL | stim-1.16.dev1770174832-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 |
77bdf3fc5697d7a43b785a115b5190c450958c5b7a583d3ac4c333599de80ff1
|
|
BLAKE2b-256 checksum How to use checksums |
d200b42c0c768e94f36b37f955f6f19599e435e104bfb29ddf480cfd4c66bf1b
|
| 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.dev1770174832-cp38-cp38-win_amd64.whl
| Download URL | stim-1.16.dev1770174832-cp38-cp38-win_amd64.whl |
|---|---|
| Size | 2.7 MB |
| Tags | CPython 3.8 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
f1476f40e438a024e61362aed1c4fdd1780f131265e6e9d3cd865903749f2c2f
|
|
BLAKE2b-256 checksum How to use checksums |
8ae4b3ff0a4c6dd5b16b637b4c4947f1467b0a1c5dc12d0887f59d91cef14785
|
| 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.dev1770174832-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
| Download URL | stim-1.16.dev1770174832-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 |
c10892858664589af38ef09343d6ad6e3ee3a1d14e599a6ee14c74341bbe2135
|
|
BLAKE2b-256 checksum How to use checksums |
be80ddec47030605a749589e223cb3ce61e29467d8414ba478db916e0bc71178
|
| 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.dev1770174832-cp38-cp38-macosx_11_0_arm64.whl
| Download URL | stim-1.16.dev1770174832-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 |
192bac1b204c6cea990fbab9ecde2c8d2b79d433d71867d4343d7080ed8f30f5
|
|
BLAKE2b-256 checksum How to use checksums |
5dc362fda1f7a1ff4ffed4b5440767190dd7f91ec169b31c1d5922339b889d0a
|
| 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.dev1770174832-cp38-cp38-macosx_10_9_x86_64.whl
| Download URL | stim-1.16.dev1770174832-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 |
f9851316f18d7a43566ff83c88c2d3de6dca3fbe32884fe29fadc95b90a84c5f
|
|
BLAKE2b-256 checksum How to use checksums |
e76716ea0f8701ab780911a0a356b2ead414785ef1ff0481134c58cfca892105
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.12.9
|