ACE: Open Quantum System simulator based primarily on process tensors, path integrals, and tensor networks
Project description
ACE:
Code for numerically-exact simulations of open quantum systems.
Original author: Moritz Cygorek
Contributors: Thomas Bracht
Scope and Methods
Its name derives from the Automated Compression of Environments (ACE) algorithm [1] based on real-time path integrals and tensor networks. Over the years a number of other methods have been implemented so that it grew to a quite versatile and general open quantum systems simulator. These methods include:
| Authors | Title | Journal | |
|---|---|---|---|
| [1] | M. Cygorek, M. Cosacchi, A. Vagov, V.M. Axt, B.W. Lovett, J.Keeling & E.M. Gauger | Simulation of open quantum systems by automated compression of arbitrary environments | Nat. Phys. 18, 662–668 (2022). |
| [2] | M.R. Jørgensen, F.A. Pollock | Exploiting the Causal Tensor Network Structure of Quantum Processes to Efficiently Simulate Non-Markovian Path Integrals | Phys. Rev. Lett. 123, 240602 (2019). |
| [3] | M. Cygorek, J. Keeling, B.W. Lovett, E.M. Gauger | Sublinear Scaling in Non-Markovian Open Quantum Systems Simulations | Phys. Rev. X 14, 011010 (2024). |
| [4] | M. Cygorek, B.W. Lovett, J. Keeling, E.M. Gauger | Treelike process tensor contraction for automated compression of environments | Phys. Rev. Research 6, 043203 (2024). |
| [5] | V. Link, H.-H. Tu, W.T. Strunz | Open Quantum System Dynamics from Infinite Tensor Network Contraction | Phys. Rev. Lett. 132, 200403 (2024) |
The code is written in C/C++ but offers extensive Python bindings. Usage of the C/C++-Code based on Parameter files is described in:
| Authors | Title | Journal | |
|---|---|---|---|
| [6] | M. Cygorek, E.M. Gauger | ACE: A general-purpose non-Markovian open quantum systems simulation toolkit based on process tensors | J. Chem. Phys. 161, 074111 (2024). |
More about the concept of process tensors can be found in
| Authors | Title | Journal | |
|---|---|---|---|
| [7] | M. Cygorek, E.M. Gauger | Understanding and utilizing the inner bonds of process tensors | SciPost Phys. 18, 024 (2025). |
Installation:
The ACE code can be used in two ways:
- The C/C++ binaries simulate open quantum systems based on parameter files.
- Python bindings access the same internal C/C++ functions but allow easy integration into common Python-based data processing frameworks
The binaries can be directly downloaded from the releases. Simulation are then started from the command line by providing a parameter file as, e.g.,
ACE.exe example.param
Note that the binary must be chosen according to the operating system, and it must be placed in a PATH that can be resolved by the terminal.
The standalone Python package can be straightforwardly installed via
pip install ACE-OQS
Once installed, methods can be called after import ACE in Python scripts (see examples in the pybind/examples/ subdirectory).
It should be noted that these binaries are not linked against BLAS/LAPACK functions, e.g., provided by the Intel MKL. Linking against BLAS/LAPACK may lead to a sizable speed-up. To this end we recommend to download the source using git clone https://github.com/mcygorek/ACE and compile it. This process is described for different operating systems below.
Compilation from source in Linux:
Go to ACE directory and type "make"
The Eigen library has to available. The Makefile tries "/usr/include/eigen3/". If it's located elsewhere, please set the environment variable "EIGEN_HOME" during compilation.
The Intel MKL is automatically used if set up correctly on the system.
Successful compilation produces a binary "ACE" in the "bin" subdirectory
If "pybind11" is installed (if not, run python3 -m pip install build pybind11 first), Python bindings can be generated with "make pybind". This creates a .whl file in the pybind/ subdirectory that can be installed using pip install pybind/*.whl.
Compilation from source in Windows:
WSL2:
First, install WSL2 with Ubuntu and update the repository. To this end, open the PowerShell and type:
wsl --install Ubuntu
sudo apt-get update
sudo apt-get upgrade
Next, install C++ and Python compilers as well as required libraries
sudo apt install g++ make libeigen3-dev
sudo apt install python3-dev python3-matplotlib
Then, clone the github repository and compile (including python bindings)
cd
git clone https://github.com/mcygorek/ACE
cd ACE
make
Now, there should be a binary file "ACE" in the "bin" subdirectory. Ideally, set the path to this directory by appending to your local .bashrc
export PATH=$PATH:/PATH_TO/ACE/bin where PATH_TO is to be replaced by the path to the ACE directory, typically /home/USERNAME/ with the name of the user USERNAME
Try running examples, e.g.
ACE ACE/examples/JCP2024/Fig5/phonon_assisted.param
Python bindings
The ACE library provides Python bindings via pybind11. To install this, run
sudo apt install python3-pybind11
and in the ACE directory
make pybind
You can check out the python examples in the ACE/pybind subdirectory, e.g.,
python3 /PATH_TO/ACE/pybind/06_cQED.py but be sure to edit the second line and replace the /.../ by /PATH_TO/
Jupyter notebooks
If you want to use .ipynb notebooks, you can install jupyter on WSL, then access the notebooks via your regular browser (outside of WSL):
sudo apt install python3-notebook
If you run
jupyter-notebook
you will see a link (starting with "localhost:8888/"). Copy this long URL into your browser and go there. To try out the examples in the ACE/pybind subdirectory, make sure to copy the content of the .py files into newly created .ipynb notebook files. Note: the ".../ACE/pybind" in the second line in the examples should be replaced by "/home/WSLUSER/ACE/pybind", where WSLUSER is the username provided when installing WSL.
VS Code with WSL extension
There is an extension to VS Code that lets you access WSL. Just make sure you have
sudo apt install python3-ipython
installed on WSL and you should be able to access .ipynb notebooks on WSL using VS Code.
MSYS2:
A precompiled ACE.exe is included for easy usage, which however comes with limited functionality and suboptimal performance, and it may be outdated. A new Windows executable can be created with MSYS2:
First, install and run MSYS2. Then, in the UCRT version of MSYS2, run
pacman -S mingw-w64-ucrt-x86_64-toolchain
pacman -S mingw-w64-ucrt-x86_64-eigen3
pacman -S git
pacman -S make
git clone https://github.com/mcygorek/ACE
export EIGEN_HOME=/ucrt64/include/eigen3
cd ACE; make -f Makefile_static
Successful compilation produces a binary "ACE.exe" in the "bin" subdirectory
Python bindings on MSYS2 have not been tested yet.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file ace_oqs-1.3.1-cp314-cp314-win_amd64.whl.
File metadata
- Download URL: ace_oqs-1.3.1-cp314-cp314-win_amd64.whl
- Upload date:
- Size: 2.6 MB
- Tags: CPython 3.14, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
79cce5e0b84fe96fdc72ff64e455dfc7b451ee578722189918a9c7eb1423a75b
|
|
| MD5 |
3db17d6aa3e630092a49d8915bb4a003
|
|
| BLAKE2b-256 |
3c124934bfa9fc9cb2563d7c8a0a9cf7f28c6321a0bd4e9a548cb30f858252d7
|
Provenance
The following attestation bundles were made for ace_oqs-1.3.1-cp314-cp314-win_amd64.whl:
Publisher:
wheels.yml on mcygorek/ACE
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
ace_oqs-1.3.1-cp314-cp314-win_amd64.whl -
Subject digest:
79cce5e0b84fe96fdc72ff64e455dfc7b451ee578722189918a9c7eb1423a75b - Sigstore transparency entry: 1806634754
- Sigstore integration time:
-
Permalink:
mcygorek/ACE@bc6baecf38c09802fe979393ba8d58250c6ba163 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/mcygorek
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@bc6baecf38c09802fe979393ba8d58250c6ba163 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file ace_oqs-1.3.1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: ace_oqs-1.3.1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 1.9 MB
- Tags: CPython 3.14, manylinux: glibc 2.27+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
77f6eba34cb249355ac5fa00ef698ed32642abf585c804c55740b7a76739f1c9
|
|
| MD5 |
b37f49234f4355e821ecdea664edff91
|
|
| BLAKE2b-256 |
17032eb0a9b861bae19929622f1326fc413e1d78f94cff904927053dd322913d
|
Provenance
The following attestation bundles were made for ace_oqs-1.3.1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
wheels.yml on mcygorek/ACE
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
ace_oqs-1.3.1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
77f6eba34cb249355ac5fa00ef698ed32642abf585c804c55740b7a76739f1c9 - Sigstore transparency entry: 1806635173
- Sigstore integration time:
-
Permalink:
mcygorek/ACE@bc6baecf38c09802fe979393ba8d58250c6ba163 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/mcygorek
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@bc6baecf38c09802fe979393ba8d58250c6ba163 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file ace_oqs-1.3.1-cp314-cp314-macosx_11_0_arm64.whl.
File metadata
- Download URL: ace_oqs-1.3.1-cp314-cp314-macosx_11_0_arm64.whl
- Upload date:
- Size: 3.0 MB
- Tags: CPython 3.14, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a738791139a3071f823fe64bf4d8a19a769b560460eafe690e52a9ce31072a84
|
|
| MD5 |
cd91d2e976755dff735486ff04c81c3d
|
|
| BLAKE2b-256 |
0988db7269c6f27481e333121e73ccf8934e42d3cf516132800b8916cfeae8e2
|
Provenance
The following attestation bundles were made for ace_oqs-1.3.1-cp314-cp314-macosx_11_0_arm64.whl:
Publisher:
wheels.yml on mcygorek/ACE
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
ace_oqs-1.3.1-cp314-cp314-macosx_11_0_arm64.whl -
Subject digest:
a738791139a3071f823fe64bf4d8a19a769b560460eafe690e52a9ce31072a84 - Sigstore transparency entry: 1806635004
- Sigstore integration time:
-
Permalink:
mcygorek/ACE@bc6baecf38c09802fe979393ba8d58250c6ba163 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/mcygorek
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@bc6baecf38c09802fe979393ba8d58250c6ba163 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file ace_oqs-1.3.1-cp314-cp314-macosx_10_15_x86_64.whl.
File metadata
- Download URL: ace_oqs-1.3.1-cp314-cp314-macosx_10_15_x86_64.whl
- Upload date:
- Size: 3.2 MB
- Tags: CPython 3.14, macOS 10.15+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
baf15b1e8b257fe7be7fadd8fa9feb3ef246eab11427ef2eeb872b326ad4d836
|
|
| MD5 |
0596de3454bd15cfe037b0a3d4dfec3c
|
|
| BLAKE2b-256 |
4bc4050efbb8ba134ca6b6e71f66d6cf5627c50a1dfbeb86785fdb05962dd0f4
|
Provenance
The following attestation bundles were made for ace_oqs-1.3.1-cp314-cp314-macosx_10_15_x86_64.whl:
Publisher:
wheels.yml on mcygorek/ACE
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
ace_oqs-1.3.1-cp314-cp314-macosx_10_15_x86_64.whl -
Subject digest:
baf15b1e8b257fe7be7fadd8fa9feb3ef246eab11427ef2eeb872b326ad4d836 - Sigstore transparency entry: 1806634840
- Sigstore integration time:
-
Permalink:
mcygorek/ACE@bc6baecf38c09802fe979393ba8d58250c6ba163 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/mcygorek
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@bc6baecf38c09802fe979393ba8d58250c6ba163 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file ace_oqs-1.3.1-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: ace_oqs-1.3.1-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 2.6 MB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0f7bde1d20a8f824041a58d95ceb2ca3ce7424d68ce32d2314aad9dae9fd5a79
|
|
| MD5 |
11e17ec4e889df442891dd94f9ea39f6
|
|
| BLAKE2b-256 |
0e3d6d20ba8ee52ff468cf1bcf617df90ec9432fe4ef428c86157a61dc67988e
|
Provenance
The following attestation bundles were made for ace_oqs-1.3.1-cp313-cp313-win_amd64.whl:
Publisher:
wheels.yml on mcygorek/ACE
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
ace_oqs-1.3.1-cp313-cp313-win_amd64.whl -
Subject digest:
0f7bde1d20a8f824041a58d95ceb2ca3ce7424d68ce32d2314aad9dae9fd5a79 - Sigstore transparency entry: 1806635100
- Sigstore integration time:
-
Permalink:
mcygorek/ACE@bc6baecf38c09802fe979393ba8d58250c6ba163 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/mcygorek
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@bc6baecf38c09802fe979393ba8d58250c6ba163 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file ace_oqs-1.3.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: ace_oqs-1.3.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 1.9 MB
- Tags: CPython 3.13, manylinux: glibc 2.27+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
764337003e0b69a33273b8fb0b9e13abdee7f5ac5c3157037f91e11838a12711
|
|
| MD5 |
895fc6eb03cedaa9cc0dd73f8e3eca4d
|
|
| BLAKE2b-256 |
82e115898b284053fe26507df51da4278e6387e83644379c6c01dd0bbe230c21
|
Provenance
The following attestation bundles were made for ace_oqs-1.3.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
wheels.yml on mcygorek/ACE
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
ace_oqs-1.3.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
764337003e0b69a33273b8fb0b9e13abdee7f5ac5c3157037f91e11838a12711 - Sigstore transparency entry: 1806635139
- Sigstore integration time:
-
Permalink:
mcygorek/ACE@bc6baecf38c09802fe979393ba8d58250c6ba163 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/mcygorek
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@bc6baecf38c09802fe979393ba8d58250c6ba163 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file ace_oqs-1.3.1-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: ace_oqs-1.3.1-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 3.0 MB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6299f79a7c46f3523c61e4ff4da9751ae6b361c27f01cbd4b3d6fdc8c5d541c0
|
|
| MD5 |
8ac79bc6cd87d18d1e087157669d4477
|
|
| BLAKE2b-256 |
cc9400de31bbfcc84cc8e9fb75f971e3ca4a312431188aee2d90ff39fbe67b07
|
Provenance
The following attestation bundles were made for ace_oqs-1.3.1-cp313-cp313-macosx_11_0_arm64.whl:
Publisher:
wheels.yml on mcygorek/ACE
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
ace_oqs-1.3.1-cp313-cp313-macosx_11_0_arm64.whl -
Subject digest:
6299f79a7c46f3523c61e4ff4da9751ae6b361c27f01cbd4b3d6fdc8c5d541c0 - Sigstore transparency entry: 1806635057
- Sigstore integration time:
-
Permalink:
mcygorek/ACE@bc6baecf38c09802fe979393ba8d58250c6ba163 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/mcygorek
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@bc6baecf38c09802fe979393ba8d58250c6ba163 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file ace_oqs-1.3.1-cp313-cp313-macosx_10_13_x86_64.whl.
File metadata
- Download URL: ace_oqs-1.3.1-cp313-cp313-macosx_10_13_x86_64.whl
- Upload date:
- Size: 3.2 MB
- Tags: CPython 3.13, macOS 10.13+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9c790a923f2d1f180bc2ae259ff68fe8750d508501054eca07fb53e0fa878498
|
|
| MD5 |
b94ff9017eabf2bd02480d107dcf4c71
|
|
| BLAKE2b-256 |
22de4e72df75d7ee1187b0fbb0528973bad52b40d1ca372053ad4040ea9ab959
|
Provenance
The following attestation bundles were made for ace_oqs-1.3.1-cp313-cp313-macosx_10_13_x86_64.whl:
Publisher:
wheels.yml on mcygorek/ACE
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
ace_oqs-1.3.1-cp313-cp313-macosx_10_13_x86_64.whl -
Subject digest:
9c790a923f2d1f180bc2ae259ff68fe8750d508501054eca07fb53e0fa878498 - Sigstore transparency entry: 1806635276
- Sigstore integration time:
-
Permalink:
mcygorek/ACE@bc6baecf38c09802fe979393ba8d58250c6ba163 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/mcygorek
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@bc6baecf38c09802fe979393ba8d58250c6ba163 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file ace_oqs-1.3.1-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: ace_oqs-1.3.1-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 2.6 MB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
80e4859d29c6fa2b436a60cac8c953eaf4c0188c5c163e92e15b2a6875a02634
|
|
| MD5 |
5073e32b1fc0f6a131d23a4e2971e561
|
|
| BLAKE2b-256 |
0882397a9e607fa51004b85350895edbffc439411647ba964c7ff84c6174dddc
|
Provenance
The following attestation bundles were made for ace_oqs-1.3.1-cp312-cp312-win_amd64.whl:
Publisher:
wheels.yml on mcygorek/ACE
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
ace_oqs-1.3.1-cp312-cp312-win_amd64.whl -
Subject digest:
80e4859d29c6fa2b436a60cac8c953eaf4c0188c5c163e92e15b2a6875a02634 - Sigstore transparency entry: 1806634809
- Sigstore integration time:
-
Permalink:
mcygorek/ACE@bc6baecf38c09802fe979393ba8d58250c6ba163 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/mcygorek
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@bc6baecf38c09802fe979393ba8d58250c6ba163 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file ace_oqs-1.3.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: ace_oqs-1.3.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 1.9 MB
- Tags: CPython 3.12, manylinux: glibc 2.27+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
935bcf7097c793a55e3cd1d4cc333114e7cc07024bbb04502b1c80e9bbd1146b
|
|
| MD5 |
0b6dc49538af715d0a72c74053b67607
|
|
| BLAKE2b-256 |
46250cd15db7ba0d72cf75177a3bfa18652e8a6611667d7ec702f65b1428dec1
|
Provenance
The following attestation bundles were made for ace_oqs-1.3.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
wheels.yml on mcygorek/ACE
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
ace_oqs-1.3.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
935bcf7097c793a55e3cd1d4cc333114e7cc07024bbb04502b1c80e9bbd1146b - Sigstore transparency entry: 1806634785
- Sigstore integration time:
-
Permalink:
mcygorek/ACE@bc6baecf38c09802fe979393ba8d58250c6ba163 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/mcygorek
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@bc6baecf38c09802fe979393ba8d58250c6ba163 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file ace_oqs-1.3.1-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: ace_oqs-1.3.1-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 3.0 MB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
25109186881efadc6919e8089a9db5050d2787672f136f0d6404f9228b5d2317
|
|
| MD5 |
b906c591c34c9149e807984957fc6ed1
|
|
| BLAKE2b-256 |
a6984b884c602fedb17dd83018ba69a93c8c6404a9e9d9b96c43fb22d82a7dae
|
Provenance
The following attestation bundles were made for ace_oqs-1.3.1-cp312-cp312-macosx_11_0_arm64.whl:
Publisher:
wheels.yml on mcygorek/ACE
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
ace_oqs-1.3.1-cp312-cp312-macosx_11_0_arm64.whl -
Subject digest:
25109186881efadc6919e8089a9db5050d2787672f136f0d6404f9228b5d2317 - Sigstore transparency entry: 1806634737
- Sigstore integration time:
-
Permalink:
mcygorek/ACE@bc6baecf38c09802fe979393ba8d58250c6ba163 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/mcygorek
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@bc6baecf38c09802fe979393ba8d58250c6ba163 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file ace_oqs-1.3.1-cp312-cp312-macosx_10_13_x86_64.whl.
File metadata
- Download URL: ace_oqs-1.3.1-cp312-cp312-macosx_10_13_x86_64.whl
- Upload date:
- Size: 3.2 MB
- Tags: CPython 3.12, macOS 10.13+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f4c3d74b1ccc4212241ae033083751ce7da3fd351093c91b2827b116868ec369
|
|
| MD5 |
5b2f8b2690d0b71b9f24ef11611f0d35
|
|
| BLAKE2b-256 |
e4b9f4c3181fce568afbd3d296e7bed7f99e0391386685fe8c3880d4780eabd8
|
Provenance
The following attestation bundles were made for ace_oqs-1.3.1-cp312-cp312-macosx_10_13_x86_64.whl:
Publisher:
wheels.yml on mcygorek/ACE
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
ace_oqs-1.3.1-cp312-cp312-macosx_10_13_x86_64.whl -
Subject digest:
f4c3d74b1ccc4212241ae033083751ce7da3fd351093c91b2827b116868ec369 - Sigstore transparency entry: 1806634764
- Sigstore integration time:
-
Permalink:
mcygorek/ACE@bc6baecf38c09802fe979393ba8d58250c6ba163 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/mcygorek
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@bc6baecf38c09802fe979393ba8d58250c6ba163 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file ace_oqs-1.3.1-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: ace_oqs-1.3.1-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 2.6 MB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
74affadea10ce4c5fd1b166785863ca21c83c5fc43dbcd20edbe867271524960
|
|
| MD5 |
a72e7640bd736e2d9c946ff358e7eef7
|
|
| BLAKE2b-256 |
2a0ecb40e7956c7ef795aa6d4e7556082355709c9a63debc86a680f5f3099093
|
Provenance
The following attestation bundles were made for ace_oqs-1.3.1-cp311-cp311-win_amd64.whl:
Publisher:
wheels.yml on mcygorek/ACE
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
ace_oqs-1.3.1-cp311-cp311-win_amd64.whl -
Subject digest:
74affadea10ce4c5fd1b166785863ca21c83c5fc43dbcd20edbe867271524960 - Sigstore transparency entry: 1806634861
- Sigstore integration time:
-
Permalink:
mcygorek/ACE@bc6baecf38c09802fe979393ba8d58250c6ba163 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/mcygorek
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@bc6baecf38c09802fe979393ba8d58250c6ba163 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file ace_oqs-1.3.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: ace_oqs-1.3.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 1.9 MB
- Tags: CPython 3.11, manylinux: glibc 2.27+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6811142d1d6b8cf3c48ec3ce64d4aaf18ab39d23b492caf793a035a4fc1c9307
|
|
| MD5 |
174453c0106f843719ad80f0c3166320
|
|
| BLAKE2b-256 |
04d7472f1d79f107dfb11f71924e771536acb4037cff1138728b5ea2709d76f0
|
Provenance
The following attestation bundles were made for ace_oqs-1.3.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
wheels.yml on mcygorek/ACE
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
ace_oqs-1.3.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
6811142d1d6b8cf3c48ec3ce64d4aaf18ab39d23b492caf793a035a4fc1c9307 - Sigstore transparency entry: 1806634821
- Sigstore integration time:
-
Permalink:
mcygorek/ACE@bc6baecf38c09802fe979393ba8d58250c6ba163 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/mcygorek
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@bc6baecf38c09802fe979393ba8d58250c6ba163 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file ace_oqs-1.3.1-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: ace_oqs-1.3.1-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 3.0 MB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1f83b3d0416614ccc5da426cb0768ba7eb240bf5fbdcf69922f5f8733c288f7f
|
|
| MD5 |
5f839d19ea7ea551db775d838134bcf6
|
|
| BLAKE2b-256 |
b98b5950c5adf22f56af09356f6d1505ae04e8f8905803163896101c654bf638
|
Provenance
The following attestation bundles were made for ace_oqs-1.3.1-cp311-cp311-macosx_11_0_arm64.whl:
Publisher:
wheels.yml on mcygorek/ACE
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
ace_oqs-1.3.1-cp311-cp311-macosx_11_0_arm64.whl -
Subject digest:
1f83b3d0416614ccc5da426cb0768ba7eb240bf5fbdcf69922f5f8733c288f7f - Sigstore transparency entry: 1806635227
- Sigstore integration time:
-
Permalink:
mcygorek/ACE@bc6baecf38c09802fe979393ba8d58250c6ba163 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/mcygorek
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@bc6baecf38c09802fe979393ba8d58250c6ba163 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file ace_oqs-1.3.1-cp311-cp311-macosx_10_13_x86_64.whl.
File metadata
- Download URL: ace_oqs-1.3.1-cp311-cp311-macosx_10_13_x86_64.whl
- Upload date:
- Size: 3.2 MB
- Tags: CPython 3.11, macOS 10.13+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e6541875aa9404c0978025fdbc4f1826e81260cba30c8db568982e642106f085
|
|
| MD5 |
9e0eea21d0cbdb10189b10cfb89c91b4
|
|
| BLAKE2b-256 |
1044980715c14e93c7319d4c798db38e871c2a6784220fe9f07871b5cc9cbe29
|
Provenance
The following attestation bundles were made for ace_oqs-1.3.1-cp311-cp311-macosx_10_13_x86_64.whl:
Publisher:
wheels.yml on mcygorek/ACE
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
ace_oqs-1.3.1-cp311-cp311-macosx_10_13_x86_64.whl -
Subject digest:
e6541875aa9404c0978025fdbc4f1826e81260cba30c8db568982e642106f085 - Sigstore transparency entry: 1806634690
- Sigstore integration time:
-
Permalink:
mcygorek/ACE@bc6baecf38c09802fe979393ba8d58250c6ba163 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/mcygorek
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@bc6baecf38c09802fe979393ba8d58250c6ba163 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file ace_oqs-1.3.1-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: ace_oqs-1.3.1-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 2.6 MB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ed7ea4056a97f9b49f8a0f381c139c6a86ed484a04bcfeb2b91e1399e0488a67
|
|
| MD5 |
4b08a64b23a9d8e12ff7d2b3028b8c40
|
|
| BLAKE2b-256 |
fb806549fdec85f34ddfc0c7157b16fc300ceb3f8e61cad13c63ef1c5a3a4eb0
|
Provenance
The following attestation bundles were made for ace_oqs-1.3.1-cp310-cp310-win_amd64.whl:
Publisher:
wheels.yml on mcygorek/ACE
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
ace_oqs-1.3.1-cp310-cp310-win_amd64.whl -
Subject digest:
ed7ea4056a97f9b49f8a0f381c139c6a86ed484a04bcfeb2b91e1399e0488a67 - Sigstore transparency entry: 1806634942
- Sigstore integration time:
-
Permalink:
mcygorek/ACE@bc6baecf38c09802fe979393ba8d58250c6ba163 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/mcygorek
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@bc6baecf38c09802fe979393ba8d58250c6ba163 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file ace_oqs-1.3.1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: ace_oqs-1.3.1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 1.9 MB
- Tags: CPython 3.10, manylinux: glibc 2.27+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3cc5ac2ffdafb50694fca2df9a86d990133c2c8dfe3843cd97e7c2fd08b4e7f7
|
|
| MD5 |
ecb4905843892a71a480def4ee2891d4
|
|
| BLAKE2b-256 |
6c1c0a23d193aa80e3cd52a73a1f1dcbfae3115d6f59fe80b685ca90f790c3a0
|
Provenance
The following attestation bundles were made for ace_oqs-1.3.1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
wheels.yml on mcygorek/ACE
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
ace_oqs-1.3.1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
3cc5ac2ffdafb50694fca2df9a86d990133c2c8dfe3843cd97e7c2fd08b4e7f7 - Sigstore transparency entry: 1806634714
- Sigstore integration time:
-
Permalink:
mcygorek/ACE@bc6baecf38c09802fe979393ba8d58250c6ba163 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/mcygorek
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@bc6baecf38c09802fe979393ba8d58250c6ba163 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file ace_oqs-1.3.1-cp310-cp310-macosx_11_0_arm64.whl.
File metadata
- Download URL: ace_oqs-1.3.1-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 3.0 MB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1c8d6e0d6ec03f54e980f03b46ee2781cc7bf3d82552a710d0b0b63821c650c9
|
|
| MD5 |
e42a560c67135178f6e1c556adeebe65
|
|
| BLAKE2b-256 |
b4087a817c8532fce22528b97a4d987599e16d6ee579c9f22c04d289b73ebddf
|
Provenance
The following attestation bundles were made for ace_oqs-1.3.1-cp310-cp310-macosx_11_0_arm64.whl:
Publisher:
wheels.yml on mcygorek/ACE
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
ace_oqs-1.3.1-cp310-cp310-macosx_11_0_arm64.whl -
Subject digest:
1c8d6e0d6ec03f54e980f03b46ee2781cc7bf3d82552a710d0b0b63821c650c9 - Sigstore transparency entry: 1806635205
- Sigstore integration time:
-
Permalink:
mcygorek/ACE@bc6baecf38c09802fe979393ba8d58250c6ba163 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/mcygorek
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@bc6baecf38c09802fe979393ba8d58250c6ba163 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file ace_oqs-1.3.1-cp310-cp310-macosx_10_13_x86_64.whl.
File metadata
- Download URL: ace_oqs-1.3.1-cp310-cp310-macosx_10_13_x86_64.whl
- Upload date:
- Size: 3.2 MB
- Tags: CPython 3.10, macOS 10.13+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
452818ecfffed5e60f057be389ace6e4a386dd97729f84dc5eb0c1bd745e1ced
|
|
| MD5 |
78f2f6238e97e88ec66733d36596fa8b
|
|
| BLAKE2b-256 |
95b305b1172b9ff83c2dc9e869b95a15e12c9d68288b1864b02f02a3914e3b53
|
Provenance
The following attestation bundles were made for ace_oqs-1.3.1-cp310-cp310-macosx_10_13_x86_64.whl:
Publisher:
wheels.yml on mcygorek/ACE
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
ace_oqs-1.3.1-cp310-cp310-macosx_10_13_x86_64.whl -
Subject digest:
452818ecfffed5e60f057be389ace6e4a386dd97729f84dc5eb0c1bd745e1ced - Sigstore transparency entry: 1806635335
- Sigstore integration time:
-
Permalink:
mcygorek/ACE@bc6baecf38c09802fe979393ba8d58250c6ba163 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/mcygorek
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@bc6baecf38c09802fe979393ba8d58250c6ba163 -
Trigger Event:
workflow_dispatch
-
Statement type: