File tree Expand file tree Collapse file tree 1 file changed +8
-5
lines changed Expand file tree Collapse file tree 1 file changed +8
-5
lines changed Original file line number Diff line number Diff line change @@ -529,6 +529,11 @@ jobs:
529529 windows-hip :
530530 runs-on : windows-2022
531531
532+ env :
533+ # The ROCm version must correspond to the version used in the HIP SDK.
534+ ROCM_VERSION : " 6.4.2"
535+ HIPSDK_INSTALLER_VERSION : " 25.Q3"
536+
532537 strategy :
533538 matrix :
534539 include :
@@ -543,21 +548,19 @@ jobs:
543548 - name : Clone rocWMMA repository
544549 id : clone_rocwmma
545550 run : |
546- git clone https://github.com/rocm/rocwmma --branch rocm-6.2.4 --depth 1
551+ git clone https://github.com/rocm/rocwmma --branch rocm-${{ env.ROCM_VERSION }} --depth 1
547552
548553 - name : Cache ROCm Installation
549554 id : cache-rocm
550555 uses : actions/cache@v4
551556 with :
552557 path : C:\Program Files\AMD\ROCm
553- key : rocm-6.1-${{ runner.os }}-v1
554- restore-keys : |
555- rocm-6.1-${{ runner.os }}-
558+ key : rocm-${{ env.HIPSDK_INSTALLER_VERSION }}-${{ runner.os }}
556559
557560 - name : ccache
558561559562 with :
560- key : windows-latest-cmake-hip-${{ matrix.name }}-x64
563+ key : windows-latest-cmake-hip-${{ env.HIPSDK_INSTALLER_VERSION }}-${{ matrix.name }}-x64
561564 evict-old-files : 1d
562565
563566 - name : Install ROCm
You can’t perform that action at this time.
0 commit comments