diff --git a/.github/workflows/e2e-reusable.yml b/.github/workflows/e2e-reusable.yml index 7321495ff5..f39e44416e 100644 --- a/.github/workflows/e2e-reusable.yml +++ b/.github/workflows/e2e-reusable.yml @@ -240,13 +240,13 @@ jobs: # otherwise test all models. if [[ "${{ inputs.only_one_model }}" ]]; then - $GITHUB_WORKSPACE/scripts/inductor_xpu_test.sh ${{ matrix.suite }} ${{ matrix.dtype }} ${{ matrix.mode }} ${{ test_mode }} xpu 0 static 1 0 ${{ inputs.only_one_model }} + $GITHUB_WORKSPACE/scripts/inductor_xpu_test.sh ${{ matrix.suite }} ${{ matrix.dtype }} ${{ matrix.mode }} ${{ inputs.test_mode }} xpu 0 static 1 0 ${{ inputs.only_one_model }} elif [[ "${{ needs.setup.outputs.models }}" == "subset" ]]; then while read model; do - $GITHUB_WORKSPACE/scripts/inductor_xpu_test.sh ${{ matrix.suite }} ${{ matrix.dtype }} ${{ matrix.mode }} ${{ test_mode }} xpu 0 static 1 0 $model + $GITHUB_WORKSPACE/scripts/inductor_xpu_test.sh ${{ matrix.suite }} ${{ matrix.dtype }} ${{ matrix.mode }} ${{ inputs.test_mode }} xpu 0 static 1 0 $model done < $GITHUB_WORKSPACE/.github/models/performance/${{ matrix.suite }}.txt else - $GITHUB_WORKSPACE/scripts/inductor_xpu_test.sh ${{ matrix.suite }} ${{ matrix.dtype }} ${{ matrix.mode }} ${{ test_mode }} xpu 0 static 1 0 + $GITHUB_WORKSPACE/scripts/inductor_xpu_test.sh ${{ matrix.suite }} ${{ matrix.dtype }} ${{ matrix.mode }} ${{ inputs.test_mode }} xpu 0 static 1 0 fi - name: Report environment details