Skip to main content

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.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

ace_oqs-1.3.2-cp314-cp314-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.14Windows x86-64

ace_oqs-1.3.2-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

ace_oqs-1.3.2-cp314-cp314-macosx_11_0_arm64.whl (3.1 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

ace_oqs-1.3.2-cp314-cp314-macosx_10_15_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

ace_oqs-1.3.2-cp313-cp313-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.13Windows x86-64

ace_oqs-1.3.2-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

ace_oqs-1.3.2-cp313-cp313-macosx_11_0_arm64.whl (3.1 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

ace_oqs-1.3.2-cp313-cp313-macosx_10_13_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

ace_oqs-1.3.2-cp312-cp312-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.12Windows x86-64

ace_oqs-1.3.2-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

ace_oqs-1.3.2-cp312-cp312-macosx_11_0_arm64.whl (3.1 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

ace_oqs-1.3.2-cp312-cp312-macosx_10_13_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

ace_oqs-1.3.2-cp311-cp311-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.11Windows x86-64

ace_oqs-1.3.2-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

ace_oqs-1.3.2-cp311-cp311-macosx_11_0_arm64.whl (3.1 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

ace_oqs-1.3.2-cp311-cp311-macosx_10_13_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.11macOS 10.13+ x86-64

ace_oqs-1.3.2-cp310-cp310-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.10Windows x86-64

ace_oqs-1.3.2-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

ace_oqs-1.3.2-cp310-cp310-macosx_11_0_arm64.whl (3.1 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

ace_oqs-1.3.2-cp310-cp310-macosx_10_13_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.10macOS 10.13+ x86-64

File details

Details for the file ace_oqs-1.3.2-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: ace_oqs-1.3.2-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.14

File hashes

Hashes for ace_oqs-1.3.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 702fc559df492c13f53be721824585a8b19132ac5ed25d78dcd3484e269dd7b3
MD5 cbdc100230fd8c49d930df046d335e21
BLAKE2b-256 9afab80c88fdff9dd55dd94371eb3e465162dbc716a615eeea74249159c25b92

See more details on using hashes here.

Provenance

The following attestation bundles were made for ace_oqs-1.3.2-cp314-cp314-win_amd64.whl:

Publisher: wheels.yml on mcygorek/ACE

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ace_oqs-1.3.2-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ace_oqs-1.3.2-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d2c247da74c8f60a6c6adb1b5835ee80b47da9a0f16a7ff5afc2ceb549509d1f
MD5 2fa3690b150d33ae2201f7072506407b
BLAKE2b-256 e488f115521dbdd2e28280155f0c29db8a028e1ba92569228c03b3c1221a5aa9

See more details on using hashes here.

Provenance

The following attestation bundles were made for ace_oqs-1.3.2-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on mcygorek/ACE

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ace_oqs-1.3.2-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ace_oqs-1.3.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8f1423e511ffc999f005fb6826cb496a678e74124daf73a8a90a70c7502ef800
MD5 e86d11e3c2209906bd6dafd4350a8026
BLAKE2b-256 73c911accf83c0e37c60a60974c6195edb0cdb8bfd2576d2cd8d31b301415dd4

See more details on using hashes here.

Provenance

The following attestation bundles were made for ace_oqs-1.3.2-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: wheels.yml on mcygorek/ACE

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ace_oqs-1.3.2-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for ace_oqs-1.3.2-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 7fd1633b98a4e6c1552e4be522cbcd89a2ba679fd8c1bef077fbb9ca57cde2c6
MD5 b6ea6a11479e05eb19e8f972336c3fc6
BLAKE2b-256 2178272d3c223c237201abacf625b8df6a8111139ade55d23f366bd62bca10d2

See more details on using hashes here.

Provenance

The following attestation bundles were made for ace_oqs-1.3.2-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: wheels.yml on mcygorek/ACE

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ace_oqs-1.3.2-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: ace_oqs-1.3.2-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.14

File hashes

Hashes for ace_oqs-1.3.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 f083e73c57b117834d5b39c058f1afd93aec7a1d2b0c44a365222eedcc204bc0
MD5 dfa20de0b97bf58ec2480e2e0d72a09b
BLAKE2b-256 4970f82283232dceb51389bdf5e6c20105fd0d8e862683880c5eb99823b9b87b

See more details on using hashes here.

Provenance

The following attestation bundles were made for ace_oqs-1.3.2-cp313-cp313-win_amd64.whl:

Publisher: wheels.yml on mcygorek/ACE

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ace_oqs-1.3.2-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ace_oqs-1.3.2-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 36e1517bf6c462ff549c3df07adade3bd183415409c8735b8982e6331b708f87
MD5 22fc8b093894b7faf1bcb06ad4440d17
BLAKE2b-256 05dca4f8cd7c02b2837c17ea380b123f621f4030c460acbcba99cedf551e213d

See more details on using hashes here.

Provenance

The following attestation bundles were made for ace_oqs-1.3.2-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on mcygorek/ACE

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ace_oqs-1.3.2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ace_oqs-1.3.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3190ff50490910790d27880606182bf7df32458b0d9c355c9f09829b7fa2bc49
MD5 1ad01f36cd6252985834157f75ee7b39
BLAKE2b-256 f9de47d6362a740803bf4ddcfe5127eec84c9f2faa22f28139d59d012543d2ed

See more details on using hashes here.

Provenance

The following attestation bundles were made for ace_oqs-1.3.2-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: wheels.yml on mcygorek/ACE

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ace_oqs-1.3.2-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for ace_oqs-1.3.2-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 26203aa843f9a83e44afc6b6cdfee0be16653c24ec9a1d532057ac5033a7213b
MD5 ec3ac3037f6882eb05b5a2af561406bd
BLAKE2b-256 132374bd54531919a87e0bae32fe27fa22660408fbffd2ecd52eea7aa9d540af

See more details on using hashes here.

Provenance

The following attestation bundles were made for ace_oqs-1.3.2-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: wheels.yml on mcygorek/ACE

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ace_oqs-1.3.2-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: ace_oqs-1.3.2-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.14

File hashes

Hashes for ace_oqs-1.3.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 46826c40554bf5f34eada2949decd8c83142a71206a8852091eda43ef2e1ba21
MD5 556d6596d1d8324519d3afe8307140b1
BLAKE2b-256 ff6ab025cd3af2b027dd90cb4632acb2bba8e11edc83baf0da7947cddf1066a3

See more details on using hashes here.

Provenance

The following attestation bundles were made for ace_oqs-1.3.2-cp312-cp312-win_amd64.whl:

Publisher: wheels.yml on mcygorek/ACE

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ace_oqs-1.3.2-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ace_oqs-1.3.2-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bce59adba0b38b7591b14f91b1740233f1c7053e38648b4ab650344ab5d2adcc
MD5 63df92d1e33cc1e4b01ae47b10b49a45
BLAKE2b-256 8ed1814fc89016e7a3be87ac483debfec60e3fd6ee56387bbf03912d611a3dbf

See more details on using hashes here.

Provenance

The following attestation bundles were made for ace_oqs-1.3.2-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on mcygorek/ACE

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ace_oqs-1.3.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ace_oqs-1.3.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 658e217a3b80daf9ee16d9ebf4ee996d82614cc777aa88130899aa70c7038506
MD5 4ae384f0e570d600a72f3073a391478a
BLAKE2b-256 23f42c72e140eb8d61e826c5cf100a21c0ac7cae20131a1b6bd16e92bbbdb023

See more details on using hashes here.

Provenance

The following attestation bundles were made for ace_oqs-1.3.2-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: wheels.yml on mcygorek/ACE

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ace_oqs-1.3.2-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for ace_oqs-1.3.2-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 21dcf0efb6e726aa9ea93bfe1d1e07fa69084362b6221d303f97702c0daef255
MD5 fdc20f41bbc40d0958150e2d369e9434
BLAKE2b-256 5a61b6943a41aca207fe9f1291a391b55cafb9a7d76a1df463de4f6d5a6de649

See more details on using hashes here.

Provenance

The following attestation bundles were made for ace_oqs-1.3.2-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: wheels.yml on mcygorek/ACE

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ace_oqs-1.3.2-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: ace_oqs-1.3.2-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.14

File hashes

Hashes for ace_oqs-1.3.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c309c604a083dff39209be83af8cbb253a156137a62c2ac72f15d1da163e3f2a
MD5 222c30e7d2cbb9e1cdb9ef6a46a27fd0
BLAKE2b-256 dd3efa91784e92a5d033491c9d6eae93d249c7dddaf36cc69f7f0d3d21f9af53

See more details on using hashes here.

Provenance

The following attestation bundles were made for ace_oqs-1.3.2-cp311-cp311-win_amd64.whl:

Publisher: wheels.yml on mcygorek/ACE

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ace_oqs-1.3.2-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ace_oqs-1.3.2-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 80be01bf91f0b6dd2fcbd0e9d69c5252ae558d6df45e57541a6e5568b52ac70d
MD5 8a4fdfdefc6425f44162e814860b4210
BLAKE2b-256 28f4148586da23250f6b13b99e6e116cbef91a884161542d650f868c6f44450f

See more details on using hashes here.

Provenance

The following attestation bundles were made for ace_oqs-1.3.2-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on mcygorek/ACE

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ace_oqs-1.3.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ace_oqs-1.3.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7ed4e97d7ae7839620c91a0c577b77433e56bcb4fdde4c16fba444a6319fc25d
MD5 6afe552644ecbd71dc15181019830f90
BLAKE2b-256 6204ffcd570799833f23eeaf8f94d51eb65b6a87e160fa377030fbb294ac55bf

See more details on using hashes here.

Provenance

The following attestation bundles were made for ace_oqs-1.3.2-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: wheels.yml on mcygorek/ACE

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ace_oqs-1.3.2-cp311-cp311-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for ace_oqs-1.3.2-cp311-cp311-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 da0b680aa2126be78ff61b8a82eca8ce16faa6dcb390850c3c8956ba35fc1dc0
MD5 e995183e1728570f725786b7143ff42b
BLAKE2b-256 79e5a16b557f568b14b5136e062e416622fb0e18419bbba9174788b52d99ce71

See more details on using hashes here.

Provenance

The following attestation bundles were made for ace_oqs-1.3.2-cp311-cp311-macosx_10_13_x86_64.whl:

Publisher: wheels.yml on mcygorek/ACE

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ace_oqs-1.3.2-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: ace_oqs-1.3.2-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.14

File hashes

Hashes for ace_oqs-1.3.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 ba02a46f6dc7524a7a8e48e79173f3dba30a2c6dc4bed047f57307ff1ef61b28
MD5 5e750496201cb5da16344e1acc125cb4
BLAKE2b-256 e2a3e29e3aecd4eb27a9dbb6eba0f627b88b31568e891f1edbc3eb1b390f5202

See more details on using hashes here.

Provenance

The following attestation bundles were made for ace_oqs-1.3.2-cp310-cp310-win_amd64.whl:

Publisher: wheels.yml on mcygorek/ACE

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ace_oqs-1.3.2-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ace_oqs-1.3.2-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a998c0ff2aa1ca9bcabc48790d5529e0445a6b12f0621d116a3bce1a93f27d99
MD5 89aa83552bf22b44b1685db65b7d4439
BLAKE2b-256 238b99124cc7fee82497d0c6158c6f0f5a9e55529825072702f1d1c926a35853

See more details on using hashes here.

Provenance

The following attestation bundles were made for ace_oqs-1.3.2-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on mcygorek/ACE

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ace_oqs-1.3.2-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ace_oqs-1.3.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 22e105c4ac77067d6d92da3b0322db8e10ef8d56d624752439fdb1305202bc20
MD5 b77e6cc7e7c50a0630e678dd32b612f9
BLAKE2b-256 5ce55ca874dc3d8963baf606a322dd0e692214fb06ed79e61b72e6582bff2c18

See more details on using hashes here.

Provenance

The following attestation bundles were made for ace_oqs-1.3.2-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: wheels.yml on mcygorek/ACE

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ace_oqs-1.3.2-cp310-cp310-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for ace_oqs-1.3.2-cp310-cp310-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 6e12aaf2a682ea114d635bd69d2859b1038b100ec1eb4695611b0228e12b3fb2
MD5 538b08668414a55d9b112fd438722c4c
BLAKE2b-256 6ee87996b9a2d3ae868c99acd51eb3d1c2d9159aebb189e2efc9d0d266cd1ca5

See more details on using hashes here.

Provenance

The following attestation bundles were made for ace_oqs-1.3.2-cp310-cp310-macosx_10_13_x86_64.whl:

Publisher: wheels.yml on mcygorek/ACE

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page