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.dev1768529462
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.dev1768529462.tar.gz | 877.9 kB | Details |
Built distributions (wheels)
Total release size: 85.4 MB
Release files / stim-1.16.dev1768529462.tar.gz
| Download URL | stim-1.16.dev1768529462.tar.gz |
|---|---|
| Size | 877.9 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
23eaa374ccc8ec40d8d48a8ca61b14aa11a587637b01f86d52bedc5b51598e15
|
|
BLAKE2b-256 checksum How to use checksums |
81a6214bf6bd63e469891cbc6c2d409149b1ca76fbcdcebe07c711f92a3521eb
|
| 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.dev1768529462-cp314-cp314-win_amd64.whl
| Download URL | stim-1.16.dev1768529462-cp314-cp314-win_amd64.whl |
|---|---|
| Size | 2.8 MB |
| Tags | CPython 3.14 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
55822e71a158eddeb04cda8e8ce8f3a00cdaf5b8b147be93a307c14f9b40b99d
|
|
BLAKE2b-256 checksum How to use checksums |
33fee4fee6cb8ca1205a43e3a6b5d680a619369f96c07a1445da6b71a1e3789e
|
| 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.dev1768529462-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
| Download URL | stim-1.16.dev1768529462-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 |
4fd8524dabdde46c4a9f6bda60d2280f7917508c52115ccc3731b42b7d2b4d72
|
|
BLAKE2b-256 checksum How to use checksums |
b886edfc4493bcf64e89f159092091f2ae327a085a9f74dbe8c3a1a60b29e0b6
|
| 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.dev1768529462-cp314-cp314-macosx_11_0_arm64.whl
| Download URL | stim-1.16.dev1768529462-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 |
74b126528800dfeb655343c428ce19b265002d3c67347cf747c93930494f4c11
|
|
BLAKE2b-256 checksum How to use checksums |
6c7a601761c9613e82fbfd2d0c1acd50d447fd62cc8fe6533917536aaa77cccf
|
| 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.dev1768529462-cp314-cp314-macosx_10_15_x86_64.whl
| Download URL | stim-1.16.dev1768529462-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 |
deaf3d11e3264ada9ded59d7af26cecf1cba3fff81e254bec69cb3c4f239a002
|
|
BLAKE2b-256 checksum How to use checksums |
e3ed7795f5a6ce7405d0b1b4ffd7673d6626f1919bbdc155e23a849b87db11d0
|
| 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.dev1768529462-cp313-cp313-win_amd64.whl
| Download URL | stim-1.16.dev1768529462-cp313-cp313-win_amd64.whl |
|---|---|
| Size | 2.7 MB |
| Tags | CPython 3.13 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
0c7bf36fcb528acd6b97763cd2823f513011ccfcde9a0678b06c1237e9069f1c
|
|
BLAKE2b-256 checksum How to use checksums |
8925ea49e895ee764c26efaa1abd08b1af5726af991882f29fc169cd30bd5e0c
|
| 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.dev1768529462-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
| Download URL | stim-1.16.dev1768529462-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 |
2f8dfc4388bcbe5d69b7c53acb9e316e1e8798da646551eb8a11f3baa944f005
|
|
BLAKE2b-256 checksum How to use checksums |
a97eb2cb2cf92b92370f08401a7e291eb4d5e954ff6f272fb89bcb7bc54af910
|
| 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.dev1768529462-cp313-cp313-macosx_11_0_arm64.whl
| Download URL | stim-1.16.dev1768529462-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 |
c7c13d3ac74986dea0de501ea61840326b5e4d5a30d0239456cdac625da5c5a5
|
|
BLAKE2b-256 checksum How to use checksums |
3820cbbf48f68fbf2909df140911ff2accf1d1d217ac6d49162f61904063a6da
|
| 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.dev1768529462-cp313-cp313-macosx_10_13_x86_64.whl
| Download URL | stim-1.16.dev1768529462-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 |
ec777c06d4558b82622f33285113a5372d1f882048d207f4e4a07eb380510683
|
|
BLAKE2b-256 checksum How to use checksums |
7794e1aa940e53e693a15084394d809ed227f246c29e5906f296f73c1f70a650
|
| 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.dev1768529462-cp312-cp312-win_amd64.whl
| Download URL | stim-1.16.dev1768529462-cp312-cp312-win_amd64.whl |
|---|---|
| Size | 1.4 MB |
| Tags | CPython 3.12 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
6333865155576e7ee2ffa6ed6ca0a6a904b0704d6eb2392e199ea7b02d11446f
|
|
BLAKE2b-256 checksum How to use checksums |
53706b14bbfbb9841b0fdb08a7121126240e8f2d845a4fb221947f0f481fc98f
|
| 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.dev1768529462-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
| Download URL | stim-1.16.dev1768529462-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 |
480d43374b4682108287c60c3a1b4e38e30ff427108b823d02f3e325acc449b4
|
|
BLAKE2b-256 checksum How to use checksums |
473a97ced43669300d7a7ca001f3246f071ccd8832db82e948104e0a96ea4120
|
| 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.dev1768529462-cp312-cp312-macosx_11_0_arm64.whl
| Download URL | stim-1.16.dev1768529462-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 |
c29813ab834f20b7b79f4060132985b19199b1bd016e74a8935b937cf6616873
|
|
BLAKE2b-256 checksum How to use checksums |
3fa042347d2455f2a979edff3f220fcf7f5585d2e37a9134f34a8817cc792127
|
| 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.dev1768529462-cp312-cp312-macosx_10_13_x86_64.whl
| Download URL | stim-1.16.dev1768529462-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 |
812baf2d7c6dafd83da3c64697dcd13444f30f1295292683077df94f091c92c4
|
|
BLAKE2b-256 checksum How to use checksums |
1f6a38b94e89b4f346b01f57a9a2d6baab7dd20045836fca78dfb00d5cbc1be4
|
| 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.dev1768529462-cp311-cp311-win_amd64.whl
| Download URL | stim-1.16.dev1768529462-cp311-cp311-win_amd64.whl |
|---|---|
| Size | 1.4 MB |
| Tags | CPython 3.11 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
5b406aac2df0aff6f2d498f28fceb25136691f3defb4a82e512334ead9a5428e
|
|
BLAKE2b-256 checksum How to use checksums |
4f175a6374eb5578ca42859c39bd8b942efccf9c92b39a555e04856ae635980d
|
| 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.dev1768529462-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
| Download URL | stim-1.16.dev1768529462-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 |
ca372c9c6877b4573903298a4e5b0239e6f8ee728813b106bd12b5e6a13a7c0c
|
|
BLAKE2b-256 checksum How to use checksums |
526878e1296497ef07c575fe668c816766f8c9372b11c49922b15ff7b43ca6a1
|
| 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.dev1768529462-cp311-cp311-macosx_11_0_arm64.whl
| Download URL | stim-1.16.dev1768529462-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 |
24f9283eec00187381ed85645743c08e7225c039845072149e310b4a9e85b041
|
|
BLAKE2b-256 checksum How to use checksums |
93475975f84a45f50a022c26567829b1980010754e7dd6ad8a27c05928363989
|
| 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.dev1768529462-cp311-cp311-macosx_10_9_x86_64.whl
| Download URL | stim-1.16.dev1768529462-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 |
be11e0d197918b28f9634f2da24a72c263483a8784ea3ab752410e539ea14838
|
|
BLAKE2b-256 checksum How to use checksums |
6466198f776559efd3acbd913892f0c3c86226817f91e3733a0ab2fa490f7dc0
|
| 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.dev1768529462-cp310-cp310-win_amd64.whl
| Download URL | stim-1.16.dev1768529462-cp310-cp310-win_amd64.whl |
|---|---|
| Size | 2.7 MB |
| Tags | CPython 3.10 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
0c068b2c3681f6b82d632adb4ba3bc84cad1f47f34a1e9996928ecd6ba863a57
|
|
BLAKE2b-256 checksum How to use checksums |
972724572130080780e3835a4f4ce4a55b67d78860978471c9aedcbfe4142008
|
| 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.dev1768529462-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
| Download URL | stim-1.16.dev1768529462-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 |
596b66a409833f8b99c20a15877b7ccdfc658145b71523dcfca15fefd994f13d
|
|
BLAKE2b-256 checksum How to use checksums |
a2c8315196b4446749b4a8c34f56dbe21b90f10dd52b9b08c3877f466cf944da
|
| 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.dev1768529462-cp310-cp310-macosx_11_0_arm64.whl
| Download URL | stim-1.16.dev1768529462-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 |
cce9774e0e8d84603d09222c410c9b24bc4eea482ba68506eb22487b9471c36b
|
|
BLAKE2b-256 checksum How to use checksums |
4b1942a6c2e67e1949e8a9bc1ac5794b7845ab254b691329a914d33b428b4fab
|
| 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.dev1768529462-cp310-cp310-macosx_10_9_x86_64.whl
| Download URL | stim-1.16.dev1768529462-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 |
02cf7e83e02ffdec049ea82c4f12ebf8c004dd9cff55b09779222b35722f15fe
|
|
BLAKE2b-256 checksum How to use checksums |
74c23d308d21f7a543f3c59aecc843601e4a806c0586d81a3b48c5e0dbf55699
|
| 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.dev1768529462-cp39-cp39-win_amd64.whl
| Download URL | stim-1.16.dev1768529462-cp39-cp39-win_amd64.whl |
|---|---|
| Size | 2.8 MB |
| Tags | CPython 3.9 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
edcd04edf41e8dbca563875aab427bd7d343c602af2af7296b6199384ea536f5
|
|
BLAKE2b-256 checksum How to use checksums |
71a27167a8cca47e063edd104d901abf72e75df5fef92c6b952494459c6a6892
|
| 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.dev1768529462-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
| Download URL | stim-1.16.dev1768529462-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 |
5a8edb9c93a80151f13c4b23910cf35dc40a1039ece5b744bbc0a9893524c5ee
|
|
BLAKE2b-256 checksum How to use checksums |
f1c66a0cfbb446fdf13f86f536aa8fc431a3cfff95f79bb96166d53e00379299
|
| 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.dev1768529462-cp39-cp39-macosx_11_0_arm64.whl
| Download URL | stim-1.16.dev1768529462-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 |
01193e5a2690c85ccf74ec72c5b14ee70d0be6752e30e37c90a4a21ded19931a
|
|
BLAKE2b-256 checksum How to use checksums |
1398f272b60ab40dca0d58d816fe00410eeb05a7fad25a2851d0487c9c345876
|
| 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.dev1768529462-cp39-cp39-macosx_10_9_x86_64.whl
| Download URL | stim-1.16.dev1768529462-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 |
f9642fd2e54986793580d07226f19c47db8253172337391fbdf4ddff2d93e946
|
|
BLAKE2b-256 checksum How to use checksums |
ff24f8c3868e099b7a4a4a6e34e8fbdc7dc99014254cc1b86a9dc472de10768d
|
| 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.dev1768529462-cp38-cp38-win_amd64.whl
| Download URL | stim-1.16.dev1768529462-cp38-cp38-win_amd64.whl |
|---|---|
| Size | 2.7 MB |
| Tags | CPython 3.8 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
74ac71669eb42a7ef7d823648459f1869f2724f3aacf2ee176459a822ca5b750
|
|
BLAKE2b-256 checksum How to use checksums |
2729df53678ced8bb50d53329661d8d274e3b6322711caa2b23a091eeb515006
|
| 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.dev1768529462-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
| Download URL | stim-1.16.dev1768529462-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 |
2698fac0bd74e792fc0a08b74d515236a345c50bcb22beb03f5e072e61686763
|
|
BLAKE2b-256 checksum How to use checksums |
e7f180a3bdb2309067f92759bb59b5d46d8be1ecb8cdaaf96d9a54c7a876c7f1
|
| 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.dev1768529462-cp38-cp38-macosx_11_0_arm64.whl
| Download URL | stim-1.16.dev1768529462-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 |
c74cede73505a3ab331dd7dd8a2ab4588ab3c8beed4c334f4c7f5ca6d413dd79
|
|
BLAKE2b-256 checksum How to use checksums |
704a4f31f448957a59261c5ee1f353f20ccaafa7740b8dfe0cca4d0dedb18e50
|
| 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.dev1768529462-cp38-cp38-macosx_10_9_x86_64.whl
| Download URL | stim-1.16.dev1768529462-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 |
384c126543010f6c592612b21532c1772201f47da2b5918da78681bd2efa0372
|
|
BLAKE2b-256 checksum How to use checksums |
1f60d26e2dd659c52f24208272ddd0bc302bf28d6d9e98930b4c81ec8327411d
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.12.9
|