Commit f1b7e5f5 authored by Jeffrey Morgan's avatar Jeffrey Morgan
Browse files

update overhead to 15%

parent cb534e6a
......@@ -131,9 +131,9 @@ func getCPUMem() (memInfo, error) {
func CheckVRAM() (int64, error) {
gpuInfo := GetGPUInfo()
if gpuInfo.FreeMemory > 0 && (gpuInfo.Library == "cuda" || gpuInfo.Library == "rocm") {
// leave 10% or 400MiB of VRAM free for overhead
overhead := gpuInfo.FreeMemory / 10
minOverhead := 400 * 1024 * 1024
// leave 15% or 400MiB of VRAM free for overhead
overhead := gpuInfo.FreeMemory 3 / 20
minOverhead := int64(400 * 1024 * 1024)
if overhead < minOverhead {
overhead = minOverhead
}
......
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