From f31f2bedf41a8c517d645257333ac5f3041c3d96 Mon Sep 17 00:00:00 2001 From: Michael Yang Date: Thu, 28 Mar 2024 12:05:26 -0700 Subject: [PATCH] Update troubleshooting link --- gpu/amd_linux.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gpu/amd_linux.go b/gpu/amd_linux.go index b83f8a68..27ae679f 100644 --- a/gpu/amd_linux.go +++ b/gpu/amd_linux.go @@ -113,7 +113,7 @@ func AMDGetGPUInfo(resp *GpuInfo) { if !slices.Contains[[]string, string](supported, v.ToGFXString()) { slog.Warn(fmt.Sprintf("amdgpu [%d] %s is not supported by %s %v", i, v.ToGFXString(), libDir, supported)) // TODO - consider discrete markdown just for ROCM troubleshooting? - slog.Warn("See https://github.com/ollama/ollama/blob/main/docs/troubleshooting.md for HSA_OVERRIDE_GFX_VERSION usage") + slog.Warn("See https://github.com/ollama/ollama/blob/main/docs/gpu.md#overrides for HSA_OVERRIDE_GFX_VERSION usage") skip[i] = struct{}{} } else { slog.Info(fmt.Sprintf("amdgpu [%d] %s is supported", i, v.ToGFXString()))