Add classical_renyi_relative_entropy
and renyi_relative_entropy
to quantum_info.entropies
#177
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# CI workflow that runs on selfhosted GPU | |
name: Tests with gpu | |
on: | |
pull_request: | |
types: [labeled] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
if: contains(join(github.event.pull_request.labels.*.name), 'run-on') | |
uses: qiboteam/workflows/.github/workflows/selfhosted.yml@main | |
with: | |
used-labels: ${{ toJSON(github.event.pull_request.labels.*.name) }} | |
python-version: "3.10" | |
artifact-url: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }} | |
poetry-extras: "--with cuda11,tests" | |
secrets: | |
repo_token: ${{ secrets.GITHUB_TOKEN }} |