Skip to content

Commit 0c7cb96

Browse files
committed
correct precision choosing bug for manual trigger
1 parent 73416a7 commit 0c7cb96

File tree

2 files changed

+6
-8
lines changed

2 files changed

+6
-8
lines changed

.github/workflows/at2_gcc-cuda.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,9 @@ jobs:
4545
prec: ${{ inputs.precision || 'ALL' }}
4646
run: |
4747
case ${{ env.prec }} in
48-
"Debug")
48+
"single")
4949
echo 'precision=["single"]' >> "$GITHUB_OUTPUT" ;;
50-
"Release")
50+
"double")
5151
echo 'precision=["double"]' >> "$GITHUB_OUTPUT" ;;
5252
"ALL")
5353
echo 'precision=["single", "double"]' >> "$GITHUB_OUTPUT" ;;
@@ -56,8 +56,7 @@ jobs:
5656
esac
5757
gcc-cuda:
5858
runs-on: [self-hosted, m4xci-snl-cuda, cuda, gcc]
59-
# will run other tests in the matrix even if one fails
60-
# NOTE: prioritizes extra info over speed, so consider whether this makes sense
59+
# will not run other tests in the matrix if one fails
6160
continue-on-error: false
6261
needs: define_matrix
6362
# A build matrix storing all desired configurations.

.github/workflows/at2_gcc-hip.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,9 @@ jobs:
4545
prec: ${{ inputs.precision || 'ALL' }}
4646
run: |
4747
case ${{ env.prec }} in
48-
"Debug")
48+
"single")
4949
echo 'precision=["single"]' >> "$GITHUB_OUTPUT" ;;
50-
"Release")
50+
"double")
5151
echo 'precision=["double"]' >> "$GITHUB_OUTPUT" ;;
5252
"ALL")
5353
echo 'precision=["single", "double"]' >> "$GITHUB_OUTPUT" ;;
@@ -56,8 +56,7 @@ jobs:
5656
esac
5757
gcc-cuda:
5858
runs-on: [self-hosted, m4xci-snl-hip, hip, gcc]
59-
# will run other tests in the matrix even if one fails
60-
# NOTE: prioritizes extra info over speed, so consider whether this makes sense
59+
# will not run other tests in the matrix if one fails
6160
continue-on-error: false
6261
needs: define_matrix
6362
# A build matrix storing all desired configurations.

0 commit comments

Comments
 (0)