File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change 4848 PYTHON_VERSION : " 3.10"
4949 BENCHMARKING_METHOD : ${{ inputs.benchmarking_method || 'PYTORCH_LEGACY_PROFILER_USING_IPEX' }}
5050 USE_IPEX : ${{ github.event_name != 'workflow_dispatch' && '1' || inputs.benchmarking_method == 'PYTORCH_LEGACY_PROFILER_USING_IPEX' && '1' || '0' }}
51- TAG : ${{ inputs.tag || (github.event_name == 'pull_request' && 'pr' ) || (github.event_name == 'schedule' && 'ci') || 'test' }}
51+ TAG : ${{ inputs.tag || (github.event_name == 'pull_request' && format( 'pr-{0}', github.event.number) ) || (github.event_name == 'schedule' && 'ci') || 'test' }}
5252
5353jobs :
5454 build :
6060 run :
6161 shell : bash -noprofile --norc -eo pipefail -c "source /opt/intel/oneapi/setvars.sh > /dev/null; source {0}"
6262 steps :
63+ - name : Print inputs
64+ run : |
65+ cat <<EOF
66+ ${{ toJSON(inputs) }}
67+ EOF
68+
6369 - name : Checkout repository
6470 uses : actions/checkout@v4
6571
You can’t perform that action at this time.
0 commit comments