Commit 6164f378 authored by Jeffrey Morgan's avatar Jeffrey Morgan
Browse files

revert cuda overhead to 20%

parent f387e963
...@@ -131,9 +131,8 @@ func getCPUMem() (memInfo, error) { ...@@ -131,9 +131,8 @@ func getCPUMem() (memInfo, error) {
func CheckVRAM() (int64, error) { func CheckVRAM() (int64, error) {
gpuInfo := GetGPUInfo() gpuInfo := GetGPUInfo()
if gpuInfo.FreeMemory > 0 && (gpuInfo.Library == "cuda" || gpuInfo.Library == "rocm") { if gpuInfo.FreeMemory > 0 && (gpuInfo.Library == "cuda" || gpuInfo.Library == "rocm") {
// leave 25% of VRAM free for overhead // leave 20% of VRAM free for unaccounted for overhead
// TODO: improve cuda memory allocation to avoid needing this large of an amount return int64(gpuInfo.FreeMemory * 4 / 5), nil
return int64(gpuInfo.FreeMemory * 3 / 4), nil
} }
return 0, fmt.Errorf("no GPU detected") // TODO - better handling of CPU based memory determiniation return 0, fmt.Errorf("no GPU detected") // TODO - better handling of CPU based memory determiniation
......
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