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.dev1778540451
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.dev1778540451.tar.gz | 882.5 kB | Details |
Built distributions (wheels)
Total release size: 87.2 MB
Release files / stim-1.16.dev1778540451.tar.gz
| Download URL | stim-1.16.dev1778540451.tar.gz |
|---|---|
| Size | 882.5 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
1cf9e53c4d5aa1d7fdf1b2ea673e2ed92e6e3ff73a0e8e66278c36f172f3c6b7
|
|
BLAKE2b-256 checksum How to use checksums |
e1b802a953e3161696bc91869db07c3c641d3fdc8d742153506fd02db6017850
|
| 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.dev1778540451-cp314-cp314-win_amd64.whl
| Download URL | stim-1.16.dev1778540451-cp314-cp314-win_amd64.whl |
|---|---|
| Size | 2.8 MB |
| Tags | CPython 3.14 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
de35757a0d3ebd1fe460996edaaa9e9f1cc8d911c24f843b8f41145570a74589
|
|
BLAKE2b-256 checksum How to use checksums |
9ad8eea807859804ed971249ff37852f3162187c012bd4859b15f84574c6be9c
|
| 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.dev1778540451-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
| Download URL | stim-1.16.dev1778540451-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 |
65f768da6039a4b76579d3de4f72efc54a406bda1bda029d5918e61213355bb1
|
|
BLAKE2b-256 checksum How to use checksums |
57db14996af9492a3730ea30866d8f6a7a5f4a43b0abdff32dd688b34d566c19
|
| 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.dev1778540451-cp314-cp314-macosx_11_0_arm64.whl
| Download URL | stim-1.16.dev1778540451-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 |
40fb1aa37eca80386a87b17234d61878555969b6d7f92bdd8cb4bc199065821b
|
|
BLAKE2b-256 checksum How to use checksums |
23145f282b7f440adaedb539d7ed8a7238a527adeb837ac4e785fbc7e7f9c4fb
|
| 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.dev1778540451-cp314-cp314-macosx_10_15_x86_64.whl
| Download URL | stim-1.16.dev1778540451-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 |
d1d2fb92ecacffe8bb7017dc056eb4851bf78c552c60a4f3d923e30ccb184212
|
|
BLAKE2b-256 checksum How to use checksums |
81bcadf204aa7430895a3e76e3979df3374ecab26a6a115106c3c0d24da068ae
|
| 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.dev1778540451-cp313-cp313-win_amd64.whl
| Download URL | stim-1.16.dev1778540451-cp313-cp313-win_amd64.whl |
|---|---|
| Size | 1.5 MB |
| Tags | CPython 3.13 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
26536673cf45b808378f6458fdae1d78514009b972492676325543ffeec7563e
|
|
BLAKE2b-256 checksum How to use checksums |
97053271a670284899a6f22818e223bbdb7c9f0abb8f95b6ca2f7fd9a33b638e
|
| 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.dev1778540451-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
| Download URL | stim-1.16.dev1778540451-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 |
9fb7a0dcff4aeae37d6002a7e71bf5c933ef81a17e1bb036a349118df8e30986
|
|
BLAKE2b-256 checksum How to use checksums |
22459f686f55df0df9952f4a4ac45e238bb242a6c671c3b9deb465c11f382cf2
|
| 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.dev1778540451-cp313-cp313-macosx_11_0_arm64.whl
| Download URL | stim-1.16.dev1778540451-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 |
4eacd5147bfdb8a7f52ba0c33dc784ec7d94c9a86e8b290e77bddef66a57c8a4
|
|
BLAKE2b-256 checksum How to use checksums |
fc8179ed1749eb79e577decd4800add9bb2035ebdfee35c87c40f1674decf308
|
| 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.dev1778540451-cp313-cp313-macosx_10_13_x86_64.whl
| Download URL | stim-1.16.dev1778540451-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 |
0aa4370aff942566090d893df9073bf95476b7cb13d0063eec21efa39bbaf7ec
|
|
BLAKE2b-256 checksum How to use checksums |
4394f6ead96c5169e54e0df59f308980afef59bd88705b9dbb2e6566336e81d4
|
| 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.dev1778540451-cp312-cp312-win_amd64.whl
| Download URL | stim-1.16.dev1778540451-cp312-cp312-win_amd64.whl |
|---|---|
| Size | 2.8 MB |
| Tags | CPython 3.12 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
78c17e8259d865760deb0bf4ca3f4a80aaac97fbe0eb7dbf1415836367a4be57
|
|
BLAKE2b-256 checksum How to use checksums |
dd84532c0d0ef93b210dba284ed28651af1e25d36eb0e39d7839cb441201ec50
|
| 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.dev1778540451-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
| Download URL | stim-1.16.dev1778540451-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 |
72980a4265724cd89bd978aef73d618740b155a9d9da4034184894d04a001c9e
|
|
BLAKE2b-256 checksum How to use checksums |
9c50bac8ddebf4bfbb714f08c42cf77a36b961bdbb6455e1bed06dd6bebae72a
|
| 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.dev1778540451-cp312-cp312-macosx_11_0_arm64.whl
| Download URL | stim-1.16.dev1778540451-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 |
c4c1ca4252fca19c1e5aca4a23e2a88deecbbf5eecd5501221411adf86cf9b8c
|
|
BLAKE2b-256 checksum How to use checksums |
420f32b2bd41c395774d29e86fd8d2422e91cd4766cd42ea103dbc238c96be59
|
| 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.dev1778540451-cp312-cp312-macosx_10_13_x86_64.whl
| Download URL | stim-1.16.dev1778540451-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 |
4359f5f8cafbcc61a5b3f00742e81e6235bd6c24d5668a4b380889416e63a39e
|
|
BLAKE2b-256 checksum How to use checksums |
bb15718fddb264e27f4f5f5d1e7a9c22ee9b3424b7271e4d8731f461c0531a8c
|
| 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.dev1778540451-cp311-cp311-win_amd64.whl
| Download URL | stim-1.16.dev1778540451-cp311-cp311-win_amd64.whl |
|---|---|
| Size | 2.8 MB |
| Tags | CPython 3.11 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
bce398a5a27b5ff0d000e1bfbc039a099c3f90c2ff827fa3cbf20081e3cc9ca3
|
|
BLAKE2b-256 checksum How to use checksums |
6f127d292521e12825bf3a794470f24cb7693cfdd06be7017dd9006d91bb591a
|
| 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.dev1778540451-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
| Download URL | stim-1.16.dev1778540451-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 |
283c4668f2ec156ec2458d7506b8191c832bba16c2810d33951e3ac24e1d5e4c
|
|
BLAKE2b-256 checksum How to use checksums |
b53b1e035e7e2d120c5c8670c2c32606c4cecc0586e4ffb97461d0bb04afa80d
|
| 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.dev1778540451-cp311-cp311-macosx_11_0_arm64.whl
| Download URL | stim-1.16.dev1778540451-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 |
2a400c5afd2d4fe4a8ae2ba6289c133e1b13bb52b047a852b4b58c57a11ccc5e
|
|
BLAKE2b-256 checksum How to use checksums |
1fd1d2d1b8db95c3c5d1fb7470f4ef08195276e4881146eca9dc2f65fc026fb4
|
| 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.dev1778540451-cp311-cp311-macosx_10_9_x86_64.whl
| Download URL | stim-1.16.dev1778540451-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 |
d73886cc6f610f899f818ac4321e34715511a56339628594d148ffc018e1edfc
|
|
BLAKE2b-256 checksum How to use checksums |
5ac8655133b6c26243d2cc5ffd7cb47e9a99a4e513eb5491ef81457c9f0f4892
|
| 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.dev1778540451-cp310-cp310-win_amd64.whl
| Download URL | stim-1.16.dev1778540451-cp310-cp310-win_amd64.whl |
|---|---|
| Size | 2.8 MB |
| Tags | CPython 3.10 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
64a0dfb61eeb0dc5498d59f2b8aed1e0e31acf5f44ca56e6b1a46a032d95eb85
|
|
BLAKE2b-256 checksum How to use checksums |
0ff9c7aa95992968d5f362858d7c0dc7edcbfa04ff9c9baafe6c3b4ea4f2cb08
|
| 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.dev1778540451-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
| Download URL | stim-1.16.dev1778540451-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 |
b8ef04637be5aa6f7f55159fdc139c1cd785ce34fdf7839dc4943eea40fbea87
|
|
BLAKE2b-256 checksum How to use checksums |
bf64aff5c07d452893c93af90c7e8a18f8453c74a4a527b4798f82b496e9f9bf
|
| 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.dev1778540451-cp310-cp310-macosx_11_0_arm64.whl
| Download URL | stim-1.16.dev1778540451-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 |
f01faf79fec9ae613c2d176cdd840c6548de1917842bc509c5f166658358efe9
|
|
BLAKE2b-256 checksum How to use checksums |
af973a6bdd02982fd8cf6a922f29a60daedc504134d6713c035178a49753870f
|
| 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.dev1778540451-cp310-cp310-macosx_10_9_x86_64.whl
| Download URL | stim-1.16.dev1778540451-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 |
271b15968b94d2bb5ebda302c64bf08c9e795d0f6075e24c8b6f63561eab5bd1
|
|
BLAKE2b-256 checksum How to use checksums |
7762304e9024bb44fde3a99d920b756774c1fe53817e7badd74f4e83c7fd264b
|
| 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.dev1778540451-cp39-cp39-win_amd64.whl
| Download URL | stim-1.16.dev1778540451-cp39-cp39-win_amd64.whl |
|---|---|
| Size | 2.8 MB |
| Tags | CPython 3.9 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
75cfe919d067a8283d6aec2abe0e919240062440d6baa09c573157b69c421aaa
|
|
BLAKE2b-256 checksum How to use checksums |
9aeca897c6780508cb775febaa9c5f83cdc30df630b11f87a490eb0257aa8556
|
| 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.dev1778540451-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
| Download URL | stim-1.16.dev1778540451-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 |
31257ac0c57d6adace4c2483fdec26ac06a9079abdb3d5f23170085e5f247893
|
|
BLAKE2b-256 checksum How to use checksums |
d453544306cbe116aa8355811a440a48c9e9639e603968a3c3a8ca5569a59296
|
| 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.dev1778540451-cp39-cp39-macosx_11_0_arm64.whl
| Download URL | stim-1.16.dev1778540451-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 |
6e9015a6a9ed316cbfeb619d106e14c455168d68f07d6fda8aa271f5a4d22574
|
|
BLAKE2b-256 checksum How to use checksums |
fa22d5967244b87fdd3debc3e2cddca1bbab8776724349c2796648735f4c74c9
|
| 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.dev1778540451-cp39-cp39-macosx_10_9_x86_64.whl
| Download URL | stim-1.16.dev1778540451-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 |
6cdf90b2a6bd4c0f121d7edca4201fcc28430288ccea4d24dfd2948b7b7d2dba
|
|
BLAKE2b-256 checksum How to use checksums |
ff641c4b931acf16e2a91ba26ad98cd00eab98f40f57f1f193c02e427024f0f4
|
| 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.dev1778540451-cp38-cp38-win_amd64.whl
| Download URL | stim-1.16.dev1778540451-cp38-cp38-win_amd64.whl |
|---|---|
| Size | 2.8 MB |
| Tags | CPython 3.8 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
2661a5a74b09a52fca44a8f923610f2aeb677718260855b995f53ccf3162bdec
|
|
BLAKE2b-256 checksum How to use checksums |
f92768fcf73d19fe8a0ed5496cb95a1605691235fb0f5c7841f32b12810f3251
|
| 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.dev1778540451-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
| Download URL | stim-1.16.dev1778540451-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 |
2481950cace4de51e648f060a37569101512a1c2049f1224893af11ae345188d
|
|
BLAKE2b-256 checksum How to use checksums |
e5f19a6ac123fdc01412bf325262ce15f37bb74872d811085253ce54f184d775
|
| 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.dev1778540451-cp38-cp38-macosx_11_0_arm64.whl
| Download URL | stim-1.16.dev1778540451-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 |
6fa69c02a33bb0cad324a235560d04042714a26d892a8a965eab2d0922348d41
|
|
BLAKE2b-256 checksum How to use checksums |
c0cae05cb264fee8657475c8f505111e6fa7e6bc8b3b323ca0c2d90297e8483c
|
| 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.dev1778540451-cp38-cp38-macosx_10_9_x86_64.whl
| Download URL | stim-1.16.dev1778540451-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 |
67465d56eb644f9bfff52a1eb32d0d15b6b9fb9b5671c22543076f6ae1dfbeca
|
|
BLAKE2b-256 checksum How to use checksums |
4f2d58def2785d25fcd6befb817566d5f5edd1116526525b796cadbf15654cbc
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.12.9
|