We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent db5aea6 commit 97acc5eCopy full SHA for 97acc5e
.github/workflows/transformer-engine-ci.yml
@@ -125,7 +125,7 @@ jobs:
125
# Dynamically generate job name, log name, and the test script from the matrix
126
env:
127
TEST_NAME: ${{ matrix.framework }} (${{ matrix.gpu_mode }})
128
- LOG_NAME: ${{ lower(matrix.framework) }}_${{ matrix.gpu_mode == 'Single-GPU' && 'sgpu' || 'mgpu' }}
+ LOG_NAME: ${{ toLower(matrix.framework) }}_${{ matrix.gpu_mode == 'Single-GPU' && 'sgpu' || 'mgpu' }}
129
TEST_LEVEL: ${{ github.event.inputs.test_level || (github.ref_name == 'dev' && '3' || '1') }}
130
TEST_SGPU: ${{ contains(matrix.gpu_mode, 'Single-GPU') }}
131
TEST_MGPU: ${{ contains(matrix.gpu_mode, 'Multi-GPU') }}
0 commit comments