diff --git a/.github/scripts/apply_torch_pr.py b/.github/scripts/apply_torch_pr.py index d48121ff6..dded27e58 100644 --- a/.github/scripts/apply_torch_pr.py +++ b/.github/scripts/apply_torch_pr.py @@ -10,10 +10,10 @@ parser.add_argument('--pr-list', '-n', nargs='+', default=[ # Fallback to CPU for XPU FP64 - "https://github.com/pytorch/pytorch/pull/126516", + # "https://github.com/pytorch/pytorch/pull/126516", # Modify the tolerance level in TIMM benchmark # "https://github.com/pytorch/pytorch/pull/129735", - "https://github.com/mengfei25/pytorch/pull/21", + # "https://github.com/mengfei25/pytorch/pull/21", ] ) parser.add_argument('--extra-pr-list', '-e', nargs='+',default=[]) diff --git a/.github/workflows/nightly_ondemand.yml b/.github/workflows/nightly_ondemand.yml index 2edc06102..ef01eadae 100644 --- a/.github/workflows/nightly_ondemand.yml +++ b/.github/workflows/nightly_ondemand.yml @@ -67,7 +67,6 @@ concurrency: jobs: Linux-Nightly-Ondemand-UT-Tests: - if: github.event_name == 'schedule' || ${{ inputs.ut_suite }} uses: ./.github/workflows/_linux_ut.yml with: keep_torch_xpu_ops: ${{ github.event_name == 'schedule' && 'false' || inputs.keep_torch_xpu_ops }} @@ -75,10 +74,9 @@ jobs: pytorch: ${{ github.event_name == 'schedule' && 'main' || inputs.pytorch }} python: ${{ github.event_name == 'schedule' && '3.10' || inputs.python }} triton: ${{ github.event_name == 'schedule' && '' || inputs.triton }} - runner: linux.idc.xpu + runner: e2e_internal Linux-Weekly-UT-Tests-ABI-0: - if: github.event_name == 'schedule' && github.event.schedule == '0 16 * * 5' uses: ./.github/workflows/_linux_ut.yml with: abi: 0 @@ -87,13 +85,13 @@ jobs: pytorch: ${{ github.event_name == 'schedule' && 'main' || inputs.pytorch }} python: ${{ github.event_name == 'schedule' && '3.10' || inputs.python }} triton: ${{ github.event_name == 'schedule' && '' || inputs.triton }} - runner: linux.idc.xpu + runner: e2e_internal Linux-Nightly-Ondemand-E2E-Tests: - runs-on: pvc_e2e + runs-on: e2e_internal # Don't run on forked repos if: github.repository_owner == 'intel' - timeout-minutes: 3600 + timeout-minutes: 36000 env: pytorch: ${{ github.event_name == 'schedule' && 'main' || inputs.pytorch }} keep_torch_xpu_ops: ${{ github.event_name == 'schedule' && 'false' || inputs.keep_torch_xpu_ops }} @@ -180,6 +178,7 @@ jobs: run: | source activate e2e_ci source .github/scripts/env.sh + export _GLIBCXX_USE_CXX11_ABI=0 cd ../pytorch pip install -r requirements.txt export CMAKE_PREFIX_PATH=${CMAKE_PREFIX_PATH}:${CONDA_PREFIX:-"$(dirname $(which conda))/../"} diff --git a/.github/workflows/nightly_ondemand_rolling.yml b/.github/workflows/nightly_ondemand_rolling.yml index 0a27b2b50..bf4b35174 100644 --- a/.github/workflows/nightly_ondemand_rolling.yml +++ b/.github/workflows/nightly_ondemand_rolling.yml @@ -67,7 +67,6 @@ concurrency: jobs: Linux-Nightly-Ondemand-UT-Tests-Rolling: - if: github.event_name == 'schedule' || ${{ inputs.ut_suite }} uses: ./.github/workflows/_linux_ut.yml with: keep_torch_xpu_ops: ${{ github.event_name == 'schedule' && 'false' || inputs.keep_torch_xpu_ops }} @@ -78,7 +77,6 @@ jobs: runner: pvc_rolling Linux-Weekly-UT-Tests-ABI-0-Rolling: - if: github.event_name == 'schedule' && github.event.schedule == '30 16 * * 5' uses: ./.github/workflows/_linux_ut.yml with: abi: 0 @@ -93,7 +91,7 @@ jobs: runs-on: pvc_rolling # Don't run on forked repos if: github.repository_owner == 'intel' - timeout-minutes: 3600 + timeout-minutes: 36000 env: pytorch: ${{ github.event_name == 'schedule' && 'main' || inputs.pytorch }} keep_torch_xpu_ops: ${{ github.event_name == 'schedule' && 'false' || inputs.keep_torch_xpu_ops }} @@ -182,6 +180,7 @@ jobs: run: | source activate e2e_ci source .github/scripts/env.sh + export _GLIBCXX_USE_CXX11_ABI=0 cd ../pytorch pip install -r requirements.txt export CMAKE_PREFIX_PATH=${CMAKE_PREFIX_PATH}:${CONDA_PREFIX:-"$(dirname $(which conda))/../"}