Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update plugin test matrix GPU workflow names #918

Merged
merged 9 commits into from
Sep 20, 2024
3 changes: 3 additions & 0 deletions .github/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,9 @@

### Improvements

* Update plugin test matrix GPU workflow names.
[(#918)](https://github.com/PennyLaneAI/pennylane-lightning/pull/918)

AmintorDusko marked this conversation as resolved.
Show resolved Hide resolved
* Add the `ci:use-gpu-runner` GitHub label to `lightning.kokkos` GPU Testing CIs.
[(#916)](https://github.com/PennyLaneAI/pennylane-lightning/pull/916)

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/compat-check-latest-latest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ on:
workflow_dispatch:

jobs:
tests_lgpu_python:
name: Lightning Compatibility test (tests_lgpu_python) - latest/latest
uses: ./.github/workflows/tests_lgpu_python.yml
tests_gpu_python:
name: Lightning Compatibility test (tests_gpu_python) - latest/latest
uses: ./.github/workflows/tests_gpu_python.yml
with:
lightning-version: latest
pennylane-version: latest
Expand Down
7 changes: 3 additions & 4 deletions .github/workflows/compat-check-latest-stable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ on:
workflow_dispatch:

jobs:
tests_lgpu_python:
name: Lightning Compatibility test (tests_lgpu_python) - latest/stable
uses: ./.github/workflows/tests_lgpu_python.yml
tests_gpu_python:
name: Lightning Compatibility test (tests_gpu_python) - latest/stable
uses: ./.github/workflows/tests_gpu_python.yml
with:
lightning-version: latest
pennylane-version: stable
Expand Down Expand Up @@ -48,4 +48,3 @@ jobs:
lightning-version: latest
pennylane-version: stable
secrets: inherit

7 changes: 3 additions & 4 deletions .github/workflows/compat-check-release-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ on:
- cron: "0 5 * * 0-6" # Run daily at 5am UTC everyday

jobs:
tests_lgpu_python:
name: Lightning Compatibility test (tests_lgpu_python) - release/release
uses: ./.github/workflows/tests_lgpu_python.yml
tests_gpu_python:
name: Lightning Compatibility test (tests_gpu_python) - release/release
uses: ./.github/workflows/tests_gpu_python.yml
with:
lightning-version: release
pennylane-version: release
Expand Down Expand Up @@ -48,4 +48,3 @@ jobs:
lightning-version: release
pennylane-version: release
secrets: inherit
AmintorDusko marked this conversation as resolved.
Show resolved Hide resolved

7 changes: 3 additions & 4 deletions .github/workflows/compat-check-stable-latest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ on:
workflow_dispatch:

jobs:
tests_lgpu_python:
name: Lightning Compatibility test (tests_lgpu_python) - stable/latest
uses: ./.github/workflows/tests_lgpu_python.yml
tests_gpu_python:
name: Lightning Compatibility test (tests_gpu_python) - stable/latest
uses: ./.github/workflows/tests_gpu_python.yml
with:
lightning-version: stable
pennylane-version: latest
Expand Down Expand Up @@ -48,4 +48,3 @@ jobs:
lightning-version: stable
pennylane-version: latest
secrets: inherit

7 changes: 3 additions & 4 deletions .github/workflows/compat-check-stable-stable.yml
AmintorDusko marked this conversation as resolved.
Show resolved Hide resolved
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ on:
workflow_dispatch:

jobs:
tests_lgpu_python:
name: Lightning Compatibility test (tests_lgpu_python) - stable/stable
uses: ./.github/workflows/tests_lgpu_python.yml
tests_gpu_python:
name: Lightning Compatibility test (tests_gpu_python) - stable/stable
uses: ./.github/workflows/tests_gpu_python.yml
with:
lightning-version: stable
pennylane-version: stable
Expand Down Expand Up @@ -48,4 +48,3 @@ jobs:
lightning-version: stable
pennylane-version: stable
secrets: inherit
AmintorDusko marked this conversation as resolved.
Show resolved Hide resolved

2 changes: 1 addition & 1 deletion pennylane_lightning/core/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@
Version number (major.minor.patch[-label])
"""

__version__ = "0.39.0-dev29"
__version__ = "0.39.0-dev30"
Loading