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.15.dev1743819490
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.15.dev1743819490.tar.gz | 842.5 kB | Details |
Built distributions (wheels)
Total release size: 98.2 MB
Release files / stim-1.15.dev1743819490.tar.gz
| Download URL | stim-1.15.dev1743819490.tar.gz |
|---|---|
| Size | 842.5 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
f4ea4552fb37047b3a6ee6206eecd8bf7e354a41b47a6f17dacfdb864ee0a554
|
|
BLAKE2b-256 checksum How to use checksums |
98290ada984a49bc8a5bf828f5311755b9319fefff484cc0fb096f40fb53432c
|
| 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.15.dev1743819490-cp312-cp312-win_amd64.whl
| Download URL | stim-1.15.dev1743819490-cp312-cp312-win_amd64.whl |
|---|---|
| Size | 2.6 MB |
| Tags | CPython 3.12 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
2b06cb750df1ee62d92414007526b326ce7440e5ae3ba0e06a17e6a96694ebb8
|
|
BLAKE2b-256 checksum How to use checksums |
939c65f1861f5c9280e9d99952478560a4a7aa462b59e55c312a9c0b439e392f
|
| 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.15.dev1743819490-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | stim-1.15.dev1743819490-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl |
|---|---|
| Size | 4.9 MB |
| Tags | CPython 3.12 Linux glibc 2.17+ x86-64 |
|
SHA-256 checksum How to use checksums |
a3e1fae99dd730a3d9e8e4c8a8c07cb6db94303fe853275cc4a757fa47ef1136
|
|
BLAKE2b-256 checksum How to use checksums |
32c5f412182cbab52eb8446321f1dbf2b7baae6620ad3ec003b563b68b6e0fff
|
| 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.15.dev1743819490-cp312-cp312-macosx_11_0_arm64.whl
| Download URL | stim-1.15.dev1743819490-cp312-cp312-macosx_11_0_arm64.whl |
|---|---|
| Size | 1.8 MB |
| Tags | CPython 3.12 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
5593bc99ae28840876295333a73720771ec64f2d1cba33bd7f53c98d598a9262
|
|
BLAKE2b-256 checksum How to use checksums |
c47bb2f7f81a7bd61ed7cac9174a40736856d67ee818902dca450ea78178ae01
|
| 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.15.dev1743819490-cp312-cp312-macosx_10_9_x86_64.whl
| Download URL | stim-1.15.dev1743819490-cp312-cp312-macosx_10_9_x86_64.whl |
|---|---|
| Size | 2.0 MB |
| Tags | CPython 3.12 macOS 10.9+ x86-64 |
|
SHA-256 checksum How to use checksums |
f188860f54c1baa52adf0b4d550f957a39aae18301a6921ace7bb32b3752dba1
|
|
BLAKE2b-256 checksum How to use checksums |
403f4a756cd19b1cdbd03585b2e1de163023b7ecd7b17add0aacfa9adfea2c29
|
| 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.15.dev1743819490-cp311-cp311-win_amd64.whl
| Download URL | stim-1.15.dev1743819490-cp311-cp311-win_amd64.whl |
|---|---|
| Size | 2.6 MB |
| Tags | CPython 3.11 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
bcb4127a1096435dfecd26046c25e6f0383fa12f0fda513f38a1e404fbf16ed3
|
|
BLAKE2b-256 checksum How to use checksums |
a63e487c635259e3a899e7cabf3916c27eaa7891b489ea9bc99299d776ee2725
|
| 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.15.dev1743819490-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | stim-1.15.dev1743819490-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl |
|---|---|
| Size | 4.9 MB |
| Tags | CPython 3.11 Linux glibc 2.17+ x86-64 |
|
SHA-256 checksum How to use checksums |
878beceda7d8c29efd86862294792c5b807cc2983f95b93fd336fbea473590c3
|
|
BLAKE2b-256 checksum How to use checksums |
a3ecca88849dce44818bd12e01d5a1cfb2ba4be5d1d373a18ef29788abbe1a87
|
| 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.15.dev1743819490-cp311-cp311-macosx_11_0_arm64.whl
| Download URL | stim-1.15.dev1743819490-cp311-cp311-macosx_11_0_arm64.whl |
|---|---|
| Size | 1.8 MB |
| Tags | CPython 3.11 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
8a4eb1e343108bd315afef3060fffa6b733973a386ea71f69c5b24997610bddf
|
|
BLAKE2b-256 checksum How to use checksums |
504a52c0472a33654ba6c78db2dec0add0092220eb115cdebe8b941df549efcf
|
| 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.15.dev1743819490-cp311-cp311-macosx_10_9_x86_64.whl
| Download URL | stim-1.15.dev1743819490-cp311-cp311-macosx_10_9_x86_64.whl |
|---|---|
| Size | 1.9 MB |
| Tags | CPython 3.11 macOS 10.9+ x86-64 |
|
SHA-256 checksum How to use checksums |
d03725b3eb7bfabd8e9f3ddbfa9775a8facb67f8ba553da0237ec8f845100dba
|
|
BLAKE2b-256 checksum How to use checksums |
c1917b6d091b5a7025ec916c9d063c76fa221b5790fd808a37892fb23baefea0
|
| 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.15.dev1743819490-cp310-cp310-win_amd64.whl
| Download URL | stim-1.15.dev1743819490-cp310-cp310-win_amd64.whl |
|---|---|
| Size | 2.6 MB |
| Tags | CPython 3.10 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
239b7d4b835d08683e5242b92d2b294c92a759281fd136fdc8a8c12ac76319f2
|
|
BLAKE2b-256 checksum How to use checksums |
10c7a98403fb687104b6d459db6094721e85dcf0e4fdec915cf8a2eb35631c07
|
| 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.15.dev1743819490-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | stim-1.15.dev1743819490-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl |
|---|---|
| Size | 4.9 MB |
| Tags | CPython 3.10 Linux glibc 2.17+ x86-64 |
|
SHA-256 checksum How to use checksums |
36159ee72112b3572b0347e25f439692b18134b95cfca76099426d08f3f3a330
|
|
BLAKE2b-256 checksum How to use checksums |
a1ec2956b974e5c6da03fccb2b7b03b8dff48d894f7410daef34937aa8d4e37e
|
| 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.15.dev1743819490-cp310-cp310-macosx_11_0_arm64.whl
| Download URL | stim-1.15.dev1743819490-cp310-cp310-macosx_11_0_arm64.whl |
|---|---|
| Size | 1.8 MB |
| Tags | CPython 3.10 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
17584e7b357cbbe1868eb0e3af27afa57a32cdf23630a334e06052fab8073e29
|
|
BLAKE2b-256 checksum How to use checksums |
b1dc42edcfa56c4bece2c280515c9f13a0eb153dba7a57d73037076d508c88cf
|
| 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.15.dev1743819490-cp310-cp310-macosx_10_9_x86_64.whl
| Download URL | stim-1.15.dev1743819490-cp310-cp310-macosx_10_9_x86_64.whl |
|---|---|
| Size | 1.9 MB |
| Tags | CPython 3.10 macOS 10.9+ x86-64 |
|
SHA-256 checksum How to use checksums |
1d2ddfbff5d505604c0a9cb7ee07e1832458a0b1863f270094955c5880a2c88b
|
|
BLAKE2b-256 checksum How to use checksums |
b37f113d8d608337cc50029b02a20f4b3b74e2b6c683182feb5be96d54958d22
|
| 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.15.dev1743819490-cp39-cp39-win_amd64.whl
| Download URL | stim-1.15.dev1743819490-cp39-cp39-win_amd64.whl |
|---|---|
| Size | 2.7 MB |
| Tags | CPython 3.9 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
2c887414090ff70c201b912fdcd2957a102a982d536859c9de908062555e1ea0
|
|
BLAKE2b-256 checksum How to use checksums |
5d71e94abdaf6bf1812d1df8fbf9b82c8cdd71256c33cc60d6c47a6d7e73c454
|
| 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.15.dev1743819490-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | stim-1.15.dev1743819490-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl |
|---|---|
| Size | 4.9 MB |
| Tags | CPython 3.9 Linux glibc 2.17+ x86-64 |
|
SHA-256 checksum How to use checksums |
aae259df8998c31d65d9a3b22ae5aaf42200239928b00eec157f2c42a6abf252
|
|
BLAKE2b-256 checksum How to use checksums |
70c38d1509f1f7dcaeabecc6f5e1a67be35f85678e424fc69d4eedcd1646d81a
|
| 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.15.dev1743819490-cp39-cp39-macosx_11_0_arm64.whl
| Download URL | stim-1.15.dev1743819490-cp39-cp39-macosx_11_0_arm64.whl |
|---|---|
| Size | 1.8 MB |
| Tags | CPython 3.9 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
cdaee6491801176fcdc319db25fcc615897b2d791f3869a0cfb325f5b992aa93
|
|
BLAKE2b-256 checksum How to use checksums |
1c4dbb442fe624db727787431e8c60318d93333983d0b4f2eae743bca8a2e6c1
|
| 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.15.dev1743819490-cp39-cp39-macosx_10_9_x86_64.whl
| Download URL | stim-1.15.dev1743819490-cp39-cp39-macosx_10_9_x86_64.whl |
|---|---|
| Size | 1.9 MB |
| Tags | CPython 3.9 macOS 10.9+ x86-64 |
|
SHA-256 checksum How to use checksums |
dcf59f5f16e35fcf1162c6d9b82a94db14296f9dac080e092e495913b797d7e2
|
|
BLAKE2b-256 checksum How to use checksums |
a24a4730ed9e392533802aa129b466f334367805c18d9166415f5339b24da7bc
|
| 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.15.dev1743819490-cp38-cp38-win_amd64.whl
| Download URL | stim-1.15.dev1743819490-cp38-cp38-win_amd64.whl |
|---|---|
| Size | 2.6 MB |
| Tags | CPython 3.8 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
4d85b946e8a39b2bf0730c933276b57dab67e6726aadd620268e434eadef048f
|
|
BLAKE2b-256 checksum How to use checksums |
d5edf0b24637af3de98bc710fb5c0628566a7d42032dd204b6eabf93cb0764e7
|
| 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.15.dev1743819490-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | stim-1.15.dev1743819490-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl |
|---|---|
| Size | 4.9 MB |
| Tags | CPython 3.8 Linux glibc 2.17+ x86-64 |
|
SHA-256 checksum How to use checksums |
d6bd5afcf3df6c76c1db583d0b75aef6057427c6526085e4cab163cde5cfd97f
|
|
BLAKE2b-256 checksum How to use checksums |
cd15ee2272a8e566a7d2307b858c3a203d6f26a2acae4c0bf90e2934c94e61f7
|
| 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.15.dev1743819490-cp38-cp38-macosx_11_0_arm64.whl
| Download URL | stim-1.15.dev1743819490-cp38-cp38-macosx_11_0_arm64.whl |
|---|---|
| Size | 3.5 MB |
| Tags | CPython 3.8 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
569b0bb65c92ed56666f924e9a653a1bb5dc1a1eeb705e7e02374b31a2856369
|
|
BLAKE2b-256 checksum How to use checksums |
447a618413ea90a209711984d2bc6cc8919e2642fea0168cdfe1df092c28300c
|
| 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.15.dev1743819490-cp38-cp38-macosx_10_9_x86_64.whl
| Download URL | stim-1.15.dev1743819490-cp38-cp38-macosx_10_9_x86_64.whl |
|---|---|
| Size | 3.7 MB |
| Tags | CPython 3.8 macOS 10.9+ x86-64 |
|
SHA-256 checksum How to use checksums |
16bd886bf93ed533b5c855617f21eccad1ea08d09a436a777536dc3e878bcd7e
|
|
BLAKE2b-256 checksum How to use checksums |
90883bf1f995140e37e265b0db82208c74585abb476799e4f0721fa212a1e118
|
| 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.15.dev1743819490-cp37-cp37m-win_amd64.whl
| Download URL | stim-1.15.dev1743819490-cp37-cp37m-win_amd64.whl |
|---|---|
| Size | 2.6 MB |
| Tags | CPython 3.7 CPython 3.7 pymalloc Windows x86-64 |
|
SHA-256 checksum How to use checksums |
66ae638b413ac684e5b8e12d9e271b367909cc2be4a5d582512bdaba85fedf04
|
|
BLAKE2b-256 checksum How to use checksums |
2997a778663cb513b38e943f4d6561c513fde5e065eb87ddceadfdd642374250
|
| 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.15.dev1743819490-cp37-cp37m-win32.whl
| Download URL | stim-1.15.dev1743819490-cp37-cp37m-win32.whl |
|---|---|
| Size | 2.3 MB |
| Tags | CPython 3.7 CPython 3.7 pymalloc Windows x86-32 |
|
SHA-256 checksum How to use checksums |
e6d3be4a24563da085857a4c8e5c771803e041b5484e6684e88f91113c538e16
|
|
BLAKE2b-256 checksum How to use checksums |
fc76aba0372081a5fec4d872ac1488b68aece97970fb9369b861c2f2f2b569de
|
| 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.15.dev1743819490-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | stim-1.15.dev1743819490-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl |
|---|---|
| Size | 5.0 MB |
| Tags | CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-64 |
|
SHA-256 checksum How to use checksums |
53a12a12dac338d5c14acbc4e3955bdf2e819cd36fa2e782038f1b493a4c974c
|
|
BLAKE2b-256 checksum How to use checksums |
a98e7bb076c8b7b0122d6735e02f5e537c0663c9a5ca1e760524568d052bb119
|
| 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.15.dev1743819490-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
| Download URL | stim-1.15.dev1743819490-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl |
|---|---|
| Size | 5.2 MB |
| Tags | CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-32 |
|
SHA-256 checksum How to use checksums |
1a03f0ae2dd1c19b66ebc598c387155e910d70708a8a26b13cdb41c64284ee39
|
|
BLAKE2b-256 checksum How to use checksums |
35875367c804e9791ceedb3f8f897323bef4041cf846540bb365b4dd91340f85
|
| 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.15.dev1743819490-cp37-cp37m-macosx_10_9_x86_64.whl
| Download URL | stim-1.15.dev1743819490-cp37-cp37m-macosx_10_9_x86_64.whl |
|---|---|
| Size | 3.7 MB |
| Tags | CPython 3.7 CPython 3.7 pymalloc macOS 10.9+ x86-64 |
|
SHA-256 checksum How to use checksums |
638ab3cb40a47a5b97130158a6e1df73e17606cd547fdf36cd44dcbbe34fec05
|
|
BLAKE2b-256 checksum How to use checksums |
3a92a0a38d74827717311d7974bb050c1a1f08ae8bf3e5c4bc0353d807f13f40
|
| 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.15.dev1743819490-cp36-cp36m-win_amd64.whl
| Download URL | stim-1.15.dev1743819490-cp36-cp36m-win_amd64.whl |
|---|---|
| Size | 2.6 MB |
| Tags | CPython 3.6 CPython 3.6 pymalloc Windows x86-64 |
|
SHA-256 checksum How to use checksums |
4c8a0535b542d4b8313e790c8d6e2e16957d498347ddac2e16d3569ff81badee
|
|
BLAKE2b-256 checksum How to use checksums |
230627f653b195ede81e9c86eaa69a5a300dfbc901f31c89b8e82ee2f0849609
|
| 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.15.dev1743819490-cp36-cp36m-win32.whl
| Download URL | stim-1.15.dev1743819490-cp36-cp36m-win32.whl |
|---|---|
| Size | 2.3 MB |
| Tags | CPython 3.6 CPython 3.6 pymalloc Windows x86-32 |
|
SHA-256 checksum How to use checksums |
9f5a58539aa0e765bf04cfaaf92324be7dabd21ee000f1a755ecc879f40da518
|
|
BLAKE2b-256 checksum How to use checksums |
326db642be8e441fa17c70f9203aabe13df7bb2011b2485b13c57cc02a3761e5
|
| 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.15.dev1743819490-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | stim-1.15.dev1743819490-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl |
|---|---|
| Size | 5.0 MB |
| Tags | CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ x86-64 |
|
SHA-256 checksum How to use checksums |
bfee082570222e58044d08d5be5c4f2081e1636aa8e6801446dbd29075eb3b49
|
|
BLAKE2b-256 checksum How to use checksums |
7506df9e3c3d9fe54f73eb8a602bbb6e648097c7297dd657b8d1e29a38ce0afb
|
| 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.15.dev1743819490-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
| Download URL | stim-1.15.dev1743819490-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl |
|---|---|
| Size | 5.2 MB |
| Tags | CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ x86-32 |
|
SHA-256 checksum How to use checksums |
75f637398c41d9194a30b79813c1f3a5e931331a1afbd8a3a641f7c3ea3ea615
|
|
BLAKE2b-256 checksum How to use checksums |
97b3347466cdef8c9937b46050fb6ed64949b2c3dd0dac5127a3325c77ed06f2
|
| 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.15.dev1743819490-cp36-cp36m-macosx_10_9_x86_64.whl
| Download URL | stim-1.15.dev1743819490-cp36-cp36m-macosx_10_9_x86_64.whl |
|---|---|
| Size | 3.7 MB |
| Tags | CPython 3.6 CPython 3.6 pymalloc macOS 10.9+ x86-64 |
|
SHA-256 checksum How to use checksums |
c91a91e50e1542c40b496880d889c74889fa3cbca826082b7956bd6ab1d50484
|
|
BLAKE2b-256 checksum How to use checksums |
81ba5017127a60b72ca7cba30040d1e5ee0a33fcd556fd57c57e6b493e70e97d
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.12.9
|