diff --git a/.github/workflows/lightning-latest-latest.yml b/.github/workflows/lightning-latest-latest.yml deleted file mode 100644 index 71f0d41..0000000 --- a/.github/workflows/lightning-latest-latest.yml +++ /dev/null @@ -1,68 +0,0 @@ -# Workflow template for testing plugins against PennyLane latest - -name: lightning-latest-latest -on: - push: - branches: - - master - pull_request: - schedule: - - cron: '0 0 * * *' - workflow_dispatch: - - -env: - PLUGIN_REPO: PennyLaneAI/pennylane-lightning - PLUGIN_BRANCH: master - PLUGIN_PACKAGE: pennylane_lightning - PENNYLANE_BRANCH: master - GCC_VERSION: 11 - - -jobs: - tests: - runs-on: ubuntu-22.04 - - strategy: - fail-fast: false - - steps: - - name: Cancel Previous Runs - uses: styfle/cancel-workflow-action@0.4.1 - with: - access_token: ${{ github.token }} - - - name: Set up Python - uses: actions/setup-python@v2 - with: - python-version: "3.10" - - - name: Install buildtools & compilers - run: | - sudo apt-get update && sudo apt-get -y -q install cmake gcc-${{ env.GCC_VERSION }} g++-${{ env.GCC_VERSION }} ninja-build - - - name: Install requirements - run: | - pip install --upgrade pip - pip install --upgrade pybind11 - pip install pytest pytest-mock pytest-cov flaky - pip freeze - - - name: Install PennyLane and Plugin - run: | - pip install git+https://github.com/PennyLaneAI/pennylane.git \ - git+https://github.com/${{ env.PLUGIN_REPO }}.git@${{ env.PLUGIN_BRANCH }} - - - uses: actions/checkout@v2 - with: - repository: ${{ env.PLUGIN_REPO }} - path: plugin_repo - ref: ${{ env.PLUGIN_BRANCH }} - - - name: Run PennyLane device integration tests - run: | - pl-device-test --device lightning.qubit --shots=None --skip-ops - pl-device-test --device lightning.qubit --skip-ops --shots=20000 - - - name: Run plugin tests - run: python -m pytest plugin_repo/tests --tb=short diff --git a/.github/workflows/lightning-latest-rc.yml b/.github/workflows/lightning-latest-rc.yml deleted file mode 100644 index 6a0ae58..0000000 --- a/.github/workflows/lightning-latest-rc.yml +++ /dev/null @@ -1,68 +0,0 @@ -# Workflow template for testing plugins against PennyLane release candidate - -name: lightning-latest-rc -on: - push: - branches: - - master - pull_request: - schedule: - - cron: '0 0 * * *' - workflow_dispatch: - - -env: - PLUGIN_REPO: PennyLaneAI/pennylane-lightning - PLUGIN_BRANCH: master - PLUGIN_PACKAGE: pennylane_lightning - PENNYLANE_BRANCH: master - GCC_VERSION: 11 - - -jobs: - tests: - runs-on: ubuntu-22.04 - - strategy: - fail-fast: false - - steps: - - name: Cancel Previous Runs - uses: styfle/cancel-workflow-action@0.4.1 - with: - access_token: ${{ github.token }} - - - name: Set up Python - uses: actions/setup-python@v2 - with: - python-version: "3.10" - - - name: Install buildtools & compilers - run: | - sudo apt-get update && sudo apt-get -y -q install cmake gcc-${{ env.GCC_VERSION }} g++-${{ env.GCC_VERSION }} ninja-build - - - name: Install requirements - run: | - pip install --upgrade pip - pip install --upgrade pybind11 - pip install pytest pytest-mock pytest-cov flaky - pip freeze - - - name: Install PennyLane and Plugin - run: | - pip install git+https://github.com/PennyLaneAI/pennylane.git@v0.32.0-rc0 \ - git+https://github.com/${{ env.PLUGIN_REPO }}.git@${{ env.PLUGIN_BRANCH }} - - - uses: actions/checkout@v2 - with: - repository: ${{ env.PLUGIN_REPO }} - path: plugin_repo - ref: ${{ env.PLUGIN_BRANCH }} - - - name: Run PennyLane device integration tests - run: | - pl-device-test --device lightning.qubit --shots=None --skip-ops - pl-device-test --device lightning.qubit --skip-ops --shots=20000 - - - name: Run plugin tests - run: python -m pytest plugin_repo/tests --tb=short diff --git a/.github/workflows/lightning-latest-stable.yml b/.github/workflows/lightning-latest-stable.yml deleted file mode 100644 index a8a884e..0000000 --- a/.github/workflows/lightning-latest-stable.yml +++ /dev/null @@ -1,70 +0,0 @@ -# Workflow template for testing plugins against PennyLane stable - -name: lightning-latest-stable -on: - push: - branches: - - master - pull_request: - schedule: - - cron: '0 0 * * 0' - workflow_dispatch: - - -env: - PLUGIN_REPO: PennyLaneAI/pennylane-lightning - PLUGIN_BRANCH: master - PLUGIN_PACKAGE: pennylane_lightning - PENNYLANE_BRANCH: master - GCC_VERSION: 11 - - -jobs: - tests: - runs-on: ubuntu-22.04 - - strategy: - fail-fast: false - - steps: - - name: Cancel Previous Runs - uses: styfle/cancel-workflow-action@0.4.1 - with: - access_token: ${{ github.token }} - - - name: Set up Python - uses: actions/setup-python@v2 - with: - python-version: "3.10" - - - name: Install buildtools & compilers - run: | - sudo apt-get update && sudo apt-get -y -q install cmake gcc-${{ env.GCC_VERSION }} g++-${{ env.GCC_VERSION }} ninja-build - - - name: Install requirements - run: | - pip install --upgrade pip - pip install --upgrade pybind11 - pip install pytest pytest-mock pytest-cov flaky - pip freeze - - - name: Install PennyLane and Plugin - run: | - pip install pennylane git+https://github.com/${{ env.PLUGIN_REPO }}.git@${{ env.PLUGIN_BRANCH }} - - - uses: actions/checkout@v2 - with: - repository: ${{ env.PLUGIN_REPO }} - path: plugin_repo - ref: ${{ env.PLUGIN_BRANCH }} - - name: Run PennyLane device integration tests - run: | - if ! [ -x "$(command -v pl-device-test)" ]; then - echo 'Error: Version of PennyLane does not provide device integration tests.' >&2 - else - pl-device-test --device lightning.qubit --shots=None --skip-ops - pl-device-test --device lightning.qubit --skip-ops --shots=20000 - fi - - - name: Run plugin tests - run: python -m pytest plugin_repo/tests --tb=short diff --git a/.github/workflows/lightning-stable-latest.yml b/.github/workflows/lightning-stable-latest.yml deleted file mode 100644 index d3a7b90..0000000 --- a/.github/workflows/lightning-stable-latest.yml +++ /dev/null @@ -1,74 +0,0 @@ -# Workflow template for testing plugins against PennyLane latest - -name: lightning-stable-latest -on: - push: - branches: - - master - pull_request: - schedule: - - cron: '0 0 * * *' - workflow_dispatch: - - -env: - PLUGIN_REPO: PennyLaneAI/pennylane-lightning - PLUGIN_BRANCH: master - PLUGIN_PACKAGE: pennylane_lightning - PENNYLANE_BRANCH: master - GCC_VERSION: 11 - - -jobs: - tests: - runs-on: ubuntu-22.04 - - strategy: - fail-fast: false - - steps: - - name: Cancel Previous Runs - uses: styfle/cancel-workflow-action@0.4.1 - with: - access_token: ${{ github.token }} - - - name: Set up Python - uses: actions/setup-python@v2 - with: - python-version: "3.10" - - - name: Install buildtools & compilers - run: | - sudo apt-get update && sudo apt-get -y -q install cmake gcc-${{ env.GCC_VERSION }} g++-${{ env.GCC_VERSION }} ninja-build - - - name: Install requirements - run: | - pip install --upgrade pip - pip install --upgrade pybind11 - pip install pytest pytest-mock pytest-cov flaky - pip freeze - - - name: Install PennyLane and Plugin - run: | - pip install git+https://github.com/PennyLaneAI/pennylane.git \ - ${{ env.PLUGIN_PACKAGE }} --upgrade - - - name: Get plugin version - id: plugin-version - run: | - PLUGIN_VERSION=$(python -c "import pkg_resources as pkg; print(pkg.get_distribution('${{ env.PLUGIN_PACKAGE }}').version)") - echo "version=$PLUGIN_VERSION" >> $GITHUB_OUTPUT - - - uses: actions/checkout@v2 - with: - repository: ${{ env.PLUGIN_REPO }} - path: plugin_repo - ref: v${{ steps.plugin-version.outputs.version }} - - - name: Run PennyLane device integration tests - run: | - pl-device-test --device lightning.qubit --shots=None --skip-ops - pl-device-test --device lightning.qubit --skip-ops --shots=20000 - - - name: Run plugin tests - run: python -m pytest plugin_repo/tests --tb=short diff --git a/.github/workflows/lightning-stable-stable.yml b/.github/workflows/lightning-stable-stable.yml deleted file mode 100644 index c06f291..0000000 --- a/.github/workflows/lightning-stable-stable.yml +++ /dev/null @@ -1,77 +0,0 @@ -# Workflow template for testing plugins against PennyLane stable - -name: lightning-stable-stable -on: - push: - branches: - - master - pull_request: - schedule: - - cron: '0 0 * * 0' - workflow_dispatch: - - -env: - PLUGIN_REPO: PennyLaneAI/pennylane-lightning - PLUGIN_BRANCH: master - PLUGIN_PACKAGE: pennylane_lightning - PENNYLANE_BRANCH: master - GCC_VERSION: 11 - - -jobs: - tests: - runs-on: ubuntu-22.04 - - strategy: - fail-fast: false - - steps: - - name: Cancel Previous Runs - uses: styfle/cancel-workflow-action@0.4.1 - with: - access_token: ${{ github.token }} - - - name: Set up Python - uses: actions/setup-python@v2 - with: - python-version: "3.10" - - - name: Install buildtools & compilers - run: | - sudo apt-get update && sudo apt-get -y -q install cmake gcc-${{ env.GCC_VERSION }} g++-${{ env.GCC_VERSION }} ninja-build - - - name: Install requirements - run: | - pip install --upgrade pip - pip install --upgrade pybind11 - pip install pytest pytest-mock pytest-cov flaky - pip freeze - - - name: Install PennyLane and Plugin - run: | - pip install pennylane ${{ env.PLUGIN_PACKAGE }} --upgrade - pip freeze - - - name: Get plugin version - id: plugin-version - run: | - PLUGIN_VERSION=$(python -c "import pkg_resources as pkg; print(pkg.get_distribution('${{ env.PLUGIN_PACKAGE }}').version)") - echo "version=$PLUGIN_VERSION" >> $GITHUB_OUTPUT - - - uses: actions/checkout@v2 - with: - repository: ${{ env.PLUGIN_REPO }} - path: plugin_repo - ref: v${{ steps.plugin-version.outputs.version }} - - name: Run PennyLane device integration tests - run: | - if ! [ -x "$(command -v pl-device-test)" ]; then - echo 'Error: Version of PennyLane does not provide device integration tests.' >&2 - else - pl-device-test --device lightning.qubit --shots=None --skip-ops - pl-device-test --device lightning.qubit --skip-ops --shots=20000 - fi - - - name: Run plugin tests - run: python -m pytest plugin_repo/tests --tb=short diff --git a/README.md b/README.md index 629febe..7e28605 100644 --- a/README.md +++ b/README.md @@ -12,22 +12,22 @@ Finally, tests can be triggered manually via the 'Actions' tab. All entries in the matrix are tested against PennyLane latest (GitHub master). -| | PyPI version | Stable plugin/stable PennyLane | Stable plugin/latest PennyLane | Latest plugin/ stable PennyLane | Latest plugin/latest PennyLane | -|:------------------------------------------------------------------------------|:----------------------------------------------------------------------------------------------------------|:---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| -| [Qiskit](https://github.com/PennyLaneAI/pennylane-qiskit) | ![](https://img.shields.io/pypi/v/pennylane-qiskit?color=green&label=%20&style=flat-square) | [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/PennyLaneAI/plugin-test-matrix/qiskit-stable-stable.yml?branch=master)](https://github.com/PennyLaneAI/plugin-test-matrix/actions?query=workflow%3Aqiskit-stable-stable) | [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/PennyLaneAI/plugin-test-matrix/qiskit-stable-latest.yml?branch=master)](https://github.com/PennyLaneAI/plugin-test-matrix/actions?query=workflow%3Aqiskit-stable-latest) | [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/PennyLaneAI/plugin-test-matrix/qiskit-latest-stable.yml?branch=master)](https://github.com/PennyLaneAI/plugin-test-matrix/actions?query=workflow%3Aqiskit-latest-stable) | [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/PennyLaneAI/plugin-test-matrix/qiskit-latest-latest.yml?branch=master)](https://github.com/PennyLaneAI/plugin-test-matrix/actions?query=workflow%3Aqiskit-latest-latest) | -| [Cirq](https://github.com/PennyLaneAI/pennylane-cirq) | ![](https://img.shields.io/pypi/v/pennylane-cirq?color=green&label=%20&style=flat-square) | [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/PennyLaneAI/plugin-test-matrix/cirq-stable-stable.yml?branch=master)](https://github.com/PennyLaneAI/plugin-test-matrix/actions?query=workflow%3Acirq-stable-stable) | [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/PennyLaneAI/plugin-test-matrix/cirq-stable-latest.yml?branch=master)](https://github.com/PennyLaneAI/plugin-test-matrix/actions?query=workflow%3Acirq-stable-latest) | [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/PennyLaneAI/plugin-test-matrix/cirq-latest-stable.yml?branch=master)](https://github.com/PennyLaneAI/plugin-test-matrix/actions?query=workflow%3Acirq-latest-stable) | [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/PennyLaneAI/plugin-test-matrix/cirq-latest-latest.yml?branch=master)](https://github.com/PennyLaneAI/plugin-test-matrix/actions?query=workflow%3Acirq-latest-latest) | -| [Qulacs](https://github.com/PennyLaneAI/pennylane-qulacs) | ![](https://img.shields.io/pypi/v/pennylane-qulacs?color=green&label=%20&style=flat-square) | [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/PennyLaneAI/plugin-test-matrix/qulacs-stable-stable.yml?branch=master)](https://github.com/PennyLaneAI/plugin-test-matrix/actions?query=workflow%3Aqulacs-stable-stable) | [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/PennyLaneAI/plugin-test-matrix/qulacs-stable-latest.yml?branch=master)](https://github.com/PennyLaneAI/plugin-test-matrix/actions?query=workflow%3Aqulacs-stable-latest) | [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/PennyLaneAI/plugin-test-matrix/qulacs-latest-stable.yml?branch=master)](https://github.com/PennyLaneAI/plugin-test-matrix/actions?query=workflow%3Aqulacs-latest-stable) | [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/PennyLaneAI/plugin-test-matrix/qulacs-latest-latest.yml?branch=master)](https://github.com/PennyLaneAI/plugin-test-matrix/actions?query=workflow%3Aqulacs-latest-latest) | -| [AQT](https://github.com/PennyLaneAI/pennylane-aqt) | ![](https://img.shields.io/pypi/v/pennylane-aqt?color=green&label=%20&style=flat-square) | [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/PennyLaneAI/plugin-test-matrix/aqt-stable-stable.yml?branch=master)](https://github.com/PennyLaneAI/plugin-test-matrix/actions?query=workflow%3Aaqt-stable-stable) | [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/PennyLaneAI/plugin-test-matrix/aqt-stable-latest.yml?branch=master)](https://github.com/PennyLaneAI/plugin-test-matrix/actions?query=workflow%3Aaqt-stable-latest) | [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/PennyLaneAI/plugin-test-matrix/aqt-latest-stable.yml?branch=master)](https://github.com/PennyLaneAI/plugin-test-matrix/actions?query=workflow%3Aaqt-latest-stable) | [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/PennyLaneAI/plugin-test-matrix/aqt-latest-latest.yml?branch=master)](https://github.com/PennyLaneAI/plugin-test-matrix/actions?query=workflow%3Aaqt-latest-latest) | -| [Honeywell](https://github.com/PennyLaneAI/pennylane-honeywell) | ![](https://img.shields.io/pypi/v/pennylane-honeywell?color=green&label=%20&style=flat-square) | [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/PennyLaneAI/plugin-test-matrix/honeywell-stable-stable.yml?branch=master)](https://github.com/PennyLaneAI/plugin-test-matrix/actions?query=workflow%3Ahoneywell-stable-stable) | [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/PennyLaneAI/plugin-test-matrix/honeywell-stable-latest.yml?branch=master)](https://github.com/PennyLaneAI/plugin-test-matrix/actions?query=workflow%3Ahoneywell-stable-latest) | [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/PennyLaneAI/plugin-test-matrix/honeywell-latest-stable.yml?branch=master)](https://github.com/PennyLaneAI/plugin-test-matrix/actions?query=workflow%3Ahoneywell-latest-stable) | [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/PennyLaneAI/plugin-test-matrix/honeywell-latest-latest.yml?branch=master)](https://github.com/PennyLaneAI/plugin-test-matrix/actions?query=workflow%3Ahoneywell-latest-latest) | -| [IonQ](https://github.com/PennyLaneAI/pennylane-ionq) | ![](https://img.shields.io/pypi/v/pennylane-ionq?color=green&label=%20&style=flat-square) | [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/PennyLaneAI/plugin-test-matrix/ionq-stable-stable.yml?branch=master)](https://github.com/PennyLaneAI/plugin-test-matrix/actions?query=workflow%3Aionq-stable-stable) | [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/PennyLaneAI/plugin-test-matrix/ionq-stable-latest.yml?branch=master)](https://github.com/PennyLaneAI/plugin-test-matrix/actions?query=workflow%3Aionq-stable-latest) | [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/PennyLaneAI/plugin-test-matrix/ionq-latest-stable.yml?branch=master)](https://github.com/PennyLaneAI/plugin-test-matrix/actions?query=workflow%3Aionq-latest-stable) | [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/PennyLaneAI/plugin-test-matrix/ionq-latest-latest.yml?branch=master)](https://github.com/PennyLaneAI/plugin-test-matrix/actions?query=workflow%3Aionq-latest-latest) | -| [Rigetti](https://github.com/PennyLaneAI/pennylane-rigetti) | ![](https://img.shields.io/pypi/v/pennylane-rigetti?color=green&label=%20&style=flat-square) | [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/PennyLaneAI/plugin-test-matrix/rigetti-stable-stable.yml?branch=master)](https://github.com/PennyLaneAI/plugin-test-matrix/actions?query=workflow%3Arigetti-stable-stable) | [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/PennyLaneAI/plugin-test-matrix/rigetti-stable-latest.yml?branch=master)](https://github.com/PennyLaneAI/plugin-test-matrix/actions?query=workflow%3Arigetti-stable-latest) | [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/PennyLaneAI/plugin-test-matrix/rigetti-latest-stable.yml?branch=master)](https://github.com/PennyLaneAI/plugin-test-matrix/actions?query=workflow%3Arigetti-latest-stable) | [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/PennyLaneAI/plugin-test-matrix/rigetti-latest-latest.yml?branch=master)](https://github.com/PennyLaneAI/plugin-test-matrix/actions?query=workflow%3Arigetti-latest-latest) | -| [ProjectQ](https://github.com/PennyLaneAI/pennylane-pq) | ![](https://img.shields.io/pypi/v/pennylane-pq?color=green&label=%20&style=flat-square) | [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/PennyLaneAI/plugin-test-matrix/pq-stable-stable.yml?branch=master)](https://github.com/PennyLaneAI/plugin-test-matrix/actions?query=workflow%3Apq-stable-stable) | [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/PennyLaneAI/plugin-test-matrix/pq-stable-latest.yml?branch=master)](https://github.com/PennyLaneAI/plugin-test-matrix/actions?query=workflow%3Apq-stable-latest) | [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/PennyLaneAI/plugin-test-matrix/pq-latest-stable.yml?branch=master)](https://github.com/PennyLaneAI/plugin-test-matrix/actions?query=workflow%3Apq-latest-stable) | [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/PennyLaneAI/plugin-test-matrix/pq-latest-latest.yml?branch=master)](https://github.com/PennyLaneAI/plugin-test-matrix/actions?query=workflow%3Apq-latest-latest) | -| [Lightning](https://github.com/PennyLaneAI/pennylane-lightning) | ![](https://img.shields.io/pypi/v/pennylane-lightning?color=green&label=%20&style=flat-square) | [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/PennyLaneAI/plugin-test-matrix/lightning-stable-stable.yml?branch=master)](https://github.com/PennyLaneAI/plugin-test-matrix/actions?query=workflow%3Alightning-stable-stable) | [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/PennyLaneAI/plugin-test-matrix/lightning-stable-latest.yml?branch=master)](https://github.com/PennyLaneAI/plugin-test-matrix/actions?query=workflow%3Alightning-stable-latest) | [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/PennyLaneAI/plugin-test-matrix/lightning-latest-stable.yml?branch=master)](https://github.com/PennyLaneAI/plugin-test-matrix/actions?query=workflow%3Alightning-latest-stable) | [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/PennyLaneAI/plugin-test-matrix/lightning-latest-latest.yml?branch=master)](https://github.com/PennyLaneAI/plugin-test-matrix/actions?query=workflow%3Alightning-latest-latest) | -| [Lightning-GPU](https://github.com/PennyLaneAI/pennylane-lightning-gpu) | ![](https://img.shields.io/pypi/v/pennylane-lightning-gpu?color=green&label=%20&style=flat-square) | [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/PennyLaneAI/pennylane-lightning-gpu/compat-check-stable-stable.yml?branch=main)](https://github.com/PennyLaneAI/pennylane-lightning-gpu/actions/workflows/compat-check-stable-stable.yml) | [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/PennyLaneAI/pennylane-lightning-gpu/compat-check-stable-latest.yml?branch=main)](https://github.com/PennyLaneAI/pennylane-lightning-gpu/actions/workflows/compat-check-stable-latest.yml) | [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/PennyLaneAI/pennylane-lightning-gpu/compat-check-latest-stable.yml?branch=main)](https://github.com/PennyLaneAI/pennylane-lightning-gpu/actions/workflows/compat-check-latest-stable.yml) | [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/PennyLaneAI/pennylane-lightning-gpu/compat-check-latest-latest.yml?branch=main)](https://github.com/PennyLaneAI/pennylane-lightning-gpu/actions/workflows/compat-check-latest-latest.yml) | -| [Lightning-Kokkos](https://github.com/PennyLaneAI/pennylane-lightning-kokkos) | ![](https://img.shields.io/pypi/v/pennylane-lightning-kokkos?color=green&label=%20&style=flat-square) | [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/PennyLaneAI/pennylane-lightning-kokkos/compat-check-stable-stable.yml?branch=main)](https://github.com/PennyLaneAI/pennylane-lightning-kokkos/actions/workflows/compat-check-stable-stable.yml) | [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/PennyLaneAI/pennylane-lightning-kokkos/compat-check-stable-latest.yml?branch=main)](https://github.com/PennyLaneAI/pennylane-lightning-kokkos/actions/workflows/compat-check-stable-latest.yml) | [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/PennyLaneAI/pennylane-lightning-kokkos/compat-check-latest-stable.yml?branch=main)](https://github.com/PennyLaneAI/pennylane-lightning-kokkos/actions/workflows/compat-check-latest-stable.yml) | [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/PennyLaneAI/pennylane-lightning-kokkos/compat-check-latest-latest.yml?branch=main)](https://github.com/PennyLaneAI/pennylane-lightning-kokkos/actions/workflows/compat-check-latest-latest.yml) | -| [Orquestra](https://github.com/PennyLaneAI/pennylane-orquestra) | ![](https://img.shields.io/pypi/v/pennylane-orquestra?color=green&label=%20&style=flat-square) | [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/PennyLaneAI/plugin-test-matrix/orquestra-stable-stable.yml?branch=master)](https://github.com/PennyLaneAI/plugin-test-matrix/actions?query=workflow%3Aorquestra-stable-stable) | [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/PennyLaneAI/plugin-test-matrix/orquestra-stable-latest.yml?branch=master)](https://github.com/PennyLaneAI/plugin-test-matrix/actions?query=workflow%3Aorquestra-stable-latest) | [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/PennyLaneAI/plugin-test-matrix/orquestra-latest-stable.yml?branch=master)](https://github.com/PennyLaneAI/plugin-test-matrix/actions?query=workflow%3Aorquestra-latest-stable) | [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/PennyLaneAI/plugin-test-matrix/orquestra-latest-latest.yml?branch=master)](https://github.com/PennyLaneAI/plugin-test-matrix/actions?query=workflow%3Aorquestra-latest-latest) | -| [Braket](https://github.com/aws/amazon-braket-pennylane-plugin-python) | ![](https://img.shields.io/pypi/v/amazon-braket-pennylane-plugin?color=green&label=%20&style=flat-square) | [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/PennyLaneAI/plugin-test-matrix/braket-stable-stable.yml?branch=master)](https://github.com/PennyLaneAI/plugin-test-matrix/actions?query=workflow%3Abraket-stable-stable) | [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/PennyLaneAI/plugin-test-matrix/braket-stable-latest.yml?branch=master)](https://github.com/PennyLaneAI/plugin-test-matrix/actions?query=workflow%3Abraket-stable-latest) | [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/PennyLaneAI/plugin-test-matrix/braket-latest-stable.yml?branch=master)](https://github.com/PennyLaneAI/plugin-test-matrix/actions?query=workflow%3Abraket-latest-stable) | [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/PennyLaneAI/plugin-test-matrix/braket-latest-latest.yml?branch=master)](https://github.com/PennyLaneAI/plugin-test-matrix/actions?query=workflow%3Abraket-latest-latest) | -| [Quantum Inspire](https://github.com/QuTech-Delft/pennylane-quantuminspire) | ![](https://img.shields.io/pypi/v/pennylane-quantuminspire?color=green&label=%20&style=flat-square) | [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/PennyLaneAI/plugin-test-matrix/quantuminspire-stable-stable.yml?branch=master)](https://github.com/PennyLaneAI/plugin-test-matrix/actions?query=workflow%3Aquantuminspire-stable-stable) | [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/PennyLaneAI/plugin-test-matrix/quantuminspire-stable-latest.yml?branch=master)](https://github.com/PennyLaneAI/plugin-test-matrix/actions?query=workflow%3Aquantuminspire-stable-latest) | [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/PennyLaneAI/plugin-test-matrix/quantuminspire-latest-stable.yml?branch=master)](https://github.com/PennyLaneAI/plugin-test-matrix/actions?query=workflow%3Aquantuminspire-latest-stable) | [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/PennyLaneAI/plugin-test-matrix/quantuminspire-latest-latest.yml?branch=master)](https://github.com/PennyLaneAI/plugin-test-matrix/actions?query=workflow%3Aquantuminspire-latest-latest) | +| | PyPI version | Stable plugin/stable PennyLane | Stable plugin/latest PennyLane | Latest plugin/ stable PennyLane | Latest plugin/latest PennyLane | +| :---------------------------------------------------------------------------- | :-------------------------------------------------------------------------------------------------------- | :--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | :--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | :--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | :--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [Qiskit](https://github.com/PennyLaneAI/pennylane-qiskit) | ![](https://img.shields.io/pypi/v/pennylane-qiskit?color=green&label=%20&style=flat-square) | [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/PennyLaneAI/plugin-test-matrix/qiskit-stable-stable.yml?branch=master)](https://github.com/PennyLaneAI/plugin-test-matrix/actions?query=workflow%3Aqiskit-stable-stable) | [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/PennyLaneAI/plugin-test-matrix/qiskit-stable-latest.yml?branch=master)](https://github.com/PennyLaneAI/plugin-test-matrix/actions?query=workflow%3Aqiskit-stable-latest) | [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/PennyLaneAI/plugin-test-matrix/qiskit-latest-stable.yml?branch=master)](https://github.com/PennyLaneAI/plugin-test-matrix/actions?query=workflow%3Aqiskit-latest-stable) | [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/PennyLaneAI/plugin-test-matrix/qiskit-latest-latest.yml?branch=master)](https://github.com/PennyLaneAI/plugin-test-matrix/actions?query=workflow%3Aqiskit-latest-latest) | +| [Cirq](https://github.com/PennyLaneAI/pennylane-cirq) | ![](https://img.shields.io/pypi/v/pennylane-cirq?color=green&label=%20&style=flat-square) | [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/PennyLaneAI/plugin-test-matrix/cirq-stable-stable.yml?branch=master)](https://github.com/PennyLaneAI/plugin-test-matrix/actions?query=workflow%3Acirq-stable-stable) | [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/PennyLaneAI/plugin-test-matrix/cirq-stable-latest.yml?branch=master)](https://github.com/PennyLaneAI/plugin-test-matrix/actions?query=workflow%3Acirq-stable-latest) | [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/PennyLaneAI/plugin-test-matrix/cirq-latest-stable.yml?branch=master)](https://github.com/PennyLaneAI/plugin-test-matrix/actions?query=workflow%3Acirq-latest-stable) | [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/PennyLaneAI/plugin-test-matrix/cirq-latest-latest.yml?branch=master)](https://github.com/PennyLaneAI/plugin-test-matrix/actions?query=workflow%3Acirq-latest-latest) | +| [Qulacs](https://github.com/PennyLaneAI/pennylane-qulacs) | ![](https://img.shields.io/pypi/v/pennylane-qulacs?color=green&label=%20&style=flat-square) | [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/PennyLaneAI/plugin-test-matrix/qulacs-stable-stable.yml?branch=master)](https://github.com/PennyLaneAI/plugin-test-matrix/actions?query=workflow%3Aqulacs-stable-stable) | [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/PennyLaneAI/plugin-test-matrix/qulacs-stable-latest.yml?branch=master)](https://github.com/PennyLaneAI/plugin-test-matrix/actions?query=workflow%3Aqulacs-stable-latest) | [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/PennyLaneAI/plugin-test-matrix/qulacs-latest-stable.yml?branch=master)](https://github.com/PennyLaneAI/plugin-test-matrix/actions?query=workflow%3Aqulacs-latest-stable) | [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/PennyLaneAI/plugin-test-matrix/qulacs-latest-latest.yml?branch=master)](https://github.com/PennyLaneAI/plugin-test-matrix/actions?query=workflow%3Aqulacs-latest-latest) | +| [AQT](https://github.com/PennyLaneAI/pennylane-aqt) | ![](https://img.shields.io/pypi/v/pennylane-aqt?color=green&label=%20&style=flat-square) | [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/PennyLaneAI/plugin-test-matrix/aqt-stable-stable.yml?branch=master)](https://github.com/PennyLaneAI/plugin-test-matrix/actions?query=workflow%3Aaqt-stable-stable) | [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/PennyLaneAI/plugin-test-matrix/aqt-stable-latest.yml?branch=master)](https://github.com/PennyLaneAI/plugin-test-matrix/actions?query=workflow%3Aaqt-stable-latest) | [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/PennyLaneAI/plugin-test-matrix/aqt-latest-stable.yml?branch=master)](https://github.com/PennyLaneAI/plugin-test-matrix/actions?query=workflow%3Aaqt-latest-stable) | [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/PennyLaneAI/plugin-test-matrix/aqt-latest-latest.yml?branch=master)](https://github.com/PennyLaneAI/plugin-test-matrix/actions?query=workflow%3Aaqt-latest-latest) | +| [Honeywell](https://github.com/PennyLaneAI/pennylane-honeywell) | ![](https://img.shields.io/pypi/v/pennylane-honeywell?color=green&label=%20&style=flat-square) | [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/PennyLaneAI/plugin-test-matrix/honeywell-stable-stable.yml?branch=master)](https://github.com/PennyLaneAI/plugin-test-matrix/actions?query=workflow%3Ahoneywell-stable-stable) | [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/PennyLaneAI/plugin-test-matrix/honeywell-stable-latest.yml?branch=master)](https://github.com/PennyLaneAI/plugin-test-matrix/actions?query=workflow%3Ahoneywell-stable-latest) | [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/PennyLaneAI/plugin-test-matrix/honeywell-latest-stable.yml?branch=master)](https://github.com/PennyLaneAI/plugin-test-matrix/actions?query=workflow%3Ahoneywell-latest-stable) | [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/PennyLaneAI/plugin-test-matrix/honeywell-latest-latest.yml?branch=master)](https://github.com/PennyLaneAI/plugin-test-matrix/actions?query=workflow%3Ahoneywell-latest-latest) | +| [IonQ](https://github.com/PennyLaneAI/pennylane-ionq) | ![](https://img.shields.io/pypi/v/pennylane-ionq?color=green&label=%20&style=flat-square) | [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/PennyLaneAI/plugin-test-matrix/ionq-stable-stable.yml?branch=master)](https://github.com/PennyLaneAI/plugin-test-matrix/actions?query=workflow%3Aionq-stable-stable) | [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/PennyLaneAI/plugin-test-matrix/ionq-stable-latest.yml?branch=master)](https://github.com/PennyLaneAI/plugin-test-matrix/actions?query=workflow%3Aionq-stable-latest) | [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/PennyLaneAI/plugin-test-matrix/ionq-latest-stable.yml?branch=master)](https://github.com/PennyLaneAI/plugin-test-matrix/actions?query=workflow%3Aionq-latest-stable) | [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/PennyLaneAI/plugin-test-matrix/ionq-latest-latest.yml?branch=master)](https://github.com/PennyLaneAI/plugin-test-matrix/actions?query=workflow%3Aionq-latest-latest) | +| [Rigetti](https://github.com/PennyLaneAI/pennylane-rigetti) | ![](https://img.shields.io/pypi/v/pennylane-rigetti?color=green&label=%20&style=flat-square) | [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/PennyLaneAI/plugin-test-matrix/rigetti-stable-stable.yml?branch=master)](https://github.com/PennyLaneAI/plugin-test-matrix/actions?query=workflow%3Arigetti-stable-stable) | [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/PennyLaneAI/plugin-test-matrix/rigetti-stable-latest.yml?branch=master)](https://github.com/PennyLaneAI/plugin-test-matrix/actions?query=workflow%3Arigetti-stable-latest) | [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/PennyLaneAI/plugin-test-matrix/rigetti-latest-stable.yml?branch=master)](https://github.com/PennyLaneAI/plugin-test-matrix/actions?query=workflow%3Arigetti-latest-stable) | [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/PennyLaneAI/plugin-test-matrix/rigetti-latest-latest.yml?branch=master)](https://github.com/PennyLaneAI/plugin-test-matrix/actions?query=workflow%3Arigetti-latest-latest) | +| [ProjectQ](https://github.com/PennyLaneAI/pennylane-pq) | ![](https://img.shields.io/pypi/v/pennylane-pq?color=green&label=%20&style=flat-square) | [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/PennyLaneAI/plugin-test-matrix/pq-stable-stable.yml?branch=master)](https://github.com/PennyLaneAI/plugin-test-matrix/actions?query=workflow%3Apq-stable-stable) | [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/PennyLaneAI/plugin-test-matrix/pq-stable-latest.yml?branch=master)](https://github.com/PennyLaneAI/plugin-test-matrix/actions?query=workflow%3Apq-stable-latest) | [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/PennyLaneAI/plugin-test-matrix/pq-latest-stable.yml?branch=master)](https://github.com/PennyLaneAI/plugin-test-matrix/actions?query=workflow%3Apq-latest-stable) | [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/PennyLaneAI/plugin-test-matrix/pq-latest-latest.yml?branch=master)](https://github.com/PennyLaneAI/plugin-test-matrix/actions?query=workflow%3Apq-latest-latest) | +| [Lightning](https://github.com/PennyLaneAI/pennylane-lightning) | ![](https://img.shields.io/pypi/v/pennylane-lightning?color=green&label=%20&style=flat-square) | [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/PennyLaneAI/pennylane-lightning/compat-check-stable-stable.yml?branch=master)](https://github.com/PennyLaneAI/pennylane-lightning/actions/workflows/compat-check-stable-stable.yml) | [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/PennyLaneAI/pennylane-lightning/compat-check-stable-latest.yml?branch=master)](https://github.com/PennyLaneAI/pennylane-lightning/actions/workflows/compat-check-stable-latest.yml) | [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/PennyLaneAI/pennylane-lightning/compat-check-latest-stable.yml?branch=master)](https://github.com/PennyLaneAI/pennylane-lightning/actions/workflows/compat-check-latest-stable.yml) | [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/PennyLaneAI/pennylane-lightning/compat-check-latest-latest.yml?branch=master)](https://github.com/PennyLaneAI/pennylane-lightning/actions/workflows/compat-check-latest-latest.yml) | +| [Lightning-GPU](https://github.com/PennyLaneAI/pennylane-lightning-gpu) | ![](https://img.shields.io/pypi/v/pennylane-lightning-gpu?color=green&label=%20&style=flat-square) | [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/PennyLaneAI/pennylane-lightning-gpu/compat-check-stable-stable.yml?branch=main)](https://github.com/PennyLaneAI/pennylane-lightning-gpu/actions/workflows/compat-check-stable-stable.yml) | [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/PennyLaneAI/pennylane-lightning-gpu/compat-check-stable-latest.yml?branch=main)](https://github.com/PennyLaneAI/pennylane-lightning-gpu/actions/workflows/compat-check-stable-latest.yml) | [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/PennyLaneAI/pennylane-lightning-gpu/compat-check-latest-stable.yml?branch=main)](https://github.com/PennyLaneAI/pennylane-lightning-gpu/actions/workflows/compat-check-latest-stable.yml) | [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/PennyLaneAI/pennylane-lightning-gpu/compat-check-latest-latest.yml?branch=main)](https://github.com/PennyLaneAI/pennylane-lightning-gpu/actions/workflows/compat-check-latest-latest.yml) | +| [Lightning-Kokkos](https://github.com/PennyLaneAI/pennylane-lightning-kokkos) | ![](https://img.shields.io/pypi/v/pennylane-lightning-kokkos?color=green&label=%20&style=flat-square) | [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/PennyLaneAI/pennylane-lightning-kokkos/compat-check-stable-stable.yml?branch=main)](https://github.com/PennyLaneAI/pennylane-lightning-kokkos/actions/workflows/compat-check-stable-stable.yml) | [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/PennyLaneAI/pennylane-lightning-kokkos/compat-check-stable-latest.yml?branch=main)](https://github.com/PennyLaneAI/pennylane-lightning-kokkos/actions/workflows/compat-check-stable-latest.yml) | [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/PennyLaneAI/pennylane-lightning-kokkos/compat-check-latest-stable.yml?branch=main)](https://github.com/PennyLaneAI/pennylane-lightning-kokkos/actions/workflows/compat-check-latest-stable.yml) | [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/PennyLaneAI/pennylane-lightning-kokkos/compat-check-latest-latest.yml?branch=main)](https://github.com/PennyLaneAI/pennylane-lightning-kokkos/actions/workflows/compat-check-latest-latest.yml) | +| [Orquestra](https://github.com/PennyLaneAI/pennylane-orquestra) | ![](https://img.shields.io/pypi/v/pennylane-orquestra?color=green&label=%20&style=flat-square) | [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/PennyLaneAI/plugin-test-matrix/orquestra-stable-stable.yml?branch=master)](https://github.com/PennyLaneAI/plugin-test-matrix/actions?query=workflow%3Aorquestra-stable-stable) | [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/PennyLaneAI/plugin-test-matrix/orquestra-stable-latest.yml?branch=master)](https://github.com/PennyLaneAI/plugin-test-matrix/actions?query=workflow%3Aorquestra-stable-latest) | [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/PennyLaneAI/plugin-test-matrix/orquestra-latest-stable.yml?branch=master)](https://github.com/PennyLaneAI/plugin-test-matrix/actions?query=workflow%3Aorquestra-latest-stable) | [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/PennyLaneAI/plugin-test-matrix/orquestra-latest-latest.yml?branch=master)](https://github.com/PennyLaneAI/plugin-test-matrix/actions?query=workflow%3Aorquestra-latest-latest) | +| [Braket](https://github.com/aws/amazon-braket-pennylane-plugin-python) | ![](https://img.shields.io/pypi/v/amazon-braket-pennylane-plugin?color=green&label=%20&style=flat-square) | [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/PennyLaneAI/plugin-test-matrix/braket-stable-stable.yml?branch=master)](https://github.com/PennyLaneAI/plugin-test-matrix/actions?query=workflow%3Abraket-stable-stable) | [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/PennyLaneAI/plugin-test-matrix/braket-stable-latest.yml?branch=master)](https://github.com/PennyLaneAI/plugin-test-matrix/actions?query=workflow%3Abraket-stable-latest) | [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/PennyLaneAI/plugin-test-matrix/braket-latest-stable.yml?branch=master)](https://github.com/PennyLaneAI/plugin-test-matrix/actions?query=workflow%3Abraket-latest-stable) | [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/PennyLaneAI/plugin-test-matrix/braket-latest-latest.yml?branch=master)](https://github.com/PennyLaneAI/plugin-test-matrix/actions?query=workflow%3Abraket-latest-latest) | +| [Quantum Inspire](https://github.com/QuTech-Delft/pennylane-quantuminspire) | ![](https://img.shields.io/pypi/v/pennylane-quantuminspire?color=green&label=%20&style=flat-square) | [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/PennyLaneAI/plugin-test-matrix/quantuminspire-stable-stable.yml?branch=master)](https://github.com/PennyLaneAI/plugin-test-matrix/actions?query=workflow%3Aquantuminspire-stable-stable) | [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/PennyLaneAI/plugin-test-matrix/quantuminspire-stable-latest.yml?branch=master)](https://github.com/PennyLaneAI/plugin-test-matrix/actions?query=workflow%3Aquantuminspire-stable-latest) | [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/PennyLaneAI/plugin-test-matrix/quantuminspire-latest-stable.yml?branch=master)](https://github.com/PennyLaneAI/plugin-test-matrix/actions?query=workflow%3Aquantuminspire-latest-stable) | [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/PennyLaneAI/plugin-test-matrix/quantuminspire-latest-latest.yml?branch=master)](https://github.com/PennyLaneAI/plugin-test-matrix/actions?query=workflow%3Aquantuminspire-latest-latest) | *Notes:* @@ -41,7 +41,7 @@ All entries in the matrix are tested against PennyLane latest (GitHub master). ## QML repo | | Status | -|:------------------------------------------------------------------------------------------------------------------|:---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| +| :---------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | [`build-branch-dev`](https://github.com/PennyLaneAI/qml/blob/master/.github/workflows/build-branch-dev.yml) | [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/PennyLaneAI/qml/build-branch-dev.yml)](https://github.com/PennyLaneAI/qml/actions/workflows/build-branch-dev.yml) | | [`build-branch-master`](https://github.com/PennyLaneAI/qml/blob/master/.github/workflows/build-branch-master.yml) | [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/PennyLaneAI/qml/build-branch-master.yml)](https://github.com/PennyLaneAI/qml/actions/workflows/build-branch-master.yml) | @@ -112,7 +112,7 @@ The following table shows the current Catalyst compatibility with the Lightning All entries in the matrix are tested against the PennyLane release candidate branch (GitHub `v0.31.0-rc0` branch). | | Latest plugin/ release candidate PennyLane | -|:----------------------------------------------------------------------------|:------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| +| :-------------------------------------------------------------------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | [Qiskit](https://github.com/PennyLaneAI/pennylane-qiskit) | [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/PennyLaneAI/plugin-test-matrix/qiskit-latest-rc.yml?branch=master)](https://github.com/PennyLaneAI/plugin-test-matrix/actions?query=workflow%3Aqiskit-latest-rc) | | [Cirq](https://github.com/PennyLaneAI/pennylane-cirq) | [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/PennyLaneAI/plugin-test-matrix/cirq-latest-rc.yml?branch=master)](https://github.com/PennyLaneAI/plugin-test-matrix/actions?query=workflow%3Acirq-latest-rc) | | [Qulacs](https://github.com/PennyLaneAI/pennylane-qulacs) | [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/PennyLaneAI/plugin-test-matrix/qulacs-latest-rc.yml?branch=master)](https://github.com/PennyLaneAI/plugin-test-matrix/actions?query=workflow%3Aqulacs-latest-rc) | diff --git a/compile.py b/compile.py index b59d9bb..a9304b8 100644 --- a/compile.py +++ b/compile.py @@ -93,23 +93,6 @@ "device_tests": [], "token": "IBMQX_TOKEN", }, - { - "plugin": "lightning", - "gh_user": "PennyLaneAI", - "which": ["stable", "latest"], - "requirements": ["pybind11"], - "device_tests": [ - "--device lightning.qubit --shots=None --skip-ops", - "--device lightning.qubit --skip-ops --shots=20000", - ], - "additional_setup": dedent(""" - - name: Install buildtools & compilers - run: | - sudo apt-get update && sudo apt-get -y -q install cmake gcc-${{ env.GCC_VERSION }} g++-${{ env.GCC_VERSION }} ninja-build""" - ), - "additional_env_vars": "GCC_VERSION: 11", - "runs_on": "ubuntu-22.04", - }, { "plugin": "orquestra", "gh_user": "PennyLaneAI",