|
|
@@ -967,6 +967,7 @@ jobs:
|
|
|
name: llama-bin-win-sycl-x64.zip
|
|
|
|
|
|
windows-latest-cmake-hip:
|
|
|
+ if: ${{ github.event.inputs.create_release != 'true' }}
|
|
|
runs-on: windows-latest
|
|
|
|
|
|
steps:
|
|
|
@@ -994,8 +995,72 @@ jobs:
|
|
|
run: |
|
|
|
$env:HIP_PATH=$(Resolve-Path 'C:\Program Files\AMD\ROCm\*\bin\clang.exe' | split-path | split-path)
|
|
|
$env:CMAKE_PREFIX_PATH="${env:HIP_PATH}"
|
|
|
- cmake -G "Unix Makefiles" -B build -S . -DCMAKE_C_COMPILER="${env:HIP_PATH}\bin\clang.exe" -DCMAKE_CXX_COMPILER="${env:HIP_PATH}\bin\clang++.exe" -DGGML_HIPBLAS=ON
|
|
|
- cmake --build build --config Release
|
|
|
+ cmake -G "Unix Makefiles" -B build -S . -DCMAKE_C_COMPILER="${env:HIP_PATH}\bin\clang.exe" -DCMAKE_CXX_COMPILER="${env:HIP_PATH}\bin\clang++.exe" -DGGML_HIPBLAS=ON -DCMAKE_BUILD_TYPE=Release -DGGML_RPC=ON
|
|
|
+ cmake --build build -j ${env:NUMBER_OF_PROCESSORS}
|
|
|
+
|
|
|
+ windows-latest-cmake-hip-release:
|
|
|
+ if: ${{ ( github.event_name == 'push' && github.ref == 'refs/heads/master' ) || github.event.inputs.create_release == 'true' }}
|
|
|
+ runs-on: windows-latest
|
|
|
+
|
|
|
+ strategy:
|
|
|
+ matrix:
|
|
|
+ gpu_target: [gfx1100, gfx1101, gfx1030]
|
|
|
+
|
|
|
+ steps:
|
|
|
+ - name: Clone
|
|
|
+ id: checkout
|
|
|
+ uses: actions/checkout@v4
|
|
|
+
|
|
|
+ - name: Install
|
|
|
+ id: depends
|
|
|
+ run: |
|
|
|
+ $ErrorActionPreference = "Stop"
|
|
|
+ write-host "Downloading AMD HIP SDK Installer"
|
|
|
+ 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"
|
|
|
+ write-host "Installing AMD HIP SDK"
|
|
|
+ Start-Process "${env:RUNNER_TEMP}\rocm-install.exe" -ArgumentList '-install' -NoNewWindow -Wait
|
|
|
+ write-host "Completed AMD HIP SDK installation"
|
|
|
+
|
|
|
+ - name: Verify ROCm
|
|
|
+ id: verify
|
|
|
+ run: |
|
|
|
+ & 'C:\Program Files\AMD\ROCm\*\bin\clang.exe' --version
|
|
|
+
|
|
|
+ - name: Build
|
|
|
+ id: cmake_build
|
|
|
+ run: |
|
|
|
+ $env:HIP_PATH=$(Resolve-Path 'C:\Program Files\AMD\ROCm\*\bin\clang.exe' | split-path | split-path)
|
|
|
+ $env:CMAKE_PREFIX_PATH="${env:HIP_PATH}"
|
|
|
+ cmake -G "Unix Makefiles" -B build -S . -DCMAKE_C_COMPILER="${env:HIP_PATH}\bin\clang.exe" -DCMAKE_CXX_COMPILER="${env:HIP_PATH}\bin\clang++.exe" -DGGML_HIPBLAS=ON -DCMAKE_BUILD_TYPE=Release -DGPU_TARGETS=${{ matrix.gpu_target }} -DGGML_RPC=ON
|
|
|
+ cmake --build build -j ${env:NUMBER_OF_PROCESSORS}
|
|
|
+ md "build\bin\rocblas\library\"
|
|
|
+ cp "${env:HIP_PATH}\bin\hipblas.dll" "build\bin\"
|
|
|
+ cp "${env:HIP_PATH}\bin\rocblas.dll" "build\bin\"
|
|
|
+ cp "${env:HIP_PATH}\bin\rocblas\library\*" "build\bin\rocblas\library\"
|
|
|
+
|
|
|
+ - name: Determine tag name
|
|
|
+ id: tag
|
|
|
+ shell: bash
|
|
|
+ run: |
|
|
|
+ BUILD_NUMBER="$(git rev-list --count HEAD)"
|
|
|
+ SHORT_HASH="$(git rev-parse --short=7 HEAD)"
|
|
|
+ if [[ "${{ env.BRANCH_NAME }}" == "master" ]]; then
|
|
|
+ echo "name=b${BUILD_NUMBER}" >> $GITHUB_OUTPUT
|
|
|
+ else
|
|
|
+ SAFE_NAME=$(echo "${{ env.BRANCH_NAME }}" | tr '/' '-')
|
|
|
+ echo "name=${SAFE_NAME}-b${BUILD_NUMBER}-${SHORT_HASH}" >> $GITHUB_OUTPUT
|
|
|
+ fi
|
|
|
+
|
|
|
+ - name: Pack artifacts
|
|
|
+ id: pack_artifacts
|
|
|
+ run: |
|
|
|
+ 7z a llama-${{ steps.tag.outputs.name }}-bin-win-hip-x64-${{ matrix.gpu_target }}.zip .\build\bin\*
|
|
|
+
|
|
|
+ - name: Upload artifacts
|
|
|
+ uses: actions/upload-artifact@v4
|
|
|
+ with:
|
|
|
+ path: llama-${{ steps.tag.outputs.name }}-bin-win-hip-x64-${{ matrix.gpu_target }}.zip
|
|
|
+ name: llama-bin-win-hip-x64-${{ matrix.gpu_target }}.zip
|
|
|
|
|
|
ios-xcode-build:
|
|
|
runs-on: macos-latest
|
|
|
@@ -1060,6 +1125,7 @@ jobs:
|
|
|
- macOS-latest-cmake
|
|
|
- windows-latest-cmake
|
|
|
- windows-latest-cmake-cuda
|
|
|
+ - windows-latest-cmake-hip-release
|
|
|
- macOS-latest-cmake-arm64
|
|
|
- macOS-latest-cmake-x64
|
|
|
|