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

Add testing workflow #1026

Draft
wants to merge 9 commits into
base: master
Choose a base branch
from
29 changes: 29 additions & 0 deletions .github/workflows/test_arm_gpu_runner.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Test ARM GPU runner
on:
pull_request:


concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
test:
runs-on:
- self-hosted
- arm-gpu

steps:
- run: echo "Hello, world!"
- run: |
cat /proc/cpuinfo
lscpu

- run: |
source /etc/profile.d/modules.sh
module use /opt/modules
module load cuda/12.4
echo "${PATH}" >> $GITHUB_PATH
echo "LD_LIBRARY_PATH=${LD_LIBRARY_PATH}" >> $GITHUB_ENV
nvcc --version
nvidia-smi
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.40.0-dev41"
__version__ = "0.40.0-dev42"
Loading