@@ -108,7 +108,8 @@ jobs:
108
108
-DCMAKE_BUILD_WITH_INSTALL_RPATH=ON \
109
109
-DLLAMA_FATAL_WARNINGS=ON \
110
110
-DGGML_METAL=OFF \
111
- -DGGML_RPC=ON
111
+ -DGGML_RPC=ON \
112
+ -DCMAKE_OSX_DEPLOYMENT_TARGET=13.3
112
113
cmake --build build --config Release -j $(sysctl -n hw.logicalcpu)
113
114
114
115
- name : Determine tag name
@@ -532,7 +533,7 @@ jobs:
532
533
matrix :
533
534
include :
534
535
- name : " radeon"
535
- gpu_targets : " gfx1100;gfx1101;gfx1102;gfx1030;gfx1031;gfx1032"
536
+ gpu_targets : " gfx1200;gfx1201;gfx1151; gfx1100;gfx1101;gfx1102;gfx1030;gfx1031;gfx1032"
536
537
537
538
steps :
538
539
- name : Clone
@@ -565,7 +566,7 @@ jobs:
565
566
run : |
566
567
$ErrorActionPreference = "Stop"
567
568
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"
569
570
write-host "Installing AMD HIP SDK"
570
571
$proc = Start-Process "${env:RUNNER_TEMP}\rocm-install.exe" -ArgumentList '-install' -NoNewWindow -PassThru
571
572
$completed = $proc.WaitForExit(600000)
@@ -610,9 +611,12 @@ jobs:
610
611
-DLLAMA_CURL=OFF
611
612
cmake --build build --target ggml-hip -j ${env:NUMBER_OF_PROCESSORS}
612
613
md "build\bin\rocblas\library\"
614
+ md "build\bin\hipblaslt\library"
613
615
cp "${env:HIP_PATH}\bin\hipblas.dll" "build\bin\"
616
+ cp "${env:HIP_PATH}\bin\hipblaslt.dll" "build\bin\"
614
617
cp "${env:HIP_PATH}\bin\rocblas.dll" "build\bin\"
615
618
cp "${env:HIP_PATH}\bin\rocblas\library\*" "build\bin\rocblas\library\"
619
+ cp "${env:HIP_PATH}\bin\hipblaslt\library\*" "build\bin\hipblaslt\library\"
616
620
617
621
- name : Pack artifacts
618
622
id : pack_artifacts
0 commit comments