Analytical continuation suits for Green Software Package
Project description
█▀▀█ █▀▀█ █▀▀ █▀▀ █▀▀▄
█ ▄▄ █▄▄▀ █▀▀ █▀▀ █ █
█▄▄█ ▀ ▀▀ ▀▀▀ ▀▀▀ ▀ ▀
█▀▀█ █▀▀█ █▀▀▄ ▀▀█▀▀ ▀ █▀▀▄ █ █ █▀▀█ ▀▀█▀▀ ▀ █▀▀█ █▀▀▄
█ █ █ █ █ █ ▀█▀ █ █ █ █ █▄▄█ █ ▀█▀ █ █ █ █
█▄▄█ ▀▀▀▀ ▀ ▀ ▀ ▀▀▀ ▀ ▀ ▀▀▀ ▀ ▀ ▀ ▀▀▀ ▀▀▀▀ ▀ ▀
Green/Continuation is an Analytical continuation toolkit for Green Software Package
Installation
Green/Continuation comes in two forms
- C++ application
- Python package
Dependencies
Green/Continuation has the following required external dependencies
- HDF5 library version >= 1.10.2
- Message Passing Interface >= 3.1 (for C++ application)
- Eigen3 library >= 3.4.0
- GNU Multiprecision library
- pybind11 (optional to build python wrapper)
To build Green/Continuation CMake version 3.18 or above is required
Build and Install C++ application
The following example will build, test and install Green/Continuation to /path/to/weakcoupling/install/dir directory.
$ git clone https://github.com/Green-Phys/green-ac
$ cd green-ac
$ mkdir build && cd build
$ cmake -DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=/path/to/install/dir ..
$ make
$ make test
$ make install
Installation of Python package
We provide pre-built binaries for major Linux distributions and recent MacOS version via pip.
For installation using pip simply type pip install green-ac.
If pre-built binaries can not be used, package will be built from sources.
Usage
C++ application
After the Green/Continuation is built and installed, spectral function could be obtained by calling
<install dir>/bin/ac.exe --BETA <Inverse temperature> --grid_file <grid file> \
--input_file <input file> --output_file <output file> --group <HDF5 group with data> \
--e_min -5.0 --e_max 5.0 --n_omega 4000 --eta 0.01 \
--kind Nevanlinna
BETA-- the inverse temperature that was used to obtain resultsgrid_file-- name of the grid file that was used to obtain resultsinput_file-- name of the file that contains imaginary time dataoutput_file-- name of the file to store results of the continuationgroup-- name of the group that containsdataandmeshdatasets with imaginary time data and gride_min-- lowest frequency on the real axise_max-- largest frequency on the real axisn_omega-- number of frequency points on the real axiseta-- broadening parameterkind-- type of continuation to be used (current version only supportsNevanlinna)
After the completetion, results will be stored in group HDF5 group in the output_file file.
Python
In addition to C++ application, Green/Continuation provides a convinient Python package that can work directly with
numpy arrays. It supports two types of parallelism, using ProcessPoolExecutor from concurrent.futures and
MPI parallelization using mpi4py library.
To use Green/Continuation simply import it in your script as
import green_ac
and call solve function with the following parameters:
- Type of the continuation (currently we only provide
Nevanlinna) - Matsubara frequency grid
- Real frequency grid
- Data in Matsubara frequency domain
- Precision
Here is an example how to obtain real frequency Green's function for a simple two-pole non-interacting Green's function with precision at least 512 bits:
imgrid = (2*np.linspace(-50,49,100) + 1) * 1.j *np.pi/ 2
grid = np.linspace(-2,2,1001) + 0.01j
data = 0.5*(1/(imgrid + 0.5) + 1/(imgrid - 0.5))
data_out = green_ac.solve("Nevanlinna", imgrid, grid, data, 512)
Here we have 100 positive and negative Matsubara frequencies, define real frequency grid to have 1000 points and to be from -2 to 2 with broadening parameter 0.01,
We define Green's function on Matsubara grid with poles at -0.5 and 0.5. Real frequency data will be stored in data_out array.
Acknowledgements
This work is supported by National Science Foundation under the award OCA-2310582
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 Distribution
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 green_ac-0.2.6.tar.gz.
File metadata
- Download URL: green_ac-0.2.6.tar.gz
- Upload date:
- Size: 135.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
201c76e4fbecb3f7ccde6f78427d312fca0b696ff9dedd47107c9ef663a3ac05
|
|
| MD5 |
0ffdd091887936501881c2a3aef3a09a
|
|
| BLAKE2b-256 |
56cdeb797a7afe5b3ec8acac9382318aab8fd49780611753b380f1606c86035a
|
Provenance
The following attestation bundles were made for green_ac-0.2.6.tar.gz:
Publisher:
build_wheels.yml on Green-Phys/green-ac
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
green_ac-0.2.6.tar.gz -
Subject digest:
201c76e4fbecb3f7ccde6f78427d312fca0b696ff9dedd47107c9ef663a3ac05 - Sigstore transparency entry: 999728115
- Sigstore integration time:
-
Permalink:
Green-Phys/green-ac@7ea2b1458376b1380d335216df2ade36f2f72dfb -
Branch / Tag:
refs/tags/v0.2.6 - Owner: https://github.com/Green-Phys
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@7ea2b1458376b1380d335216df2ade36f2f72dfb -
Trigger Event:
push
-
Statement type:
File details
Details for the file green_ac-0.2.6-cp312-cp312-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: green_ac-0.2.6-cp312-cp312-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 436.2 kB
- Tags: CPython 3.12, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
128097e7e215fda6e66c4521535052edfcc2b38b53bcc2a1523c505174d0c4a6
|
|
| MD5 |
407f2684e1d01a92218a5186699aee12
|
|
| BLAKE2b-256 |
33539bc8e6af66de0861a46f7ab0bb613dfec3a0e65a0c24ab8abf9d21f1ac55
|
Provenance
The following attestation bundles were made for green_ac-0.2.6-cp312-cp312-manylinux_2_28_x86_64.whl:
Publisher:
build_wheels.yml on Green-Phys/green-ac
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
green_ac-0.2.6-cp312-cp312-manylinux_2_28_x86_64.whl -
Subject digest:
128097e7e215fda6e66c4521535052edfcc2b38b53bcc2a1523c505174d0c4a6 - Sigstore transparency entry: 999728170
- Sigstore integration time:
-
Permalink:
Green-Phys/green-ac@7ea2b1458376b1380d335216df2ade36f2f72dfb -
Branch / Tag:
refs/tags/v0.2.6 - Owner: https://github.com/Green-Phys
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@7ea2b1458376b1380d335216df2ade36f2f72dfb -
Trigger Event:
push
-
Statement type:
File details
Details for the file green_ac-0.2.6-cp312-cp312-macosx_14_0_arm64.whl.
File metadata
- Download URL: green_ac-0.2.6-cp312-cp312-macosx_14_0_arm64.whl
- Upload date:
- Size: 358.2 kB
- Tags: CPython 3.12, macOS 14.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
39dfa91207c8e940e4d1e33f0d05430365a15dd2c2635d6fb098f2b70eceffaf
|
|
| MD5 |
cbaaa01d520dfd13469145c71bb651fe
|
|
| BLAKE2b-256 |
55a11b107aeb89c470a1cb262e7a97f1b9e51ae2c8a8767cf389d40160f86f69
|
Provenance
The following attestation bundles were made for green_ac-0.2.6-cp312-cp312-macosx_14_0_arm64.whl:
Publisher:
build_wheels.yml on Green-Phys/green-ac
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
green_ac-0.2.6-cp312-cp312-macosx_14_0_arm64.whl -
Subject digest:
39dfa91207c8e940e4d1e33f0d05430365a15dd2c2635d6fb098f2b70eceffaf - Sigstore transparency entry: 999728291
- Sigstore integration time:
-
Permalink:
Green-Phys/green-ac@7ea2b1458376b1380d335216df2ade36f2f72dfb -
Branch / Tag:
refs/tags/v0.2.6 - Owner: https://github.com/Green-Phys
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@7ea2b1458376b1380d335216df2ade36f2f72dfb -
Trigger Event:
push
-
Statement type:
File details
Details for the file green_ac-0.2.6-cp311-cp311-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: green_ac-0.2.6-cp311-cp311-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 434.4 kB
- Tags: CPython 3.11, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d7468ab93e63d367ab367d5e40a2eda89c34d9bdfa9b9f2e47ba9669b94c6eb4
|
|
| MD5 |
02d9f20d3712f5f5cebc19623b491c9f
|
|
| BLAKE2b-256 |
c589bb98c39aaedc609db74954e12b10eaa6c50ace13c93132ea900e72ab4e7e
|
Provenance
The following attestation bundles were made for green_ac-0.2.6-cp311-cp311-manylinux_2_28_x86_64.whl:
Publisher:
build_wheels.yml on Green-Phys/green-ac
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
green_ac-0.2.6-cp311-cp311-manylinux_2_28_x86_64.whl -
Subject digest:
d7468ab93e63d367ab367d5e40a2eda89c34d9bdfa9b9f2e47ba9669b94c6eb4 - Sigstore transparency entry: 999728152
- Sigstore integration time:
-
Permalink:
Green-Phys/green-ac@7ea2b1458376b1380d335216df2ade36f2f72dfb -
Branch / Tag:
refs/tags/v0.2.6 - Owner: https://github.com/Green-Phys
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@7ea2b1458376b1380d335216df2ade36f2f72dfb -
Trigger Event:
push
-
Statement type:
File details
Details for the file green_ac-0.2.6-cp311-cp311-macosx_14_0_arm64.whl.
File metadata
- Download URL: green_ac-0.2.6-cp311-cp311-macosx_14_0_arm64.whl
- Upload date:
- Size: 356.6 kB
- Tags: CPython 3.11, macOS 14.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
925f5261eed6a65bada0d669bf785b22c209c5054464df612a08dc8d009af511
|
|
| MD5 |
e9862a73f7a5f4d2fa134ccc024c1470
|
|
| BLAKE2b-256 |
dea907dc8e740a93f340f64567270af00f3279dfc3aba77f3c65c8c81b03d744
|
Provenance
The following attestation bundles were made for green_ac-0.2.6-cp311-cp311-macosx_14_0_arm64.whl:
Publisher:
build_wheels.yml on Green-Phys/green-ac
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
green_ac-0.2.6-cp311-cp311-macosx_14_0_arm64.whl -
Subject digest:
925f5261eed6a65bada0d669bf785b22c209c5054464df612a08dc8d009af511 - Sigstore transparency entry: 999728338
- Sigstore integration time:
-
Permalink:
Green-Phys/green-ac@7ea2b1458376b1380d335216df2ade36f2f72dfb -
Branch / Tag:
refs/tags/v0.2.6 - Owner: https://github.com/Green-Phys
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@7ea2b1458376b1380d335216df2ade36f2f72dfb -
Trigger Event:
push
-
Statement type:
File details
Details for the file green_ac-0.2.6-cp310-cp310-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: green_ac-0.2.6-cp310-cp310-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 432.9 kB
- Tags: CPython 3.10, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
add6ffaa6add40d888cb79b4f52affe02ab82d944c604e723e89d2bbcd6fb350
|
|
| MD5 |
6ffaafb03224388c91f3927554755a9f
|
|
| BLAKE2b-256 |
50581ba327478b1a3a5d5d8dabb739780a7f45187bcfed3e0d516b62260bcd84
|
Provenance
The following attestation bundles were made for green_ac-0.2.6-cp310-cp310-manylinux_2_28_x86_64.whl:
Publisher:
build_wheels.yml on Green-Phys/green-ac
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
green_ac-0.2.6-cp310-cp310-manylinux_2_28_x86_64.whl -
Subject digest:
add6ffaa6add40d888cb79b4f52affe02ab82d944c604e723e89d2bbcd6fb350 - Sigstore transparency entry: 999728218
- Sigstore integration time:
-
Permalink:
Green-Phys/green-ac@7ea2b1458376b1380d335216df2ade36f2f72dfb -
Branch / Tag:
refs/tags/v0.2.6 - Owner: https://github.com/Green-Phys
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@7ea2b1458376b1380d335216df2ade36f2f72dfb -
Trigger Event:
push
-
Statement type:
File details
Details for the file green_ac-0.2.6-cp310-cp310-macosx_14_0_arm64.whl.
File metadata
- Download URL: green_ac-0.2.6-cp310-cp310-macosx_14_0_arm64.whl
- Upload date:
- Size: 355.4 kB
- Tags: CPython 3.10, macOS 14.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b8c2bac9ff28b2fc88a6ae387d8c02377c7700632af0635363397e358d248e0b
|
|
| MD5 |
b468ee0d0ab7e07776eadee6e6b129ae
|
|
| BLAKE2b-256 |
2d9e48d38a01330b346a169160e3d3a519bccce42097c9c3719d3aad0d4ffe60
|
Provenance
The following attestation bundles were made for green_ac-0.2.6-cp310-cp310-macosx_14_0_arm64.whl:
Publisher:
build_wheels.yml on Green-Phys/green-ac
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
green_ac-0.2.6-cp310-cp310-macosx_14_0_arm64.whl -
Subject digest:
b8c2bac9ff28b2fc88a6ae387d8c02377c7700632af0635363397e358d248e0b - Sigstore transparency entry: 999728193
- Sigstore integration time:
-
Permalink:
Green-Phys/green-ac@7ea2b1458376b1380d335216df2ade36f2f72dfb -
Branch / Tag:
refs/tags/v0.2.6 - Owner: https://github.com/Green-Phys
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@7ea2b1458376b1380d335216df2ade36f2f72dfb -
Trigger Event:
push
-
Statement type:
File details
Details for the file green_ac-0.2.6-cp39-cp39-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: green_ac-0.2.6-cp39-cp39-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 433.3 kB
- Tags: CPython 3.9, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f6aa3d9f9239e7fd72b655163c35bdd81c15a95ed76e8b0c8d9f64a6308d8c27
|
|
| MD5 |
d87e7bb0a3e3da336fcf376767e0e04e
|
|
| BLAKE2b-256 |
5a038eb46b834f1cdab072a98026e60f040cc231d5f1a3a00ce9bfefcd8f2ff2
|
Provenance
The following attestation bundles were made for green_ac-0.2.6-cp39-cp39-manylinux_2_28_x86_64.whl:
Publisher:
build_wheels.yml on Green-Phys/green-ac
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
green_ac-0.2.6-cp39-cp39-manylinux_2_28_x86_64.whl -
Subject digest:
f6aa3d9f9239e7fd72b655163c35bdd81c15a95ed76e8b0c8d9f64a6308d8c27 - Sigstore transparency entry: 999728240
- Sigstore integration time:
-
Permalink:
Green-Phys/green-ac@7ea2b1458376b1380d335216df2ade36f2f72dfb -
Branch / Tag:
refs/tags/v0.2.6 - Owner: https://github.com/Green-Phys
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@7ea2b1458376b1380d335216df2ade36f2f72dfb -
Trigger Event:
push
-
Statement type:
File details
Details for the file green_ac-0.2.6-cp39-cp39-macosx_14_0_arm64.whl.
File metadata
- Download URL: green_ac-0.2.6-cp39-cp39-macosx_14_0_arm64.whl
- Upload date:
- Size: 355.5 kB
- Tags: CPython 3.9, macOS 14.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d33b6f06f985e43127a7371f40cff8630d0850f45bf65fd6e37754c27c0f56f3
|
|
| MD5 |
5ed7783f57b2cd389e747e537d5f98c4
|
|
| BLAKE2b-256 |
cf62458737f7a980d2565a3bf57cb9631523943515e0ad92e2e0412e5a6b4af3
|
Provenance
The following attestation bundles were made for green_ac-0.2.6-cp39-cp39-macosx_14_0_arm64.whl:
Publisher:
build_wheels.yml on Green-Phys/green-ac
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
green_ac-0.2.6-cp39-cp39-macosx_14_0_arm64.whl -
Subject digest:
d33b6f06f985e43127a7371f40cff8630d0850f45bf65fd6e37754c27c0f56f3 - Sigstore transparency entry: 999728256
- Sigstore integration time:
-
Permalink:
Green-Phys/green-ac@7ea2b1458376b1380d335216df2ade36f2f72dfb -
Branch / Tag:
refs/tags/v0.2.6 - Owner: https://github.com/Green-Phys
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@7ea2b1458376b1380d335216df2ade36f2f72dfb -
Trigger Event:
push
-
Statement type:
File details
Details for the file green_ac-0.2.6-cp38-cp38-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: green_ac-0.2.6-cp38-cp38-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 433.0 kB
- Tags: CPython 3.8, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
64090b35c3b8b8c8906840be42ba2b206e9faff269fc19ff598d85414d443c4d
|
|
| MD5 |
fa98659082bcca000eb0e22d1fb1afba
|
|
| BLAKE2b-256 |
065ee0ee92ff7d3d144a58d4babcef9754ad9fcd19e072ccc2b98e25086239ed
|
Provenance
The following attestation bundles were made for green_ac-0.2.6-cp38-cp38-manylinux_2_28_x86_64.whl:
Publisher:
build_wheels.yml on Green-Phys/green-ac
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
green_ac-0.2.6-cp38-cp38-manylinux_2_28_x86_64.whl -
Subject digest:
64090b35c3b8b8c8906840be42ba2b206e9faff269fc19ff598d85414d443c4d - Sigstore transparency entry: 999728135
- Sigstore integration time:
-
Permalink:
Green-Phys/green-ac@7ea2b1458376b1380d335216df2ade36f2f72dfb -
Branch / Tag:
refs/tags/v0.2.6 - Owner: https://github.com/Green-Phys
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@7ea2b1458376b1380d335216df2ade36f2f72dfb -
Trigger Event:
push
-
Statement type:
File details
Details for the file green_ac-0.2.6-cp38-cp38-macosx_14_0_arm64.whl.
File metadata
- Download URL: green_ac-0.2.6-cp38-cp38-macosx_14_0_arm64.whl
- Upload date:
- Size: 355.3 kB
- Tags: CPython 3.8, macOS 14.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
96f5dad288d636c3a4a48b5bdfc80055a7b4b24b97cb7d7a0b916a41ccefe709
|
|
| MD5 |
d37148a8a6dd66b4d9241ff15ea8f44b
|
|
| BLAKE2b-256 |
739e45de9239177c245c092a748b3219766b9cad538f1a2e9aa40cf1d6263e2c
|
Provenance
The following attestation bundles were made for green_ac-0.2.6-cp38-cp38-macosx_14_0_arm64.whl:
Publisher:
build_wheels.yml on Green-Phys/green-ac
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
green_ac-0.2.6-cp38-cp38-macosx_14_0_arm64.whl -
Subject digest:
96f5dad288d636c3a4a48b5bdfc80055a7b4b24b97cb7d7a0b916a41ccefe709 - Sigstore transparency entry: 999728317
- Sigstore integration time:
-
Permalink:
Green-Phys/green-ac@7ea2b1458376b1380d335216df2ade36f2f72dfb -
Branch / Tag:
refs/tags/v0.2.6 - Owner: https://github.com/Green-Phys
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@7ea2b1458376b1380d335216df2ade36f2f72dfb -
Trigger Event:
push
-
Statement type: