From 8256d230a3ae35febb02927e064564f317c5485b Mon Sep 17 00:00:00 2001 From: Raimund58 Date: Wed, 19 Oct 2022 18:11:17 +0000 Subject: [PATCH] Feat: Better detection of out-of-VRAM errors --- src/main/java/com/sheepit/client/Job.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/sheepit/client/Job.java b/src/main/java/com/sheepit/client/Job.java index fe26515..9eb8a42 100644 --- a/src/main/java/com/sheepit/client/Job.java +++ b/src/main/java/com/sheepit/client/Job.java @@ -800,7 +800,7 @@ import java.util.regex.Pattern; // 15-03 21:13:46 (debug) Blender quit return Error.Type.RENDERER_OUT_OF_VIDEO_MEMORY; } - else if (line.contains("Error: System is out of GPU memory") || line.contains("Error: System is out of GPU and shared host memory") || line.contains("Error: Illegal address in CUDA") || line.contains("Error: Out of memory in cu")) { + else if (line.contains("Error: System is out of GPU memory") || line.contains("Error: System is out of GPU and shared host memory") || line.contains("Error: Illegal address in CUDA") || line.contains("Error: Out of memory in cu") || line.contains("System is out of GPU and shared host memory")|| line.contains("System is out of GPU memory")) { // 16-03 18:37:37 (debug) Fra:192 Mem:15826.70M (Peak 15831.18M) | Time:02:21.86 | Mem:6622.87M, Peak:6625.35M | Scene, ViewLayer | Loading denoising kernels (may take a few minutes the first time) // 16-03 18:37:37 (debug) System is out of GPU memory // 16-03 18:37:37 (debug) Refer to the Cycles GPU rendering documentation for possible solutions: