You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
llama.cpp is now built with ROCm 7.14 on Windows. If you are a long time llama.cpp user, you will find that some of DLLs (hipblas.dll, rocblas.dll, rocsolver.dll) are not bundled with llama.cpp anymore. This is due to the migration to multiarch ROCm package. Attached is an installation guide with instructions on where you can get those missing DLLs. Please let me know about any comments or questions.
llama.cpp on Windows with AMD ROCm (HIP) — Installation Guide
Target hardware: AMD Ryzen AI / Radeon iGPU or dGPU (gfx1150 / gfx1151 and compatible) Target OS: Windows 11
Step 1: Install AMD Adrenalin Driver
ROCm 7.14 requires Adrenalin driver 26.6.4 or newer.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
llama.cpp is now built with ROCm 7.14 on Windows. If you are a long time llama.cpp user, you will find that some of DLLs (
hipblas.dll,rocblas.dll,rocsolver.dll) are not bundled with llama.cpp anymore. This is due to the migration to multiarch ROCm package. Attached is an installation guide with instructions on where you can get those missing DLLs. Please let me know about any comments or questions.llama.cpp on Windows with AMD ROCm (HIP) — Installation Guide
Target hardware: AMD Ryzen AI / Radeon iGPU or dGPU (gfx1150 / gfx1151 and compatible)
Target OS: Windows 11
Step 1: Install AMD Adrenalin Driver
ROCm 7.14 requires Adrenalin driver 26.6.4 or newer.
https://www.amd.com/en/resources/support-articles/release-notes/RN-RAD-WIN-26-6-4.html#Downloads
Verify the driver installed correctly:
Step 2: Install ROCm (TheRock)
Create the installation directory and download the ROCm archive:
Extract the archive:
Complete the post-installation environment setup by following the Post-installation section of AMD's official guide:
https://rocm.docs.amd.com/en/latest/install/rocm.html?fam=ryzen&w=compute&os=windows&windows-ver=11&i=tar&gpu=ai-9-pro-465&gfx=gfx1150
Step 3: Download llama.cpp (ROCm 7.14 build)
Find the latest release tag and ROCm asset:
Download and extract (replace
b10423with the tag returned above):Confirm the ROCm backend is present:
Step 4: Download a Model
Models must be in GGUF format. For a first test, a 4B Q4_K_M model is recommended — it fits comfortably in shared RAM and runs well on iGPUs.
Example — Qwen3.5-4B Q4_K_M (2.54 GB):
Step 5: Verify GPU Acceleration
Run the benchmark tool to confirm the ROCm backend loads and the GPU is being used:
Expected output:
If the backend column shows CPU instead of ROCm, the
C:\TheRock\build\bindirectory is not on PATH — repeat Step 2 item 3 and reopen PowerShell.Step 6: Run Interactive Chat
-ngl 99offloads all model layers to the GPU. Reduce this number if you run out of memory.Troubleshooting
hipblas.dllnot foundggml-hip.dllnot found on launchwin-rocm-7.14-x64zip, not the Vulkan zip-nglvalue or use a smaller/more quantized modelllama-cpp-rocm-windows-install.md
All reactions