From d2c9edf7bd66ed40997617c4d8a546186755d4ac Mon Sep 17 00:00:00 2001 From: Trevor Gamblin Date: Wed, 19 Aug 2026 16:35:55 -0400 Subject: [PATCH] workflows: build-torch: fix 'git apply' path for torch Signed-off-by: Trevor Gamblin --- .github/workflows/build-torch.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-torch.yml b/.github/workflows/build-torch.yml index eec411b3..9c436f5e 100644 --- a/.github/workflows/build-torch.yml +++ b/.github/workflows/build-torch.yml @@ -146,9 +146,9 @@ jobs: - name: Patch pytorch source working-directory: pytorch run: | - git apply ../python-wheels/patches/torch/${{ env.TORCH_VERSION }}/0001-CI-Add-manywheel-Dockerfile-for-riscv64.patch - git apply ../python-wheels/patches/torch/${{ env.TORCH_VERSION }}/0002-CI-Add-cpu-riscv64-support-to-manywheel-scripts.patch - git apply ../python-wheels/patches/torch/${{ env.TORCH_VERSION }}/0003-CI-Add-native-build-image-for-linux-riscv64.patch + git apply ../python-wheels/patches/torch/${{ env.TORCH_VERSION }}+cpu/0001-CI-Add-manywheel-Dockerfile-for-riscv64.patch + git apply ../python-wheels/patches/torch/${{ env.TORCH_VERSION }}+cpu/0002-CI-Add-cpu-riscv64-support-to-manywheel-scripts.patch + git apply ../python-wheels/patches/torch/${{ env.TORCH_VERSION }}+cpu/0003-CI-Add-native-build-image-for-linux-riscv64.patch - name: Populate binary env working-directory: pytorch