Browse Source

update overhead to 15%

Jeffrey Morgan 1 year ago
parent
commit
f1b7e5f560
1 changed files with 3 additions and 3 deletions
  1. 3 3
      gpu/gpu.go

+ 3 - 3
gpu/gpu.go

@@ -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
 		}