File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -25,18 +25,18 @@ jobs:
2525 runtime-version : " cu129"
2626 container-options : " --gpus all"
2727 alias : " h100"
28- condition : ${{ github.event.inputs.run_h100 == 'true' }}
2928 - runner : " linux.dgx.b200"
3029 python-version : " 3.12"
3130 image : " nvidia/cuda:12.9.1-devel-ubuntu24.04"
3231 runtime-version : " cu129"
3332 container-options : " --gpus all"
3433 alias : " b200"
35- condition : ${{ github.event.inputs.run_b200 == 'true' }}
3634
3735 name : benchmark-${{ matrix.runtime-version }}-py${{ matrix.python-version }}-${{ matrix.alias }}
3836
39- if : ${{ matrix.condition }}
37+ if : |
38+ (matrix.alias == 'h100' && github.event.inputs.run_h100 == 'true') ||
39+ (matrix.alias == 'b200' && github.event.inputs.run_b200 == 'true')
4040
4141 container :
4242 image : ${{ matrix.image }}
You can’t perform that action at this time.
0 commit comments