@@ -108,7 +108,8 @@ jobs:
108108 -DCMAKE_BUILD_WITH_INSTALL_RPATH=ON \
109109 -DLLAMA_FATAL_WARNINGS=ON \
110110 -DGGML_METAL=OFF \
111- -DGGML_RPC=ON
111+ -DGGML_RPC=ON \
112+ -DCMAKE_OSX_DEPLOYMENT_TARGET=13.3
112113 cmake --build build --config Release -j $(sysctl -n hw.logicalcpu)
113114
114115 - name : Determine tag name
@@ -532,7 +533,7 @@ jobs:
532533 matrix :
533534 include :
534535 - name : " radeon"
535- gpu_targets : " gfx1100;gfx1101;gfx1102;gfx1030;gfx1031;gfx1032"
536+ gpu_targets : " gfx1200;gfx1201;gfx1151; gfx1100;gfx1101;gfx1102;gfx1030;gfx1031;gfx1032"
536537
537538 steps :
538539 - name : Clone
@@ -565,7 +566,7 @@ jobs:
565566 run : |
566567 $ErrorActionPreference = "Stop"
567568 write-host "Downloading AMD HIP SDK Installer"
568- 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"
569+ Invoke-WebRequest -Uri "https://download.amd.com/developer/eula/rocm-hub/AMD-Software-PRO-Edition-25 .Q3-WinSvr2022-For-HIP.exe" -OutFile "${env:RUNNER_TEMP}\rocm-install.exe"
569570 write-host "Installing AMD HIP SDK"
570571 $proc = Start-Process "${env:RUNNER_TEMP}\rocm-install.exe" -ArgumentList '-install' -NoNewWindow -PassThru
571572 $completed = $proc.WaitForExit(600000)
@@ -610,9 +611,12 @@ jobs:
610611 -DLLAMA_CURL=OFF
611612 cmake --build build --target ggml-hip -j ${env:NUMBER_OF_PROCESSORS}
612613 md "build\bin\rocblas\library\"
614+ md "build\bin\hipblaslt\library"
613615 cp "${env:HIP_PATH}\bin\hipblas.dll" "build\bin\"
616+ cp "${env:HIP_PATH}\bin\hipblaslt.dll" "build\bin\"
614617 cp "${env:HIP_PATH}\bin\rocblas.dll" "build\bin\"
615618 cp "${env:HIP_PATH}\bin\rocblas\library\*" "build\bin\rocblas\library\"
619+ cp "${env:HIP_PATH}\bin\hipblaslt\library\*" "build\bin\hipblaslt\library\"
616620
617621 - name : Pack artifacts
618622 id : pack_artifacts
0 commit comments