From 44b4ab302ba55f912a9c13ebc3b1b9bdf32b9f56 Mon Sep 17 00:00:00 2001 From: Anatoly Myachev Date: Fri, 24 Oct 2025 13:29:05 +0200 Subject: [PATCH 1/2] Fix Proton tests when PyTorch is installed with 'pytorch_mode==wheels' Signed-off-by: Anatoly Myachev --- .github/workflows/build-test-reusable.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/build-test-reusable.yml b/.github/workflows/build-test-reusable.yml index 85cf937364..17228e8ec1 100644 --- a/.github/workflows/build-test-reusable.yml +++ b/.github/workflows/build-test-reusable.yml @@ -283,6 +283,8 @@ jobs: - name: Build PTI && Run Proton tests if: matrix.suite == 'rest' run: | + # `intel-pti` can be installed in "Setup PyTorch" step with `pytorch_mode==wheels` + pip uninstall intel-pti PTI_COMMIT_ID="$(<.github/pins/pti.txt)" git clone https://github.com/intel/pti-gpu.git cd pti-gpu From ab8170afd040444b07a3e29757ca4aacfb6687c3 Mon Sep 17 00:00:00 2001 From: Anatoly Myachev Date: Fri, 24 Oct 2025 15:27:31 +0200 Subject: [PATCH 2/2] Apply suggestion from @anmyachev --- .github/workflows/build-test-reusable.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-test-reusable.yml b/.github/workflows/build-test-reusable.yml index 17228e8ec1..8ef0f9a78f 100644 --- a/.github/workflows/build-test-reusable.yml +++ b/.github/workflows/build-test-reusable.yml @@ -284,7 +284,7 @@ jobs: if: matrix.suite == 'rest' run: | # `intel-pti` can be installed in "Setup PyTorch" step with `pytorch_mode==wheels` - pip uninstall intel-pti + pip uninstall intel-pti -y PTI_COMMIT_ID="$(<.github/pins/pti.txt)" git clone https://github.com/intel/pti-gpu.git cd pti-gpu