diff --git a/.github/workflows/inductor-perf-test-nightly-x86-zen.yml b/.github/workflows/inductor-perf-test-nightly-x86-zen.yml index a9a839df61a..a7110b0fd93 100644 --- a/.github/workflows/inductor-perf-test-nightly-x86-zen.yml +++ b/.github/workflows/inductor-perf-test-nightly-x86-zen.yml @@ -43,6 +43,11 @@ on: required: false type: boolean default: false + freezing: + description: Run freezing? + required: false + type: boolean + default: true benchmark_configs: description: The list of configs used the benchmark required: false @@ -102,7 +107,7 @@ jobs: if: github.event.schedule == '0 7 * * *' with: build-environment: linux-jammy-py3.10-gcc11-build - dashboard-tag: training-false-inference-true-default-true-dynamic-true-cppwrapper-true-aotinductor-true + dashboard-tag: training-false-inference-true-default-true-dynamic-true-cppwrapper-true-aotinductor-true-freezing-true docker-image: ${{ needs.inductor-build.outputs.docker-image }} test-matrix: ${{ needs.inductor-build.outputs.test-matrix }} timeout-minutes: 720 @@ -116,10 +121,9 @@ jobs: name: inductor-test uses: ./.github/workflows/_linux-test.yml needs: inductor-build - if: github.event_name == 'workflow_dispatch' with: build-environment: linux-jammy-py3.10-gcc11-build - dashboard-tag: training-${{ inputs.training }}-inference-${{ inputs.inference }}-default-${{ inputs.default }}-dynamic-${{ inputs.dynamic }}-cppwrapper-${{ inputs.cppwrapper }}-aotinductor-${{ inputs.aotinductor }} + dashboard-tag: training-${{ inputs.training || 'false' }}-inference-${{ inputs.inference || 'true' }}-default-${{ inputs.default || 'true' }}-dynamic-${{ inputs.dynamic || 'true' }}-cppwrapper-${{ inputs.cppwrapper || 'true' }}-aotinductor-${{ inputs.aotinductor || 'true' }}-freezing-${{ inputs.freezing || 'true' }} docker-image: ${{ needs.inductor-build.outputs.docker-image }} test-matrix: ${{ needs.inductor-build.outputs.test-matrix }} timeout-minutes: 720