mirror of
https://github.com/ggml-org/llama.cpp.git
synced 2025-10-27 08:21:30 +00:00
* refactor sdk caching to minimize storage * use correct action * add myself as owner to /.github/actions/ [no ci]
16 lines
406 B
YAML
16 lines
406 B
YAML
name: "Windows - Setup ROCm"
|
|
description: "Setup ROCm for Windows"
|
|
inputs:
|
|
version:
|
|
description: "ROCm version"
|
|
required: true
|
|
|
|
runs:
|
|
using: "composite"
|
|
steps:
|
|
- name: Setup ROCm
|
|
uses: ./.github/actions/install-exe
|
|
with:
|
|
url: https://download.amd.com/developer/eula/rocm-hub/AMD-Software-PRO-Edition-${{ inputs.version }}-WinSvr2022-For-HIP.exe
|
|
args: -install
|