Unverified Commit 8ae8c9fa authored by Noah Gitsham's avatar Noah Gitsham Committed by GitHub
Browse files

Remove duplicate "install" in GPU support warning (#984)

parent f39daff4
...@@ -697,7 +697,7 @@ func Serve(ln net.Listener, allowOrigins []string) error { ...@@ -697,7 +697,7 @@ func Serve(ln net.Listener, allowOrigins []string) error {
if runtime.GOOS == "linux" { if runtime.GOOS == "linux" {
// check compatibility to log warnings // check compatibility to log warnings
if _, err := llm.CheckVRAM(); err != nil { if _, err := llm.CheckVRAM(); err != nil {
log.Printf("Warning: GPU support may not be enabled, check you have installed install GPU drivers: %v", err) log.Printf("Warning: GPU support may not be enabled, check you have installed GPU drivers: %v", err)
} }
} }
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment