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.dev1770171649
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.dev1770171649.tar.gz | 881.8 kB | Details |
Built distributions (wheels)
Total release size: 88.4 MB
Release files / stim-1.16.dev1770171649.tar.gz
| Download URL | stim-1.16.dev1770171649.tar.gz |
|---|---|
| Size | 881.8 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
13ede12a7330cf38cfeaab6bae2eac6fd7b7fdcd2abb9352f555e8b3d5127587
|
|
BLAKE2b-256 checksum How to use checksums |
c3f0ab2808f37cf2a5d635f1039c40279ed94884361010ef16bbfb1a11d536e5
|
| 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.dev1770171649-cp314-cp314-win_amd64.whl
| Download URL | stim-1.16.dev1770171649-cp314-cp314-win_amd64.whl |
|---|---|
| Size | 2.8 MB |
| Tags | CPython 3.14 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
32d5b69324372e5688a7e7d7a1cc4d133f4a1a571f65d9e2a25ac0b505ef744d
|
|
BLAKE2b-256 checksum How to use checksums |
2a55f329bd30ff76c379197fcc9e6418e357bd8821155f1384fc49c86e385f08
|
| 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.dev1770171649-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
| Download URL | stim-1.16.dev1770171649-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 |
788f14aeb230ef53e9e0acc9c4068475c32ec515a20fb3c84861d92d12046ea3
|
|
BLAKE2b-256 checksum How to use checksums |
213f4cd08a0e2137879f15fc1f94c52b0955f3d954ad44314b0d7b04546bd74f
|
| 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.dev1770171649-cp314-cp314-macosx_11_0_arm64.whl
| Download URL | stim-1.16.dev1770171649-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 |
899b3dd7b90081d50aea28994666577920840c1226005e5f216718a45bf79988
|
|
BLAKE2b-256 checksum How to use checksums |
a96543a1cfaed01e182aaf6bf8756c335b37478ed4e234e2556a4d5176e910e4
|
| 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.dev1770171649-cp314-cp314-macosx_10_15_x86_64.whl
| Download URL | stim-1.16.dev1770171649-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 |
4cbb3315766e9181102f787426ca8ec7e56c2ec9bd511b29eef8289b6277d596
|
|
BLAKE2b-256 checksum How to use checksums |
8719a6b05eaf202ca9b9da86fb71a590330844dbe54b2c3cb8bec98b8b882440
|
| 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.dev1770171649-cp313-cp313-win_amd64.whl
| Download URL | stim-1.16.dev1770171649-cp313-cp313-win_amd64.whl |
|---|---|
| Size | 2.8 MB |
| Tags | CPython 3.13 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
d5e305dbecb5cc45b10d5836712f3b9514d47b2a666c0fa516f189e778813a08
|
|
BLAKE2b-256 checksum How to use checksums |
9b38c6a478141b76dd7e602900ea15ea39771f909fabb6f10da7a5e44c94166d
|
| 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.dev1770171649-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
| Download URL | stim-1.16.dev1770171649-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 |
e8228470a1c5c2ec9e29a89309ecb44836afc76e5f27c6fa0809ffb40c40da31
|
|
BLAKE2b-256 checksum How to use checksums |
6406b585093f6c813a11aa990669e60fc9e9a943b84f9e5d28a52d1439d7e3b9
|
| 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.dev1770171649-cp313-cp313-macosx_11_0_arm64.whl
| Download URL | stim-1.16.dev1770171649-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 |
d700b7c929ac991c4a256f501a4860fd21b77f10ddb1725f193ae3deba8c85ef
|
|
BLAKE2b-256 checksum How to use checksums |
6ba5c4c6e0e20c41eafc4e2e82aaff2203d9faf122c3934276c4cfd9aa31ce98
|
| 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.dev1770171649-cp313-cp313-macosx_10_13_x86_64.whl
| Download URL | stim-1.16.dev1770171649-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 |
663481747e320ce83ce60074a3558bc276c4f3c9726a093bf9cb5b159a85a75f
|
|
BLAKE2b-256 checksum How to use checksums |
a674e9bd09bc394ef0fa2fad2c1ae738c78bf48fcf29f048d6880beb9689707d
|
| 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.dev1770171649-cp312-cp312-win_amd64.whl
| Download URL | stim-1.16.dev1770171649-cp312-cp312-win_amd64.whl |
|---|---|
| Size | 2.8 MB |
| Tags | CPython 3.12 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
532ec4d5ca05702532153c10b492fd1cd0a2f4ead077756c8cda910a64ce56f3
|
|
BLAKE2b-256 checksum How to use checksums |
98560ec4b8132d70c67da22040aa31381fc3f7974e407f2b2b44c5ddda7ae65e
|
| 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.dev1770171649-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
| Download URL | stim-1.16.dev1770171649-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 |
96902e08baf62a9e501e4ab215faadbbad8cb08929946ff26a06ee1074535c60
|
|
BLAKE2b-256 checksum How to use checksums |
6dae9addb7195d98531aec08490de0302b70b26d6184653d7e681bafbf2a4139
|
| 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.dev1770171649-cp312-cp312-macosx_11_0_arm64.whl
| Download URL | stim-1.16.dev1770171649-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 |
b38f20679754fa6b9128508a2ecbd4051b8ee4ae046a020ede3fb6a5dafb0dac
|
|
BLAKE2b-256 checksum How to use checksums |
a4a77f5787d23d61ed7229b2317b98e77580da532078ca320a6819f4e0e87e3d
|
| 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.dev1770171649-cp312-cp312-macosx_10_13_x86_64.whl
| Download URL | stim-1.16.dev1770171649-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 |
ca56fff5ca8feac4ae42518fcba6dcde3c38381ab0cd4115ea911b8028afa18c
|
|
BLAKE2b-256 checksum How to use checksums |
89a14f3a85ea4ee584038849dc9210683b91426573f6c125e1bdad036c5740df
|
| 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.dev1770171649-cp311-cp311-win_amd64.whl
| Download URL | stim-1.16.dev1770171649-cp311-cp311-win_amd64.whl |
|---|---|
| Size | 2.8 MB |
| Tags | CPython 3.11 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
058273415a99dc363c4a132fdc57cb2e230d81e6f6c3835cde6c951c972e2806
|
|
BLAKE2b-256 checksum How to use checksums |
07388d2e06e00663aa4f8cad252f1e9954de5f8c02bdcd395e51d278d2c82441
|
| 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.dev1770171649-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
| Download URL | stim-1.16.dev1770171649-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 |
2207f01611663a934c6caff78d56391cb63921c2daa3f1d2a06c4556a77d19f4
|
|
BLAKE2b-256 checksum How to use checksums |
7faa74ee9152915f51929163330f33b606b1e57d125967ee4a4dc7a4ff2da44a
|
| 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.dev1770171649-cp311-cp311-macosx_11_0_arm64.whl
| Download URL | stim-1.16.dev1770171649-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 |
f0642007f4445a59574a720ab30c76586a3307e7c6ef428a6d1670f93df52276
|
|
BLAKE2b-256 checksum How to use checksums |
2b9e798d38453e1f4738773a006d89187a5dd5e1fac6867fa98e36a367995138
|
| 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.dev1770171649-cp311-cp311-macosx_10_9_x86_64.whl
| Download URL | stim-1.16.dev1770171649-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 |
97a3e8b0a082a8fc1da06dc4ce4bf4b17cc4398f6dc72ad3cd94a6243529f141
|
|
BLAKE2b-256 checksum How to use checksums |
8c15a988b8f6ebd006181064ae8ba138801d36096e2848d6bb4cc64d67b69975
|
| 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.dev1770171649-cp310-cp310-win_amd64.whl
| Download URL | stim-1.16.dev1770171649-cp310-cp310-win_amd64.whl |
|---|---|
| Size | 2.8 MB |
| Tags | CPython 3.10 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
3c7fe7b8031b6339ad0113371576c7fbd0b3578e3eb53bccd760f8946d60a58c
|
|
BLAKE2b-256 checksum How to use checksums |
9aa23bbe165ddfe3013e798785686cb6fb867e0d0c2968b70948efad958507a1
|
| 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.dev1770171649-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
| Download URL | stim-1.16.dev1770171649-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 |
2825b92f5a11d94d6c0b77715f061e64101464151085250d27e13fe006a8f6bf
|
|
BLAKE2b-256 checksum How to use checksums |
81590901cf449d2cf6d90857496c2480a4fde67b0b7d0f31be5d4ba59999e03d
|
| 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.dev1770171649-cp310-cp310-macosx_11_0_arm64.whl
| Download URL | stim-1.16.dev1770171649-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 |
348a9c122b6ec7ed640f40baa9051f495e8b856684ffa3650b0c48ed84c0a17d
|
|
BLAKE2b-256 checksum How to use checksums |
174574afb3e930b5ecf9db76aeedecfe41e83fd05b6dc7202363b08513892d91
|
| 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.dev1770171649-cp310-cp310-macosx_10_9_x86_64.whl
| Download URL | stim-1.16.dev1770171649-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 |
e6516fe677220aa0bf48fdb3bab05f4b555410c9cfbe1305d1e37a0c94099592
|
|
BLAKE2b-256 checksum How to use checksums |
29b5eb98d7efd0df5101845105bdf8db94c5897fda47785b4e2057f11fa13ccd
|
| 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.dev1770171649-cp39-cp39-win_amd64.whl
| Download URL | stim-1.16.dev1770171649-cp39-cp39-win_amd64.whl |
|---|---|
| Size | 2.8 MB |
| Tags | CPython 3.9 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
c358ab23a5a3f9317a5993de8a04d1d9676b46d991bbc2cf414acfc629f0f436
|
|
BLAKE2b-256 checksum How to use checksums |
29d0c7e5cedd4b4800a8fd49acad31434cb27216e532dcc4dd03175c68fb2311
|
| 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.dev1770171649-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
| Download URL | stim-1.16.dev1770171649-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 |
0fa6374bef8fcf4709f38d574a19db602d27493684b83f532f8471c939534ac5
|
|
BLAKE2b-256 checksum How to use checksums |
444c047607a1118044be16a816ba45a789457bb5edb1388125638483d96f34fe
|
| 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.dev1770171649-cp39-cp39-macosx_11_0_arm64.whl
| Download URL | stim-1.16.dev1770171649-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 |
762e58403f8d68b0e7de0f77ab1138ba9958c67f7e2f973fd09f2dc0b3f14e9f
|
|
BLAKE2b-256 checksum How to use checksums |
2cb64ff54d96765955c1c493cf163b28c7d20eb9e4d6253796ec8c8d857a5d22
|
| 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.dev1770171649-cp39-cp39-macosx_10_9_x86_64.whl
| Download URL | stim-1.16.dev1770171649-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 |
6b5ea5e1c3222d7d20d8290b7116919734dec714cf6c4cddaa5883c498aefc6c
|
|
BLAKE2b-256 checksum How to use checksums |
b5450778450c7737d528d2e82dcf8121e8e873ade7d3c3d7e053069243986687
|
| 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.dev1770171649-cp38-cp38-win_amd64.whl
| Download URL | stim-1.16.dev1770171649-cp38-cp38-win_amd64.whl |
|---|---|
| Size | 2.7 MB |
| Tags | CPython 3.8 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
8d381d705669f61567eccef0c21e8cc4859c2afdd68fbabff30597b6121a0f45
|
|
BLAKE2b-256 checksum How to use checksums |
39f0143095c6414fa0006c24c3da1fd5fa8934c1d8708ebd7bc1699adbe33374
|
| 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.dev1770171649-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
| Download URL | stim-1.16.dev1770171649-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 |
b3c167532adddde0accb165bbbc10abb00a43fdfa1206f5b72625565cc43a241
|
|
BLAKE2b-256 checksum How to use checksums |
291354681fa8a2dca0334ffe3fb0bef0a001f865e1de558e34049142251b6725
|
| 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.dev1770171649-cp38-cp38-macosx_11_0_arm64.whl
| Download URL | stim-1.16.dev1770171649-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 |
4176070f671dca870a4e30663c8f52a991383d77f67fcf369590716d5c6ecc90
|
|
BLAKE2b-256 checksum How to use checksums |
092ef841808ee9cf3673a2d285ebde1d6d7837b16df6d27e4b8ea57fbed2c04b
|
| 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.dev1770171649-cp38-cp38-macosx_10_9_x86_64.whl
| Download URL | stim-1.16.dev1770171649-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 |
83659abf6364b2dc019830cff7eeaa43cbceef3607921690fb445b092c590bcf
|
|
BLAKE2b-256 checksum How to use checksums |
9d0b52115f50c1d760400a91402e5577659eb27bd8857bc636df0074d3174b46
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.12.9
|