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.dev1768465883
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.dev1768465883.tar.gz | 876.9 kB | Details |
Built distributions (wheels)
Total release size: 87.8 MB
Release files / stim-1.16.dev1768465883.tar.gz
| Download URL | stim-1.16.dev1768465883.tar.gz |
|---|---|
| Size | 876.9 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
a6a83406860980a18030ea6721ba0fc577ea95b15409897a2a5a2f3333ce9541
|
|
BLAKE2b-256 checksum How to use checksums |
0b27d989f561ef543066efbf70fc4ab15e91a3869ab283970b5affd7f9133533
|
| 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.dev1768465883-cp314-cp314-win_amd64.whl
| Download URL | stim-1.16.dev1768465883-cp314-cp314-win_amd64.whl |
|---|---|
| Size | 2.8 MB |
| Tags | CPython 3.14 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
b24594b5232ab2f3274a077f258d7278f47aa237076afb7954515739bfb4166b
|
|
BLAKE2b-256 checksum How to use checksums |
7ec84d61510d53fab15517f195fd2dfbbd03bf8d24c0d6edd86d0328b80f69bd
|
| 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.dev1768465883-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
| Download URL | stim-1.16.dev1768465883-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 |
b2b721cd0fbd6b64d1cd8bcf2f0c5378c1bdb36acbba0d5dbebc635041bbe870
|
|
BLAKE2b-256 checksum How to use checksums |
7fb3e4d912bbd4951ab1c4337a909dd5c18985432f9bc50cc3254b6834256808
|
| 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.dev1768465883-cp314-cp314-macosx_11_0_arm64.whl
| Download URL | stim-1.16.dev1768465883-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 |
f6ffd35019ec5e829255b2420a5ed8cdf52612081daef9fcaa0983ee92164548
|
|
BLAKE2b-256 checksum How to use checksums |
24a237d9639154a0cb54f540b695a90fde3e48d25fc2aa44b0ebf19f34df4fad
|
| 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.dev1768465883-cp314-cp314-macosx_10_15_x86_64.whl
| Download URL | stim-1.16.dev1768465883-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 |
ee5952641174f84528264cfc0e43b700e4db0911492a27f13af6f83d0e6942c1
|
|
BLAKE2b-256 checksum How to use checksums |
063baf90db7001b0bf395f9423b245d07e1ea779aea141cda4db6df8591195e6
|
| 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.dev1768465883-cp313-cp313-win_amd64.whl
| Download URL | stim-1.16.dev1768465883-cp313-cp313-win_amd64.whl |
|---|---|
| Size | 2.7 MB |
| Tags | CPython 3.13 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
72ad69de57e9a9c35193c78bdab3a98a8025557202edd0d81c5bac7dbf63790f
|
|
BLAKE2b-256 checksum How to use checksums |
9f237476d80bd217c90c9fabccf8383c7f234073b932107b0cf1f35342e4d0c1
|
| 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.dev1768465883-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
| Download URL | stim-1.16.dev1768465883-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 |
e7cf3f0f3f351b1b4f727ef59691ac4063ec418293d7f9232b0f25b611ed3b09
|
|
BLAKE2b-256 checksum How to use checksums |
930111d3727497ea6cd5fd6492b011b4920c9682132808152f17a6040d8fe3dd
|
| 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.dev1768465883-cp313-cp313-macosx_11_0_arm64.whl
| Download URL | stim-1.16.dev1768465883-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 |
ce79ed5c43b55708b246af3343fde8b9eedb833040a922b51e59dc5aed9eff29
|
|
BLAKE2b-256 checksum How to use checksums |
db6c48614bd1d54c4037b38320eb58fb23f1fd5461ab69e2c92b558db7006dfe
|
| 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.dev1768465883-cp313-cp313-macosx_10_13_x86_64.whl
| Download URL | stim-1.16.dev1768465883-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 |
524dc7e0e347f632a39f2db22aa5309651de1622529dc017ea6b7f8ee0ff81e4
|
|
BLAKE2b-256 checksum How to use checksums |
627405f7cec88493d3ef1165250a5a2f86286415a0132602eb58ddaab067e14f
|
| 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.dev1768465883-cp312-cp312-win_amd64.whl
| Download URL | stim-1.16.dev1768465883-cp312-cp312-win_amd64.whl |
|---|---|
| Size | 2.7 MB |
| Tags | CPython 3.12 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
d287c8fc152c5473a2ffd047a9eca3c47129376988a8a3f057ed29885e4a06c5
|
|
BLAKE2b-256 checksum How to use checksums |
b77f77ef8d6efde10b374567cd38beca8b38a3dd0a0447b99e98471ca31d8a50
|
| 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.dev1768465883-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
| Download URL | stim-1.16.dev1768465883-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 |
0150a2b5c0613b0e4301bd30c56ada55d277d1307862d2f42bfd7712a8d9c9b1
|
|
BLAKE2b-256 checksum How to use checksums |
deea847c81dcea9b4b3da777903047cbb442d351ed401d910c7206d61f4bd0f4
|
| 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.dev1768465883-cp312-cp312-macosx_11_0_arm64.whl
| Download URL | stim-1.16.dev1768465883-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 |
507cc42c5e20969526de67f00d25110ffd07c5254060ae588875d6e9b1147a2e
|
|
BLAKE2b-256 checksum How to use checksums |
242f8fa35f1ab977e842296f12a3738ab20d6cd7015b541a380f734e604e0daa
|
| 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.dev1768465883-cp312-cp312-macosx_10_13_x86_64.whl
| Download URL | stim-1.16.dev1768465883-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 |
1ee95edcffaf5f22bcdbbc3f67ff922b5d08e6a1091aa4ddd8a17ca6bc8fbc04
|
|
BLAKE2b-256 checksum How to use checksums |
0a747fbf96532a126ed3480b1f255eea838447f4cfb936d4f3e79eadec280607
|
| 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.dev1768465883-cp311-cp311-win_amd64.whl
| Download URL | stim-1.16.dev1768465883-cp311-cp311-win_amd64.whl |
|---|---|
| Size | 2.7 MB |
| Tags | CPython 3.11 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
35d8e3bd1c50258e84b53c9b8c0b0e55ba01611bb9d86c363884e27f88e44b5b
|
|
BLAKE2b-256 checksum How to use checksums |
1244024f473cfcefaa2d560d419e9a3e647cb290a2fc839c1cd25796b5c3be66
|
| 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.dev1768465883-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
| Download URL | stim-1.16.dev1768465883-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 |
defeb0c0f8ed7f5249a561b9500956caa031c344756e770b0bde22cd98567503
|
|
BLAKE2b-256 checksum How to use checksums |
23adc2d58314836a550cf5b96d96f0207b62058104c303e3fb7122d79e753822
|
| 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.dev1768465883-cp311-cp311-macosx_11_0_arm64.whl
| Download URL | stim-1.16.dev1768465883-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 |
dc240160e2d4123a4faeedbbbc23e06e5a647a4ede6b12164d9f4b9b157fc2e0
|
|
BLAKE2b-256 checksum How to use checksums |
31df2ba4cd508ae8184a8ebcf849a7bb7b3f5b010148cbe9c9b6c813a1da1715
|
| 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.dev1768465883-cp311-cp311-macosx_10_9_x86_64.whl
| Download URL | stim-1.16.dev1768465883-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 |
e61a04e1d97b03811fe619a7a33ce0ea7bb1a918f4dcc24a369a53946ed695d2
|
|
BLAKE2b-256 checksum How to use checksums |
d0f8afa32fc0f7823087054055dd2c012a3b8be1dd6d4e00b943c663d46622e5
|
| 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.dev1768465883-cp310-cp310-win_amd64.whl
| Download URL | stim-1.16.dev1768465883-cp310-cp310-win_amd64.whl |
|---|---|
| Size | 2.7 MB |
| Tags | CPython 3.10 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
0e77aa29f894ec9e11f5864ca3eef0e8d6f85c0fd7b982e8a18d71affb7438f2
|
|
BLAKE2b-256 checksum How to use checksums |
209d94324718d3cf6c33e685638e622f35ceacf55248d001b9ed3332a4edb7b5
|
| 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.dev1768465883-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
| Download URL | stim-1.16.dev1768465883-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 |
c0187bd788d1d3312a888dc64f0d73dfa78e782743e1f36eab290f6dcca487f3
|
|
BLAKE2b-256 checksum How to use checksums |
788f1ba2d6af9eade6be6c0725563336818755dcaa84f7dfa52897a355c5bed3
|
| 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.dev1768465883-cp310-cp310-macosx_11_0_arm64.whl
| Download URL | stim-1.16.dev1768465883-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 |
53c7244e6fed5d6a9fcfa059084ff827c07345e917df3dee7b11835cb69ca554
|
|
BLAKE2b-256 checksum How to use checksums |
7e4cfc854dec62efe35c76533320a70e499fec60ce78afff694264595a04a034
|
| 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.dev1768465883-cp310-cp310-macosx_10_9_x86_64.whl
| Download URL | stim-1.16.dev1768465883-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 |
3cba7eb3811ea77d83251528e25bf4c921b5a093692e10e106f1e79a9d65c71e
|
|
BLAKE2b-256 checksum How to use checksums |
ecc6f8a8a5c0d0313c09d3aec71a8d05427c60c0c11b835e7255ecc7a42c540c
|
| 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.dev1768465883-cp39-cp39-win_amd64.whl
| Download URL | stim-1.16.dev1768465883-cp39-cp39-win_amd64.whl |
|---|---|
| Size | 2.8 MB |
| Tags | CPython 3.9 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
304aff6c01af3883aad0edc48ee454d95818ae9041c789db413bc6fd15faef60
|
|
BLAKE2b-256 checksum How to use checksums |
d0622c01f0ecea2413c4021bf4cfb81e0dd245a01509f9b046ec755ee98d63b8
|
| 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.dev1768465883-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
| Download URL | stim-1.16.dev1768465883-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 |
61fb70d1ff3da2e72b68e7ab133c3a36428c67a3757c8504a82614b9b9466d24
|
|
BLAKE2b-256 checksum How to use checksums |
5a9c63e5eac5a2c39eca932d80c04cbcbc42d9c1916e87e168e03162e9e12714
|
| 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.dev1768465883-cp39-cp39-macosx_11_0_arm64.whl
| Download URL | stim-1.16.dev1768465883-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 |
4cf187a27867266f1015fe97d9bfb2e6355f9d7314b76f6ad210d16742a197d3
|
|
BLAKE2b-256 checksum How to use checksums |
cb512ba9dda0c5706dc69eff2cff5f04c7f853ae37ed9eb6c384f7e438fb7a6b
|
| 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.dev1768465883-cp39-cp39-macosx_10_9_x86_64.whl
| Download URL | stim-1.16.dev1768465883-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 |
54dbdf18d2caaa70f12c6a4ffd2bff80a560ef6e7c4558e4d38325a5462cf978
|
|
BLAKE2b-256 checksum How to use checksums |
478992908a18f43399bac7782dd0cbdfe5d9a48411645def9ecd8479c89521ec
|
| 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.dev1768465883-cp38-cp38-win_amd64.whl
| Download URL | stim-1.16.dev1768465883-cp38-cp38-win_amd64.whl |
|---|---|
| Size | 2.7 MB |
| Tags | CPython 3.8 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
35b417518e99ef26e4de41dd38795417b5d62c9c1f79a24d534ea89a6b9c0d53
|
|
BLAKE2b-256 checksum How to use checksums |
2ec28a4471cc0b8604b99aa846a232c9eecfd3e95eac4288f6f289e04d9c7153
|
| 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.dev1768465883-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
| Download URL | stim-1.16.dev1768465883-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 |
2efe5e9db5a9c86bec3c86878cbe8488bc174d7d2c36751e526bccf29b8bb2e9
|
|
BLAKE2b-256 checksum How to use checksums |
0510721677bd9962b0c72ddd93f33267deeed4b9e459387a5f4607059d51ebd1
|
| 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.dev1768465883-cp38-cp38-macosx_11_0_arm64.whl
| Download URL | stim-1.16.dev1768465883-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 |
e2123f82c48edeb82ec2c2c04206d25818e2ae4f00e3de17173b1f00c3ee0a88
|
|
BLAKE2b-256 checksum How to use checksums |
60fee0247ae5471b493627d7c2b116cba4cd0350c7e9f7e87a62b6c97f60d68b
|
| 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.dev1768465883-cp38-cp38-macosx_10_9_x86_64.whl
| Download URL | stim-1.16.dev1768465883-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 |
fa803c1d002c1fd6c43a6bfd2dcc9023d184c8efa897c654dbb8ad142606a9e7
|
|
BLAKE2b-256 checksum How to use checksums |
b244673d9c872177261142ea623b076ba5b2b7e66e6704c72e8c596659086892
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.12.9
|