Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
multiphaseCFD committed Jan 7, 2025
1 parent e7b77aa commit a44722b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/wheel_linux_aarch64_cuda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -114,10 +114,10 @@ jobs:
done
cd ..

DEVICENAME=(echo ${{ matrix.pl_backend }} | %{$_ -replace "_","."})
DEVICENAME=`echo ${{ matrix.pl_backend }} | sed "s/_/./g"`
if ${{ matrix.pl_backend == 'lightning_gpu'}}
then
pl-device-test --device=$DEVICENAME --skip-ops -x --tb=short --no-flaky-report
pl-device-test --device=${DEVICENAME} --skip-ops -x --tb=short --no-flaky-report
fi
PL_DEVICE=${DEVICENAME} python -m pytest tests/ -k "not test_native_mcm"

Expand Down

0 comments on commit a44722b

Please sign in to comment.