@@ -127,7 +127,8 @@ jobs:
127127 -DCMAKE_BUILD_RPATH="@loader_path" \
128128 -DLLAMA_FATAL_WARNINGS=ON \
129129 -DGGML_METAL=OFF \
130- -DGGML_RPC=ON
130+ -DGGML_RPC=ON \
131+ -DCMAKE_OSX_DEPLOYMENT_TARGET=13.3
131132 cmake --build build --config Release -j $(sysctl -n hw.logicalcpu)
132133
133134 - name : Test
@@ -1051,9 +1052,13 @@ jobs:
10511052 run : examples/sycl/win-build-sycl.bat
10521053
10531054 windows-latest-cmake-hip :
1054- if : ${{ github.event.inputs.create_release != 'true' }}
10551055 runs-on : windows-2022
10561056
1057+ env :
1058+ # The ROCm version must correspond to the version used in the HIP SDK.
1059+ ROCM_VERSION : " 6.4.2"
1060+ HIPSDK_INSTALLER_VERSION : " 25.Q3"
1061+
10571062 steps :
10581063 - name : Clone
10591064 id : checkout
@@ -1062,24 +1067,22 @@ jobs:
10621067 - name : Clone rocWMMA repository
10631068 id : clone_rocwmma
10641069 run : |
1065- git clone https://github.com/rocm/rocwmma --branch rocm-6.2.4 --depth 1
1070+ git clone https://github.com/rocm/rocwmma --branch rocm-${{ env.ROCM_VERSION }} --depth 1
10661071
10671072 - name : Cache ROCm Installation
10681073 id : cache-rocm
10691074 uses : actions/cache@v4
10701075 with :
10711076 path : C:\Program Files\AMD\ROCm
1072- key : rocm-6.1-${{ runner.os }}-v1
1073- restore-keys : |
1074- rocm-6.1-${{ runner.os }}-
1077+ key : rocm-${{ env.HIPSDK_INSTALLER_VERSION }}-${{ runner.os }}
10751078
10761079 - name : Install ROCm
10771080 if : steps.cache-rocm.outputs.cache-hit != 'true'
10781081 id : depends
10791082 run : |
10801083 $ErrorActionPreference = "Stop"
10811084 write-host "Downloading AMD HIP SDK Installer"
1082- Invoke-WebRequest -Uri "https://download.amd.com/developer/eula/rocm-hub/AMD-Software-PRO-Edition-24.Q3 -WinSvr2022-For-HIP.exe" -OutFile "${env:RUNNER_TEMP}\rocm-install.exe"
1085+ Invoke-WebRequest -Uri "https://download.amd.com/developer/eula/rocm-hub/AMD-Software-PRO-Edition-${{ env.HIPSDK_INSTALLER_VERSION }} -WinSvr2022-For-HIP.exe" -OutFile "${env:RUNNER_TEMP}\rocm-install.exe"
10831086 write-host "Installing AMD HIP SDK"
10841087 $proc = Start-Process "${env:RUNNER_TEMP}\rocm-install.exe" -ArgumentList '-install' -NoNewWindow -PassThru
10851088 $completed = $proc.WaitForExit(600000)
0 commit comments