Skip to content

Commit

Permalink
correcting minor things in actions
Browse files Browse the repository at this point in the history
  • Loading branch information
llaniewski committed Nov 15, 2022
1 parent 6633263 commit c670bd7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/actions/configure/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ runs:
esac
case "${{ inputs.storage }}" in
half|half-shift|float|float-shift|double) CONFOPT="$CONFOPT --with-storage=${{ inputs.storage }}" ;;
'') ;;
same) ;;
*) echo "Wrong 'storage' input in configure action"; exit -1
esac
case "${{ inputs.rinside }}" in
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/storage_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
matrix:
model: [d2q9]
precision: [float, double]
storage: ['', 'half', 'half-shift', "float", "float-shift", 'double']
storage: ['same', 'half', 'half-shift', "float", "float-shift", 'double']
gpu: [true, false]
exclude:
- gpu: false
Expand All @@ -34,6 +34,7 @@ jobs:
uses: ./.github/actions/configure
with:
gpu: ${{ matrix.gpu }}
cuda_arch: sm_60
paranoid: true
precision: ${{ matrix.precision }}
storage: ${{ matrix.storage }}
Expand Down

0 comments on commit c670bd7

Please sign in to comment.