[Bf-blender-cvs] [a92ebab5da3] master: Windows: Add "--debug-cycles" argument to "blender_debug_gpu.bat" batch file

Patrick Mours noreply at git.blender.org
Thu Jan 21 16:47:46 CET 2021


Commit: a92ebab5da3bcbe3ee1b87348e51f6bcb347b881
Author: Patrick Mours
Date:   Thu Jan 21 16:28:02 2021 +0100
Branches: master
https://developer.blender.org/rBa92ebab5da3bcbe3ee1b87348e51f6bcb347b881

Windows: Add "--debug-cycles" argument to "blender_debug_gpu.bat" batch file

This extends the "blender_debug_gpu.bat" batch file to also be useful for triaging Cycles
problems. OptiX initialization errors or problem while iterating CUDA devices are only
logged when the `--debug-cycles` flag is specified, so adding that here.

Reviewed By: brecht, LazyDodo

Differential Revision: https://developer.blender.org/D10167

===================================================================

M	release/windows/batch/blender_debug_gpu.cmd

===================================================================

diff --git a/release/windows/batch/blender_debug_gpu.cmd b/release/windows/batch/blender_debug_gpu.cmd
index 46d126ab621..53d7863ec70 100644
--- a/release/windows/batch/blender_debug_gpu.cmd
+++ b/release/windows/batch/blender_debug_gpu.cmd
@@ -12,5 +12,5 @@ mkdir "%temp%\blender\debug_logs" > NUL 2>&1
 echo.
 echo Starting blender and waiting for it to exit....
 set PYTHONPATH=
-"%~dp0\blender" --debug --debug-gpu --python-expr "import bpy; bpy.ops.wm.sysinfo(filepath=r'%temp%\blender\debug_logs\blender_system_info.txt')" > "%temp%\blender\debug_logs\blender_debug_output.txt" 2>&1 < %0
+"%~dp0\blender" --debug --debug-gpu --debug-cycles --python-expr "import bpy; bpy.ops.wm.sysinfo(filepath=r'%temp%\blender\debug_logs\blender_system_info.txt')" > "%temp%\blender\debug_logs\blender_debug_output.txt" 2>&1 < %0
 explorer "%temp%\blender\debug_logs"
\ No newline at end of file



More information about the Bf-blender-cvs mailing list