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.dev1768963940
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.dev1768963940.tar.gz | 881.2 kB | Details |
Built distributions (wheels)
Total release size: 88.3 MB
Release files / stim-1.16.dev1768963940.tar.gz
| Download URL | stim-1.16.dev1768963940.tar.gz |
|---|---|
| Size | 881.2 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
4568d18d5e720811627c40aeaaf1cab32528e70a5974b5e2cc0a959e6c01617f
|
|
BLAKE2b-256 checksum How to use checksums |
c658869cdcfaf297fcd40e98283c0a51ef19a32ad517a79efd127724ad15e15f
|
| 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.dev1768963940-cp314-cp314-win_amd64.whl
| Download URL | stim-1.16.dev1768963940-cp314-cp314-win_amd64.whl |
|---|---|
| Size | 2.8 MB |
| Tags | CPython 3.14 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
ed4656f6a0168e49511e31fc27a46991a5b4021ff558f138df5ad67855dc8eb4
|
|
BLAKE2b-256 checksum How to use checksums |
f607d6d62b3f814d6e17b66016bf4b2f30b9f0d277aec22615fb4041cbb5a75c
|
| 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.dev1768963940-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
| Download URL | stim-1.16.dev1768963940-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 |
9e77bcd1c1e5db2f4049508fc0407eb4f9e5641962780d96d9334d42fbfd7e54
|
|
BLAKE2b-256 checksum How to use checksums |
2b0a59dc987497fc0581e3410fdfafb45e7260814cc39b5a9013ea3329f4fa1b
|
| 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.dev1768963940-cp314-cp314-macosx_11_0_arm64.whl
| Download URL | stim-1.16.dev1768963940-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 |
5204e809d439dc7a048b2bd6229f120d04cf31ac8f35b68cee9e74c6e4622ba8
|
|
BLAKE2b-256 checksum How to use checksums |
ee071445e6631d6ab40bf19eeafafd82ce5f0f78572bc3d3584c5943dc57b6d4
|
| 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.dev1768963940-cp314-cp314-macosx_10_15_x86_64.whl
| Download URL | stim-1.16.dev1768963940-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 |
191280e8e746045c283f16153aa0f8e82e20a0c8ed5b5878639b2990e1f1c105
|
|
BLAKE2b-256 checksum How to use checksums |
df1c19dd827d223eaad779a8688cef923019612f10d18fe9629eecc79a6483c5
|
| 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.dev1768963940-cp313-cp313-win_amd64.whl
| Download URL | stim-1.16.dev1768963940-cp313-cp313-win_amd64.whl |
|---|---|
| Size | 2.7 MB |
| Tags | CPython 3.13 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
46cec92a6aa92aae21da5f4f5ccae02a190b5126a58e77c04a7a7bc613e6b551
|
|
BLAKE2b-256 checksum How to use checksums |
1d369bdbc8c3891896d70a7a902908a9e73427cd92737253204e724dc3d7e925
|
| 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.dev1768963940-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
| Download URL | stim-1.16.dev1768963940-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 |
4fd9ce30e4ecedc5180ba9d69727007e401a21b4f1c72036bad63599ad9ae733
|
|
BLAKE2b-256 checksum How to use checksums |
be63d5321e231522588d6725b3da54721eebf0fe1e691332b53532f8f657d6e7
|
| 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.dev1768963940-cp313-cp313-macosx_11_0_arm64.whl
| Download URL | stim-1.16.dev1768963940-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 |
f69b10142a6fdb5cebdb0daa7cfb89690891238580156710f233c58571673547
|
|
BLAKE2b-256 checksum How to use checksums |
8976638c9f8b94b94793b6c7e0d6fd0dc9f0456ed2533573d4feacba11663303
|
| 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.dev1768963940-cp313-cp313-macosx_10_13_x86_64.whl
| Download URL | stim-1.16.dev1768963940-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 |
1b444afd368fbeddec1cd44f86f2e98f3f86b1b31bc82c27c43d553436ab9216
|
|
BLAKE2b-256 checksum How to use checksums |
e56ccfc419770840bf113c26188aa28e0ee6f9248529d1619483b1445fe0fb47
|
| 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.dev1768963940-cp312-cp312-win_amd64.whl
| Download URL | stim-1.16.dev1768963940-cp312-cp312-win_amd64.whl |
|---|---|
| Size | 2.7 MB |
| Tags | CPython 3.12 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
18dd75ddc98cc61a3efaeb8c497d94f8b66e3f75e148fc49938ae389d295762c
|
|
BLAKE2b-256 checksum How to use checksums |
4e689dd008864be652073917179b247de1939482e218dca2ee66b1ee4e132c33
|
| 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.dev1768963940-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
| Download URL | stim-1.16.dev1768963940-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 |
0e3f480ec29129cca13b1d7f03b6387b9aa0f6f7201331c90c754a7c37e1960f
|
|
BLAKE2b-256 checksum How to use checksums |
454a2aafde91901fc8348a42bd48964b8d794dfdd8f9162a94e49e0038c65241
|
| 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.dev1768963940-cp312-cp312-macosx_11_0_arm64.whl
| Download URL | stim-1.16.dev1768963940-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 |
7984c3d2602709f171cfe07c33ffc144967de2442c7c4ca6b579da74618c3a2a
|
|
BLAKE2b-256 checksum How to use checksums |
9952589e3c4ff5ed1b75cbf4c1a7e4232da7d0252da132ea80af01aca217cf8d
|
| 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.dev1768963940-cp312-cp312-macosx_10_13_x86_64.whl
| Download URL | stim-1.16.dev1768963940-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 |
bbbfeff1f83a2e8c7f89e4c2bbd3f171c8cdc0ff7c7d7433ba8ef69850e8f74c
|
|
BLAKE2b-256 checksum How to use checksums |
2bbbea9978081ea094e09880b5149ee9e5df17d69ec6a311d3b4ad4819eb9cde
|
| 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.dev1768963940-cp311-cp311-win_amd64.whl
| Download URL | stim-1.16.dev1768963940-cp311-cp311-win_amd64.whl |
|---|---|
| Size | 2.7 MB |
| Tags | CPython 3.11 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
4bcc4ad1904e8d584d176b3cba49a73c347ba7aa178965d501f870aa47fc6332
|
|
BLAKE2b-256 checksum How to use checksums |
ba816fee1f99f6b450394c3dee5763b598b637d5fbd7549f79986d1c33bc4a37
|
| 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.dev1768963940-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
| Download URL | stim-1.16.dev1768963940-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 |
d5d7739f48c0cc8d8d0390c185431ed51999961783dba6dfe699087a20d8ec2b
|
|
BLAKE2b-256 checksum How to use checksums |
3740766354f6851149f81ef1e9720e926382c82cce887c91714d3cb2d3cab701
|
| 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.dev1768963940-cp311-cp311-macosx_11_0_arm64.whl
| Download URL | stim-1.16.dev1768963940-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 |
dd02688b72da8e544e620cadd299689530324af1d245bfcf8f9cbfcbd2897548
|
|
BLAKE2b-256 checksum How to use checksums |
e60a7e84b77d8f1f5fc9651c1912a16580a15dd5fe518f8587cd92ea646cbe19
|
| 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.dev1768963940-cp311-cp311-macosx_10_9_x86_64.whl
| Download URL | stim-1.16.dev1768963940-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 |
cb390dba91ce2d1f44cc9bc62987a3fb8184ab04a63c859b149b7e5c6217a97b
|
|
BLAKE2b-256 checksum How to use checksums |
f9b737e9f8a1c54e8a4ecdaf87973705d0a782e9871386e61e67260955bae02e
|
| 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.dev1768963940-cp310-cp310-win_amd64.whl
| Download URL | stim-1.16.dev1768963940-cp310-cp310-win_amd64.whl |
|---|---|
| Size | 2.7 MB |
| Tags | CPython 3.10 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
d0217e6e818f68dccc5535242d1ac8eed93f7eb4d5f9c40c462bb3fe74c49321
|
|
BLAKE2b-256 checksum How to use checksums |
5ac0107d0fb739e3e0c4eb350c296cead21c80b68f76eeff99df2037bf955849
|
| 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.dev1768963940-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
| Download URL | stim-1.16.dev1768963940-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 |
a6d641adfc186b227ca15277fb61c078b04a9fb15db507567fc3313ab83572b7
|
|
BLAKE2b-256 checksum How to use checksums |
01efe7fbb657e5106badb1f018a7779185aaad4f4f1f62b4063058b77feb5f34
|
| 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.dev1768963940-cp310-cp310-macosx_11_0_arm64.whl
| Download URL | stim-1.16.dev1768963940-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 |
88ca747c62796415bb07252252132addd3ee85519342b8defd18698c96c9ba17
|
|
BLAKE2b-256 checksum How to use checksums |
2e3d7b27adaa4010f748ffcad20d16ff8c0528f19e29789ff73b7cac34ad2fd9
|
| 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.dev1768963940-cp310-cp310-macosx_10_9_x86_64.whl
| Download URL | stim-1.16.dev1768963940-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 |
f356c8ed3aa6d5f55294947bdf242a0678e4b7d00f8ad20cc3fe6acbba3da62c
|
|
BLAKE2b-256 checksum How to use checksums |
84d056dcda8485b25ca8b01129bfac11924110591fc3d60e82f89715ddf76806
|
| 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.dev1768963940-cp39-cp39-win_amd64.whl
| Download URL | stim-1.16.dev1768963940-cp39-cp39-win_amd64.whl |
|---|---|
| Size | 2.8 MB |
| Tags | CPython 3.9 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
2cb2b69b4b0e4b5769d48ecc1b2dd5472c469cb5b9a0aacce27ffd595f2e83bc
|
|
BLAKE2b-256 checksum How to use checksums |
61d5ac2e0b6f81bac3aa4178f795d698f2b4d9b0f7452481c5b359f23eab4e95
|
| 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.dev1768963940-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
| Download URL | stim-1.16.dev1768963940-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 |
8509b05c10e1b0b6921803dc082c59a70708532a42921cd126c06a5197b15ea7
|
|
BLAKE2b-256 checksum How to use checksums |
41def0bf12680697c636c9de1c7d08c68a6fddad1bf41e592548e629f4d2c8e5
|
| 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.dev1768963940-cp39-cp39-macosx_11_0_arm64.whl
| Download URL | stim-1.16.dev1768963940-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 |
0ad619709befb55fd3fb7e0b5a4336dc4566490d83dbd4e3a4c4bfdab18775ff
|
|
BLAKE2b-256 checksum How to use checksums |
bfd1fd725dcb0fe31f66a3775619ca3a480213310a8182b4b4dee88f9e664d7f
|
| 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.dev1768963940-cp39-cp39-macosx_10_9_x86_64.whl
| Download URL | stim-1.16.dev1768963940-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 |
932616c46c9da8e05277ceb72e20a453d96b9b5273abd012e5127f7cd5199776
|
|
BLAKE2b-256 checksum How to use checksums |
7c92a74365c16547245937384b4d928c698fb9700e9673dc976c3e852025931c
|
| 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.dev1768963940-cp38-cp38-win_amd64.whl
| Download URL | stim-1.16.dev1768963940-cp38-cp38-win_amd64.whl |
|---|---|
| Size | 2.7 MB |
| Tags | CPython 3.8 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
c3925cf87fdde1ecf257a461a16d58028981992f7ef88fb2938c7961ae688b87
|
|
BLAKE2b-256 checksum How to use checksums |
9cbe672f50fb066ea48ada031540884ddb5812f0b8ddd72778c16f773befc5a4
|
| 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.dev1768963940-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
| Download URL | stim-1.16.dev1768963940-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 |
8eacdfd19c467ef101a83ef7fe64c2db7e94b1ef3b76b922ae73b4f437f8caa9
|
|
BLAKE2b-256 checksum How to use checksums |
f12c10e2a672a2cd2ff9065b417f99957cae148a7a9ef7dc0cc354c175ec0598
|
| 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.dev1768963940-cp38-cp38-macosx_11_0_arm64.whl
| Download URL | stim-1.16.dev1768963940-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 |
d7c836d0ea574ea3aaa6e9d6ad260b979b9a07c734278753555e38020a5901dd
|
|
BLAKE2b-256 checksum How to use checksums |
e5ae8f7713ff62a0eb0eb9366e474a6b8d4fafee5e63bf7ef67fcb750e649acf
|
| 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.dev1768963940-cp38-cp38-macosx_10_9_x86_64.whl
| Download URL | stim-1.16.dev1768963940-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 |
8bb6d6cc0615752cb44fe5ab2a52d8e3f0d6ecbc493264fb13c31df27b452f74
|
|
BLAKE2b-256 checksum How to use checksums |
740b30777e5ecaa1b044aaae5b994f8fec44713d2c4a52e2ab64a7d0b3eb9f92
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.12.9
|