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.dev1741992867
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.dev1741992867.tar.gz | 838.7 kB | Details |
Built distributions (wheels)
Total release size: 97.6 MB
Release files / stim-1.15.dev1741992867.tar.gz
| Download URL | stim-1.15.dev1741992867.tar.gz |
|---|---|
| Size | 838.7 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
780087d0cd1c6fe9569fe39ea6a40d7837e319acbd4d0ec42b5d7dfe96aa0388
|
|
BLAKE2b-256 checksum How to use checksums |
56296755dd0df4d5dbfa40e87dd1ff967bac5415905ad13f72fe37483f18cebd
|
| 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.dev1741992867-cp312-cp312-win_amd64.whl
| Download URL | stim-1.15.dev1741992867-cp312-cp312-win_amd64.whl |
|---|---|
| Size | 2.6 MB |
| Tags | CPython 3.12 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
793b2ac6c3f4e8269a3b9df8297c451d58ba6b14e2fe290249d24445bbc7154e
|
|
BLAKE2b-256 checksum How to use checksums |
1437ae4cfe53a1e622ccc6ec1c462d915909fd15981ae2651c99f2b924634052
|
| 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.dev1741992867-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | stim-1.15.dev1741992867-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 |
a5022aeca11fca7756c0fd08e9588733e66f79c507915cd37728a49d47105bfb
|
|
BLAKE2b-256 checksum How to use checksums |
099f4083cd99d3526e0ed3438d9c64fb3efb97d2358ade8f5660dc7f229e91b2
|
| 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.dev1741992867-cp312-cp312-macosx_11_0_arm64.whl
| Download URL | stim-1.15.dev1741992867-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 |
1087ee7b36009e976974190529775f08d56c56e73748c199772ad61d7779c93b
|
|
BLAKE2b-256 checksum How to use checksums |
fdb517a418a6442c584a9b18c0dce327fe3bbfc5a32f7ef81d5e4fba9f62e149
|
| 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.dev1741992867-cp312-cp312-macosx_10_9_x86_64.whl
| Download URL | stim-1.15.dev1741992867-cp312-cp312-macosx_10_9_x86_64.whl |
|---|---|
| Size | 1.9 MB |
| Tags | CPython 3.12 macOS 10.9+ x86-64 |
|
SHA-256 checksum How to use checksums |
11a500b19efcf9ed033cfe94adc9095095d2386c04a67325f0f9d83c4cd9e77f
|
|
BLAKE2b-256 checksum How to use checksums |
46549e5a15272b3e40341cb2838c69a4f1c1da6d018c3bd851c749817a2cd9e7
|
| 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.dev1741992867-cp311-cp311-win_amd64.whl
| Download URL | stim-1.15.dev1741992867-cp311-cp311-win_amd64.whl |
|---|---|
| Size | 2.6 MB |
| Tags | CPython 3.11 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
2fd46f98f63b90f58ea02e3bc7ffe3d756dc5bcbbd13b8a13d6bf9b75729f4ec
|
|
BLAKE2b-256 checksum How to use checksums |
230b49853d80ef3b3077942efe57d6fe2295c82cb3a8ef04a8acf4a515094f54
|
| 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.dev1741992867-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | stim-1.15.dev1741992867-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 |
30464da7a4e3231de142f3eaec188f0a3eb823a2dbec6039f0f2ec3d79591ae0
|
|
BLAKE2b-256 checksum How to use checksums |
e0ebfef87f6977023daa60c2cfe0ba8b4389ebe49d79ed006e4674b3ac2726a7
|
| 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.dev1741992867-cp311-cp311-macosx_11_0_arm64.whl
| Download URL | stim-1.15.dev1741992867-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 |
6affb1a70dfb98a2a4ee79410fc0e88cf6ec71133452810386191cabaab41f24
|
|
BLAKE2b-256 checksum How to use checksums |
19dc0dc06a2e7e258bbae0cb24522c4614bba68f7afcc78c20c7f42bc48c9d2a
|
| 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.dev1741992867-cp311-cp311-macosx_10_9_x86_64.whl
| Download URL | stim-1.15.dev1741992867-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 |
9dfdfe6898f5d7ce44282ce8d97e865fc85b309746a60fde70f7828c466710f2
|
|
BLAKE2b-256 checksum How to use checksums |
183e3a733682e4241af6026bd73cdef837320ad124ce04a09417cf1885350846
|
| 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.dev1741992867-cp310-cp310-win_amd64.whl
| Download URL | stim-1.15.dev1741992867-cp310-cp310-win_amd64.whl |
|---|---|
| Size | 2.6 MB |
| Tags | CPython 3.10 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
8857fd3ff11717b52c57a235b4d2cc3f88fa5a4abc9bf8df72e0a8333691b02c
|
|
BLAKE2b-256 checksum How to use checksums |
eaae24a0934ff8ea1bf7b4e9f8303a338e45224488ce3b5a93b2a50d89ac5cb4
|
| 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.dev1741992867-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | stim-1.15.dev1741992867-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 |
a25f2bc607a18488f90eadbb5317de7af68f54ded73762274f7b2edbea5aa2f3
|
|
BLAKE2b-256 checksum How to use checksums |
ed4e4beff985f8eb98095bd614e0b7c6cbc5153df0edd35fbac4dbaf3532d570
|
| 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.dev1741992867-cp310-cp310-macosx_11_0_arm64.whl
| Download URL | stim-1.15.dev1741992867-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 |
110ebc59159a92df83d90dc0fd098e8ff385a50d0aed79ed472738150211fd67
|
|
BLAKE2b-256 checksum How to use checksums |
2ea8c726e25cd11eb17e260d129836a741f2c6df66a26335b28b90c660a53e15
|
| 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.dev1741992867-cp310-cp310-macosx_10_9_x86_64.whl
| Download URL | stim-1.15.dev1741992867-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 |
8d60b7365134cfc8346d66458b99228f495150d84518710b22c9ab522344a376
|
|
BLAKE2b-256 checksum How to use checksums |
9588bab2fda739e830e5dd86c9c09957f0da47a3eae9340e1d8fc077c45f4ee7
|
| 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.dev1741992867-cp39-cp39-win_amd64.whl
| Download URL | stim-1.15.dev1741992867-cp39-cp39-win_amd64.whl |
|---|---|
| Size | 2.7 MB |
| Tags | CPython 3.9 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
27341859ec11cad1746f09abd3d460b49e89b9e97066f4261bd94e91e1d51f14
|
|
BLAKE2b-256 checksum How to use checksums |
fb0465103495bbc0782a54aa3ba7023817ac93a35916c959d8d6a07c059c7414
|
| 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.dev1741992867-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | stim-1.15.dev1741992867-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 |
7c11b978f8822d08c379e04ba1d1188d60d85afb9c99871139012b26bba54044
|
|
BLAKE2b-256 checksum How to use checksums |
df37c3656bc08cc16c5bfd4113e301072c1705a53c71980ec4aa6b255fcfeef9
|
| 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.dev1741992867-cp39-cp39-macosx_11_0_arm64.whl
| Download URL | stim-1.15.dev1741992867-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 |
16f2b2aedab732aed139d6cf6a57c35c060c164ca8fe241544abc87d9ab25d53
|
|
BLAKE2b-256 checksum How to use checksums |
9c77999b74c5b9082d466604cb120cce2e9a7c75201002b41574a43f33e0b5ea
|
| 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.dev1741992867-cp39-cp39-macosx_10_9_x86_64.whl
| Download URL | stim-1.15.dev1741992867-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 |
5b11585e59ed166f800e8705a7ac92dd8afc8ed8f7ecf918c69525d5ff8c1c89
|
|
BLAKE2b-256 checksum How to use checksums |
53ee6dbfecab88eaa784447902fa095187895c25598caa51be10336614b64d70
|
| 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.dev1741992867-cp38-cp38-win_amd64.whl
| Download URL | stim-1.15.dev1741992867-cp38-cp38-win_amd64.whl |
|---|---|
| Size | 2.6 MB |
| Tags | CPython 3.8 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
595ff3436c2b23595f00d834406b63e5289feccec4d14ccfc579303c3253faf9
|
|
BLAKE2b-256 checksum How to use checksums |
425f1d02cc5c05bdb59cd98212085b442428af88073811af0cc160d1ebdfb699
|
| 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.dev1741992867-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | stim-1.15.dev1741992867-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 |
54f972bf7194e2d5654743b90da570b43a83eef884a268120c7ab379b91a76e4
|
|
BLAKE2b-256 checksum How to use checksums |
284cf034c15663db13ba2b6b1dca24ee08e0d0b7c768141ce0918a1c946c3773
|
| 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.dev1741992867-cp38-cp38-macosx_11_0_arm64.whl
| Download URL | stim-1.15.dev1741992867-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 |
a2e42b927612c04b57e5a77ad100f5bb259a13160a4489f237e445f1062dbe3b
|
|
BLAKE2b-256 checksum How to use checksums |
de9a343d383b27233df496abb683281844366ede327c55c4124251f25efed3d9
|
| 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.dev1741992867-cp38-cp38-macosx_10_9_x86_64.whl
| Download URL | stim-1.15.dev1741992867-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 |
c7739ee52c86977bcbcca23b8c30b4c7157782a8559cb55a93b8331de85e0760
|
|
BLAKE2b-256 checksum How to use checksums |
d6e5e2c2864c136e3c1c6e1e9e039dc486966301858a807aa57e551ea78c9674
|
| 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.dev1741992867-cp37-cp37m-win_amd64.whl
| Download URL | stim-1.15.dev1741992867-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 |
b22666e7a806d670e95baf694b3dd0b80bb0a2c331785259f399d15d9749e272
|
|
BLAKE2b-256 checksum How to use checksums |
1d7d7d9244613b46c4a2cff80a491ecfb0ecc213c8232780619837ce2ba302a5
|
| 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.dev1741992867-cp37-cp37m-win32.whl
| Download URL | stim-1.15.dev1741992867-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 |
3d8745166b3ddeb388b4f8cb471c484239a16dd52becb85f8f6933ed83a07404
|
|
BLAKE2b-256 checksum How to use checksums |
da8b1ababd659f940c8df2f3e4566932aaaa4351b331e9cfbbe6ec1b4352d760
|
| 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.dev1741992867-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | stim-1.15.dev1741992867-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl |
|---|---|
| Size | 4.9 MB |
| Tags | CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-64 |
|
SHA-256 checksum How to use checksums |
ad353f296b1b79c33c6a2adafde576c80db9f30dbf8e6ff4632c6487c0b708d3
|
|
BLAKE2b-256 checksum How to use checksums |
2bb1abdce3fa6c737a74f775b8e98a82b927b9987635fa0d130db9f055a45ea1
|
| 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.dev1741992867-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
| Download URL | stim-1.15.dev1741992867-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl |
|---|---|
| Size | 5.1 MB |
| Tags | CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-32 |
|
SHA-256 checksum How to use checksums |
45131220910ee6839b0dc2e210c95470243e7b029ca5defd5a435d8312a8a923
|
|
BLAKE2b-256 checksum How to use checksums |
8859ccbc8a1bb623db7481119289c9d63d1a76d68a6348f8db74c2c020c6f077
|
| 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.dev1741992867-cp37-cp37m-macosx_10_9_x86_64.whl
| Download URL | stim-1.15.dev1741992867-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 |
4e399a7c0fa2b29344b65c18aca1f40d2dda1fe1d1ad638c82f0dee45f6b3056
|
|
BLAKE2b-256 checksum How to use checksums |
1f799875442bb5ec87495c8ae85c3d44d4af2f1a30bd5288aa09f458407c424a
|
| 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.dev1741992867-cp36-cp36m-win_amd64.whl
| Download URL | stim-1.15.dev1741992867-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 |
c2d3b64313cca2eafb20759c14f0fcf1b6245232eea3b05258a1ddbaec447ef1
|
|
BLAKE2b-256 checksum How to use checksums |
56ddc7f9d7721e6093eec3797146483f5078fc1afe91a44fc6d1c9d79f2583c7
|
| 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.dev1741992867-cp36-cp36m-win32.whl
| Download URL | stim-1.15.dev1741992867-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 |
e451e1f040eb9bb85ac27b5c12654e00245bdd2a4c88ec753585597d4cfc4011
|
|
BLAKE2b-256 checksum How to use checksums |
bf910d62404b062d7a2ae73250e1ebddc6e89c16e30e280095ccd5d10e2fd97f
|
| 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.dev1741992867-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | stim-1.15.dev1741992867-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl |
|---|---|
| Size | 4.9 MB |
| Tags | CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ x86-64 |
|
SHA-256 checksum How to use checksums |
5a88191c4f4e25ad9e0a5324010cfd5354b08b78b0f42f472912daa10079f045
|
|
BLAKE2b-256 checksum How to use checksums |
7947404c64015706507a2af52930276a2f0a4b76f91d782d9a155771d354ff22
|
| 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.dev1741992867-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
| Download URL | stim-1.15.dev1741992867-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl |
|---|---|
| Size | 5.1 MB |
| Tags | CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ x86-32 |
|
SHA-256 checksum How to use checksums |
785ec8c2858ad46be09127d8e063b21c87134aa16b1fb23cdc33877dd8a252a0
|
|
BLAKE2b-256 checksum How to use checksums |
f6d6f5dddc1a5c54ba1b654393f5e3209c480433bd77387601618586153ae954
|
| 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.dev1741992867-cp36-cp36m-macosx_10_9_x86_64.whl
| Download URL | stim-1.15.dev1741992867-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 |
aede745e0b7a0c0f1f1584c651546efa3104f0212a0408feaf94fd01a49a97bd
|
|
BLAKE2b-256 checksum How to use checksums |
63a77ee3b287a31edc3b94d6926eb9517897da5a8db983a88c7f794ec7e38809
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.12.9
|