From 4fcec2ce454bf9f385dbed666ddb022b212677f4 Mon Sep 17 00:00:00 2001 From: mengfeil Date: Thu, 19 Jun 2025 10:30:33 +0800 Subject: [PATCH 1/7] Enable numactl for E2E test to reduce host bound models fluctuation --- .github/actions/inductor-xpu-e2e-test/action.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/actions/inductor-xpu-e2e-test/action.yml b/.github/actions/inductor-xpu-e2e-test/action.yml index a1c457aa6..14f8ae963 100644 --- a/.github/actions/inductor-xpu-e2e-test/action.yml +++ b/.github/actions/inductor-xpu-e2e-test/action.yml @@ -113,6 +113,9 @@ runs: } } set -xe + xpu_list=($(xpu-smi discovery |grep 'DRM Device: /dev/' |sed 's/.*card//;s/[^0-9].*//' |awk '{if($1==0){print $1":"NR - 1}else{print $1 - 1":"NR - 1}}')) + cores_per_instance="$(lscpu |grep -E 'Core\(s\) per socket:|Socket\(s\):' |awk -v i="${#xpu_list[*]}" 'BEGIN{sum=1}{sum*=$NF}END{print sum/i}')" + export OMP_NUM_THREADS=${cores_per_instance} for suite in $(echo ${{ inputs.suite }} |sed 's/,/ /g') do if [ "${suite}" == "pt2e" ];then @@ -133,15 +136,15 @@ runs: contains "accuracy,performance" $scenario $contains_status if [ "${MODEL_ONLY_NAME}" == "" ];then - xpu_list=($(xpu-smi discovery |grep 'DRM Device: /dev/' |sed 's/.*card//;s/[^0-9].*//' |awk '{if($1==0){print $1":"NR - 1}else{print $1 - 1":"NR - 1}}')) for xpu_id in ${xpu_list[*]} do - bash inductor_xpu_test.sh ${suite} ${dt} ${mode} ${scenario} xpu ${xpu_id/:*} static ${#xpu_list[*]} ${xpu_id/*:} & + cpu_list="$(echo "${cores_per_instance} ${xpu_id/*:}" |awk '{printf("%d-%d", $1*$2, $1*$2+$1-1)}')" + numactl --localalloc --physcpubind=${cpu_list} bash inductor_xpu_test.sh ${suite} ${dt} ${mode} ${scenario} xpu ${xpu_id/:*} static ${#xpu_list[*]} ${xpu_id/*:} & done else for test_model in $(echo ${MODEL_ONLY_NAME} |sed 's/,/ /g') do - bash inductor_xpu_test.sh ${suite} ${dt} ${mode} ${scenario} xpu 0 static 1 0 ${test_model} + numactl --localalloc bash inductor_xpu_test.sh ${suite} ${dt} ${mode} ${scenario} xpu 0 static 1 0 ${test_model} done fi wait From c18dde4201125d38ee39e981811a7c8bb488bdeb Mon Sep 17 00:00:00 2001 From: mengfeil Date: Thu, 19 Jun 2025 15:07:41 +0800 Subject: [PATCH 2/7] update triton installation --- .github/workflows/_linux_ut.yml | 32 +++++++++++++++---- .github/workflows/nightly_ondemand.yml | 17 +++++++--- .../workflows/nightly_ondemand_rolling.yml | 17 +++++++--- .github/workflows/pull.yml | 18 ++++++++--- 4 files changed, 66 insertions(+), 18 deletions(-) diff --git a/.github/workflows/_linux_ut.yml b/.github/workflows/_linux_ut.yml index 81f849e6f..cddd29067 100644 --- a/.github/workflows/_linux_ut.yml +++ b/.github/workflows/_linux_ut.yml @@ -86,15 +86,25 @@ jobs: run: | source activate xpu_op_${ZE_AFFINITY_MASK} cd ../pytorch - TRITON_REPO="https://github.com/intel/intel-xpu-backend-for-triton" if [ -z ${{ inputs.triton }} ]; then TRITON_COMMIT_ID="$(<.ci/docker/ci_commit_pins/triton-xpu.txt)" else TRITON_COMMIT_ID="${{ inputs.triton }}" fi - echo ${TRITON_REPO}@${TRITON_COMMIT_ID} if [ "${{ inputs.pytorch }}" != "nightly_wheel" ]; then - pip install --force-reinstall "git+${TRITON_REPO}@${TRITON_COMMIT_ID}#subdirectory=python" + cd ../ + rm -rf intel-xpu-backend-for-triton + git clone https://github.com/intel/intel-xpu-backend-for-triton intel-xpu-backend-for-triton + cd intel-xpu-backend-for-triton + git checkout ${TRITON_COMMIT_ID} + if [ -e setup.py ];then + python setup.py install + else + cd python + python setup.py install + cd .. + fi + cd ../ && rm -rf intel-xpu-backend-for-triton fi - name: Download Pytorch wheel if: ${{ inputs.pytorch != 'nightly_wheel' }} @@ -413,15 +423,25 @@ jobs: run: | source activate xpu_op_${ZE_AFFINITY_MASK} cd ../pytorch - TRITON_REPO="https://github.com/intel/intel-xpu-backend-for-triton" if [ -z ${{ inputs.triton }} ]; then TRITON_COMMIT_ID="$(<.ci/docker/ci_commit_pins/triton-xpu.txt)" else TRITON_COMMIT_ID="${{ inputs.triton }}" fi - echo ${TRITON_REPO}@${TRITON_COMMIT_ID} if [ "${{ inputs.pytorch }}" != "nightly_wheel" ]; then - pip install --force-reinstall "git+${TRITON_REPO}@${TRITON_COMMIT_ID}#subdirectory=python" + cd ../ + rm -rf intel-xpu-backend-for-triton + git clone https://github.com/intel/intel-xpu-backend-for-triton intel-xpu-backend-for-triton + cd intel-xpu-backend-for-triton + git checkout ${TRITON_COMMIT_ID} + if [ -e setup.py ];then + python setup.py install + else + cd python + python setup.py install + cd .. + fi + cd ../ && rm -rf intel-xpu-backend-for-triton fi - name: Download Pytorch wheel if: ${{ inputs.pytorch != 'nightly_wheel' }} diff --git a/.github/workflows/nightly_ondemand.yml b/.github/workflows/nightly_ondemand.yml index ed50f9371..5ee6423b2 100644 --- a/.github/workflows/nightly_ondemand.yml +++ b/.github/workflows/nightly_ondemand.yml @@ -172,10 +172,19 @@ jobs: - name: Triton Installation run: | source activate e2e_ci - cd ../pytorch - TRITON_REPO="https://github.com/intel/intel-xpu-backend-for-triton" - echo ${TRITON_REPO}@${TRITON_COMMIT_ID} - pip install --force-reinstall "git+${TRITON_REPO}@${TRITON_COMMIT_ID}#subdirectory=python" + cd ../ + rm -rf intel-xpu-backend-for-triton + git clone https://github.com/intel/intel-xpu-backend-for-triton intel-xpu-backend-for-triton + cd intel-xpu-backend-for-triton + git checkout ${TRITON_COMMIT_ID} + if [ -e setup.py ];then + python setup.py install + else + cd python + python setup.py install + cd .. + fi + cd ../ && rm -rf intel-xpu-backend-for-triton - name: Download Pytorch wheel if: ${{ inputs.pytorch != 'nightly_wheel' }} uses: actions/download-artifact@v4 diff --git a/.github/workflows/nightly_ondemand_rolling.yml b/.github/workflows/nightly_ondemand_rolling.yml index 9cc0f73ec..3b1b69431 100644 --- a/.github/workflows/nightly_ondemand_rolling.yml +++ b/.github/workflows/nightly_ondemand_rolling.yml @@ -188,10 +188,19 @@ jobs: - name: Triton Installation run: | source activate e2e_ci - cd ../pytorch - TRITON_REPO="https://github.com/intel/intel-xpu-backend-for-triton" - echo ${TRITON_REPO}@${TRITON_COMMIT_ID} - pip install --force-reinstall "git+${TRITON_REPO}@${TRITON_COMMIT_ID}#subdirectory=python" + cd ../ + rm -rf intel-xpu-backend-for-triton + git clone https://github.com/intel/intel-xpu-backend-for-triton intel-xpu-backend-for-triton + cd intel-xpu-backend-for-triton + git checkout ${TRITON_COMMIT_ID} + if [ -e setup.py ];then + python setup.py install + else + cd python + python setup.py install + cd .. + fi + cd ../ && rm -rf intel-xpu-backend-for-triton - name: Download Pytorch wheel if: ${{ inputs.pytorch != 'nightly_wheel' }} uses: actions/download-artifact@v4 diff --git a/.github/workflows/pull.yml b/.github/workflows/pull.yml index ecbb8dbc2..a1e9dee66 100644 --- a/.github/workflows/pull.yml +++ b/.github/workflows/pull.yml @@ -150,10 +150,20 @@ jobs: run: | source activate e2e_ci cd ../pytorch - TRITON_REPO="https://github.com/intel/intel-xpu-backend-for-triton" - TRITON_PINNED_COMMIT=$(cat .ci/docker/ci_commit_pins/triton-xpu.txt) - echo ${TRITON_REPO}@${TRITON_PINNED_COMMIT} - pip install --force-reinstall "git+${TRITON_REPO}@${TRITON_PINNED_COMMIT}#subdirectory=python" + TRITON_COMMIT_ID=$(cat .ci/docker/ci_commit_pins/triton-xpu.txt) + cd ../ + rm -rf intel-xpu-backend-for-triton + git clone https://github.com/intel/intel-xpu-backend-for-triton intel-xpu-backend-for-triton + cd intel-xpu-backend-for-triton + git checkout ${TRITON_COMMIT_ID} + if [ -e setup.py ];then + python setup.py install + else + cd python + python setup.py install + cd .. + fi + cd ../ && rm -rf intel-xpu-backend-for-triton - name: Identify pinned versions run: | cd ../pytorch From 2d583c1e9a9d13d76413f32d2da36ed914e7bde7 Mon Sep 17 00:00:00 2001 From: mengfeil Date: Thu, 19 Jun 2025 15:08:39 +0800 Subject: [PATCH 3/7] remove update_lkg' --- .github/workflows/_linux_build.yml | 5 ----- .github/workflows/nightly_ondemand.yml | 1 - .github/workflows/nightly_ondemand_rolling.yml | 1 - 3 files changed, 7 deletions(-) diff --git a/.github/workflows/_linux_build.yml b/.github/workflows/_linux_build.yml index 3749e7992..fe73a98fd 100644 --- a/.github/workflows/_linux_build.yml +++ b/.github/workflows/_linux_build.yml @@ -28,11 +28,6 @@ on: type: string default: 'linux.idc.xpu' description: Runner label - update_lkg: - required: false - type: string - default: 'false' - description: Whether update LKG torch version to issue #1280 outputs: torch_commit_id: description: The commit id of the torch build diff --git a/.github/workflows/nightly_ondemand.yml b/.github/workflows/nightly_ondemand.yml index 5ee6423b2..43e63b35f 100644 --- a/.github/workflows/nightly_ondemand.yml +++ b/.github/workflows/nightly_ondemand.yml @@ -74,7 +74,6 @@ jobs: keep_torch_xpu_ops: ${{ github.event_name == 'schedule' && 'false' || inputs.keep_torch_xpu_ops }} python: ${{ github.event_name == 'schedule' && '3.10' || inputs.python }} runner: pvc_e2e - update_lkg: 'true' Linux-Nightly-Ondemand-UT-Tests: if: ${{ github.event_name == 'schedule' || inputs.ut != '' }} diff --git a/.github/workflows/nightly_ondemand_rolling.yml b/.github/workflows/nightly_ondemand_rolling.yml index 3b1b69431..b9c8ffc58 100644 --- a/.github/workflows/nightly_ondemand_rolling.yml +++ b/.github/workflows/nightly_ondemand_rolling.yml @@ -75,7 +75,6 @@ jobs: python: ${{ github.event_name == 'schedule' && '3.10' || inputs.python }} driver: rolling runner: pvc_rolling - update_lkg: 'true' Linux-Nightly-Ondemand-UT-Tests-Rolling: if: ${{ github.event_name == 'schedule' || inputs.ut != '' }} From 25834fd968987edf413ba9b8ed8e273cb51ddce6 Mon Sep 17 00:00:00 2001 From: mengfeil Date: Thu, 19 Jun 2025 19:35:33 +0800 Subject: [PATCH 4/7] triton deps --- .github/workflows/_linux_ut.yml | 2 ++ .github/workflows/nightly_ondemand.yml | 1 + .github/workflows/nightly_ondemand_rolling.yml | 1 + .github/workflows/pull.yml | 1 + 4 files changed, 5 insertions(+) diff --git a/.github/workflows/_linux_ut.yml b/.github/workflows/_linux_ut.yml index cddd29067..5fa5802db 100644 --- a/.github/workflows/_linux_ut.yml +++ b/.github/workflows/_linux_ut.yml @@ -97,6 +97,7 @@ jobs: git clone https://github.com/intel/intel-xpu-backend-for-triton intel-xpu-backend-for-triton cd intel-xpu-backend-for-triton git checkout ${TRITON_COMMIT_ID} + pip install ninja cmake wheel pybind11 if [ -e setup.py ];then python setup.py install else @@ -434,6 +435,7 @@ jobs: git clone https://github.com/intel/intel-xpu-backend-for-triton intel-xpu-backend-for-triton cd intel-xpu-backend-for-triton git checkout ${TRITON_COMMIT_ID} + pip install ninja cmake wheel pybind11 if [ -e setup.py ];then python setup.py install else diff --git a/.github/workflows/nightly_ondemand.yml b/.github/workflows/nightly_ondemand.yml index 43e63b35f..2f44dfeab 100644 --- a/.github/workflows/nightly_ondemand.yml +++ b/.github/workflows/nightly_ondemand.yml @@ -176,6 +176,7 @@ jobs: git clone https://github.com/intel/intel-xpu-backend-for-triton intel-xpu-backend-for-triton cd intel-xpu-backend-for-triton git checkout ${TRITON_COMMIT_ID} + pip install ninja cmake wheel pybind11 if [ -e setup.py ];then python setup.py install else diff --git a/.github/workflows/nightly_ondemand_rolling.yml b/.github/workflows/nightly_ondemand_rolling.yml index b9c8ffc58..b9992afcf 100644 --- a/.github/workflows/nightly_ondemand_rolling.yml +++ b/.github/workflows/nightly_ondemand_rolling.yml @@ -192,6 +192,7 @@ jobs: git clone https://github.com/intel/intel-xpu-backend-for-triton intel-xpu-backend-for-triton cd intel-xpu-backend-for-triton git checkout ${TRITON_COMMIT_ID} + pip install ninja cmake wheel pybind11 if [ -e setup.py ];then python setup.py install else diff --git a/.github/workflows/pull.yml b/.github/workflows/pull.yml index a1e9dee66..8b302caa4 100644 --- a/.github/workflows/pull.yml +++ b/.github/workflows/pull.yml @@ -156,6 +156,7 @@ jobs: git clone https://github.com/intel/intel-xpu-backend-for-triton intel-xpu-backend-for-triton cd intel-xpu-backend-for-triton git checkout ${TRITON_COMMIT_ID} + pip install ninja cmake wheel pybind11 if [ -e setup.py ];then python setup.py install else From 9e12e2f9af3668fbb693ba2fcc5eafa65c119b00 Mon Sep 17 00:00:00 2001 From: mengfeil Date: Fri, 20 Jun 2025 09:43:56 +0800 Subject: [PATCH 5/7] modify --- .github/workflows/_linux_build.yml | 5 +++ .github/workflows/_linux_ut.yml | 34 ++++--------------- .github/workflows/nightly_ondemand.yml | 19 +++-------- .../workflows/nightly_ondemand_rolling.yml | 19 +++-------- .github/workflows/pull.yml | 19 +++-------- 5 files changed, 25 insertions(+), 71 deletions(-) diff --git a/.github/workflows/_linux_build.yml b/.github/workflows/_linux_build.yml index fe73a98fd..3749e7992 100644 --- a/.github/workflows/_linux_build.yml +++ b/.github/workflows/_linux_build.yml @@ -28,6 +28,11 @@ on: type: string default: 'linux.idc.xpu' description: Runner label + update_lkg: + required: false + type: string + default: 'false' + description: Whether update LKG torch version to issue #1280 outputs: torch_commit_id: description: The commit id of the torch build diff --git a/.github/workflows/_linux_ut.yml b/.github/workflows/_linux_ut.yml index 5fa5802db..81f849e6f 100644 --- a/.github/workflows/_linux_ut.yml +++ b/.github/workflows/_linux_ut.yml @@ -86,26 +86,15 @@ jobs: run: | source activate xpu_op_${ZE_AFFINITY_MASK} cd ../pytorch + TRITON_REPO="https://github.com/intel/intel-xpu-backend-for-triton" if [ -z ${{ inputs.triton }} ]; then TRITON_COMMIT_ID="$(<.ci/docker/ci_commit_pins/triton-xpu.txt)" else TRITON_COMMIT_ID="${{ inputs.triton }}" fi + echo ${TRITON_REPO}@${TRITON_COMMIT_ID} if [ "${{ inputs.pytorch }}" != "nightly_wheel" ]; then - cd ../ - rm -rf intel-xpu-backend-for-triton - git clone https://github.com/intel/intel-xpu-backend-for-triton intel-xpu-backend-for-triton - cd intel-xpu-backend-for-triton - git checkout ${TRITON_COMMIT_ID} - pip install ninja cmake wheel pybind11 - if [ -e setup.py ];then - python setup.py install - else - cd python - python setup.py install - cd .. - fi - cd ../ && rm -rf intel-xpu-backend-for-triton + pip install --force-reinstall "git+${TRITON_REPO}@${TRITON_COMMIT_ID}#subdirectory=python" fi - name: Download Pytorch wheel if: ${{ inputs.pytorch != 'nightly_wheel' }} @@ -424,26 +413,15 @@ jobs: run: | source activate xpu_op_${ZE_AFFINITY_MASK} cd ../pytorch + TRITON_REPO="https://github.com/intel/intel-xpu-backend-for-triton" if [ -z ${{ inputs.triton }} ]; then TRITON_COMMIT_ID="$(<.ci/docker/ci_commit_pins/triton-xpu.txt)" else TRITON_COMMIT_ID="${{ inputs.triton }}" fi + echo ${TRITON_REPO}@${TRITON_COMMIT_ID} if [ "${{ inputs.pytorch }}" != "nightly_wheel" ]; then - cd ../ - rm -rf intel-xpu-backend-for-triton - git clone https://github.com/intel/intel-xpu-backend-for-triton intel-xpu-backend-for-triton - cd intel-xpu-backend-for-triton - git checkout ${TRITON_COMMIT_ID} - pip install ninja cmake wheel pybind11 - if [ -e setup.py ];then - python setup.py install - else - cd python - python setup.py install - cd .. - fi - cd ../ && rm -rf intel-xpu-backend-for-triton + pip install --force-reinstall "git+${TRITON_REPO}@${TRITON_COMMIT_ID}#subdirectory=python" fi - name: Download Pytorch wheel if: ${{ inputs.pytorch != 'nightly_wheel' }} diff --git a/.github/workflows/nightly_ondemand.yml b/.github/workflows/nightly_ondemand.yml index 2f44dfeab..ed50f9371 100644 --- a/.github/workflows/nightly_ondemand.yml +++ b/.github/workflows/nightly_ondemand.yml @@ -74,6 +74,7 @@ jobs: keep_torch_xpu_ops: ${{ github.event_name == 'schedule' && 'false' || inputs.keep_torch_xpu_ops }} python: ${{ github.event_name == 'schedule' && '3.10' || inputs.python }} runner: pvc_e2e + update_lkg: 'true' Linux-Nightly-Ondemand-UT-Tests: if: ${{ github.event_name == 'schedule' || inputs.ut != '' }} @@ -171,20 +172,10 @@ jobs: - name: Triton Installation run: | source activate e2e_ci - cd ../ - rm -rf intel-xpu-backend-for-triton - git clone https://github.com/intel/intel-xpu-backend-for-triton intel-xpu-backend-for-triton - cd intel-xpu-backend-for-triton - git checkout ${TRITON_COMMIT_ID} - pip install ninja cmake wheel pybind11 - if [ -e setup.py ];then - python setup.py install - else - cd python - python setup.py install - cd .. - fi - cd ../ && rm -rf intel-xpu-backend-for-triton + cd ../pytorch + TRITON_REPO="https://github.com/intel/intel-xpu-backend-for-triton" + echo ${TRITON_REPO}@${TRITON_COMMIT_ID} + pip install --force-reinstall "git+${TRITON_REPO}@${TRITON_COMMIT_ID}#subdirectory=python" - name: Download Pytorch wheel if: ${{ inputs.pytorch != 'nightly_wheel' }} uses: actions/download-artifact@v4 diff --git a/.github/workflows/nightly_ondemand_rolling.yml b/.github/workflows/nightly_ondemand_rolling.yml index b9992afcf..9cc0f73ec 100644 --- a/.github/workflows/nightly_ondemand_rolling.yml +++ b/.github/workflows/nightly_ondemand_rolling.yml @@ -75,6 +75,7 @@ jobs: python: ${{ github.event_name == 'schedule' && '3.10' || inputs.python }} driver: rolling runner: pvc_rolling + update_lkg: 'true' Linux-Nightly-Ondemand-UT-Tests-Rolling: if: ${{ github.event_name == 'schedule' || inputs.ut != '' }} @@ -187,20 +188,10 @@ jobs: - name: Triton Installation run: | source activate e2e_ci - cd ../ - rm -rf intel-xpu-backend-for-triton - git clone https://github.com/intel/intel-xpu-backend-for-triton intel-xpu-backend-for-triton - cd intel-xpu-backend-for-triton - git checkout ${TRITON_COMMIT_ID} - pip install ninja cmake wheel pybind11 - if [ -e setup.py ];then - python setup.py install - else - cd python - python setup.py install - cd .. - fi - cd ../ && rm -rf intel-xpu-backend-for-triton + cd ../pytorch + TRITON_REPO="https://github.com/intel/intel-xpu-backend-for-triton" + echo ${TRITON_REPO}@${TRITON_COMMIT_ID} + pip install --force-reinstall "git+${TRITON_REPO}@${TRITON_COMMIT_ID}#subdirectory=python" - name: Download Pytorch wheel if: ${{ inputs.pytorch != 'nightly_wheel' }} uses: actions/download-artifact@v4 diff --git a/.github/workflows/pull.yml b/.github/workflows/pull.yml index 8b302caa4..ecbb8dbc2 100644 --- a/.github/workflows/pull.yml +++ b/.github/workflows/pull.yml @@ -150,21 +150,10 @@ jobs: run: | source activate e2e_ci cd ../pytorch - TRITON_COMMIT_ID=$(cat .ci/docker/ci_commit_pins/triton-xpu.txt) - cd ../ - rm -rf intel-xpu-backend-for-triton - git clone https://github.com/intel/intel-xpu-backend-for-triton intel-xpu-backend-for-triton - cd intel-xpu-backend-for-triton - git checkout ${TRITON_COMMIT_ID} - pip install ninja cmake wheel pybind11 - if [ -e setup.py ];then - python setup.py install - else - cd python - python setup.py install - cd .. - fi - cd ../ && rm -rf intel-xpu-backend-for-triton + TRITON_REPO="https://github.com/intel/intel-xpu-backend-for-triton" + TRITON_PINNED_COMMIT=$(cat .ci/docker/ci_commit_pins/triton-xpu.txt) + echo ${TRITON_REPO}@${TRITON_PINNED_COMMIT} + pip install --force-reinstall "git+${TRITON_REPO}@${TRITON_PINNED_COMMIT}#subdirectory=python" - name: Identify pinned versions run: | cd ../pytorch From 5f9f681c3653afb95fdad31dda06543e0be942a7 Mon Sep 17 00:00:00 2001 From: mengfeil Date: Fri, 20 Jun 2025 14:38:25 +0800 Subject: [PATCH 6/7] skip issue --- .github/ci_expected_accuracy/inductor_timm_models_training.csv | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/ci_expected_accuracy/inductor_timm_models_training.csv b/.github/ci_expected_accuracy/inductor_timm_models_training.csv index 86963c968..4c060ee58 100644 --- a/.github/ci_expected_accuracy/inductor_timm_models_training.csv +++ b/.github/ci_expected_accuracy/inductor_timm_models_training.csv @@ -20,7 +20,8 @@ eca_halonext26ts,pass,pass,pass,fail_accuracy,pass ese_vovnet19b_dw,pass,pass,pass,pass,pass fbnetc_100,pass,pass,pass,pass,pass # https://github.com/intel/torch-xpu-ops/issues/1275 -fbnetv3_b,pass,pass,pass,fail_accuracy,pass +# https://github.com/intel/torch-xpu-ops/issues/1765 +fbnetv3_b,pass,fail_accuracy,pass,fail_accuracy,pass gernet_l,pass,pass,pass,pass,pass ghostnet_100,pass,pass,pass,pass,pass gluon_inception_v3,pass,pass,pass,pass,pass From 0d5c5d31667fd308dde3dfaa7d3d0a581de4e428 Mon Sep 17 00:00:00 2001 From: mengfeil Date: Fri, 20 Jun 2025 16:37:56 +0800 Subject: [PATCH 7/7] revert 5f9f681c3653afb95fdad31dda06543e0be942a7 --- .github/ci_expected_accuracy/inductor_timm_models_training.csv | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/ci_expected_accuracy/inductor_timm_models_training.csv b/.github/ci_expected_accuracy/inductor_timm_models_training.csv index 4c060ee58..86963c968 100644 --- a/.github/ci_expected_accuracy/inductor_timm_models_training.csv +++ b/.github/ci_expected_accuracy/inductor_timm_models_training.csv @@ -20,8 +20,7 @@ eca_halonext26ts,pass,pass,pass,fail_accuracy,pass ese_vovnet19b_dw,pass,pass,pass,pass,pass fbnetc_100,pass,pass,pass,pass,pass # https://github.com/intel/torch-xpu-ops/issues/1275 -# https://github.com/intel/torch-xpu-ops/issues/1765 -fbnetv3_b,pass,fail_accuracy,pass,fail_accuracy,pass +fbnetv3_b,pass,pass,pass,fail_accuracy,pass gernet_l,pass,pass,pass,pass,pass ghostnet_100,pass,pass,pass,pass,pass gluon_inception_v3,pass,pass,pass,pass,pass