Headless rendering no longer automatically picking up GPUs?

I’m working on some automated benchmarks in which we do headless (i.e. -b) Cycles rendering on a number of different compute nodes. One of the nodes has two GPUs (Tesla K40m’s) with working NVIDIA drivers, CUDA 10.2 installed, etc. The blender 2.82.7 binary I’m using was manually compiled. To check detection of the CUDA devices I have run Blender in a VNC session on the compute node under VirtualGL. There it shows both CUDA devices in the preferences and they are selected for use.

The behaviour I’m seeing is that when rendering headless with blender -y -b file.blend -f 1 the GPUs are not being used, as I see no GPU activity with nvidia-smi on the node while all CPU cores are maxed out. The test scene used is correctly set to use Cycles on the GPU device.

When looking at the output of --debug-cycles I see the CUDA devices are being picked up and enabled:

Blender 2.82 (sub 7)
Read prefs: /home/paulm/.config/blender/2.82/config/userpref.blend
found bundled python: /sw/arch/RedHatEnterpriseServer7/EB_production/2019/software/Blender/2.82-foss-2018b-Python-3.7.5-nvidia/share/blender/2.82/python
I0312 11:43:21.696301 17782 util_debug.cpp:51] Disabling avx2 instruction set.
I0312 11:43:21.696409 17782 blender_python.cpp:184] Debug flags initialized to:
CPU flags:
  AVX2       : False
  AVX        : True
  SSE4.1     : True
  SSE3       : True
  SSE2       : True
  BVH layout : BVH8
  Split      : False
CUDA flags:
  Adaptive Compile : False
OptiX flags:
  CUDA streams : 1
OpenCL flags:
  Device type    : ALL
  Debug          : False
  Memory limit   : 0
Read blend: /home/paulm/reframe/reframe-surfsara/production_tests/applications/blender/src/classroom/classroom.2.82-gpu.blend
Info: Read library:  '/home/paulm/reframe/reframe-surfsara/production_tests/applications/blender/src/classroom/assets/lamps/lamps.blend', '//assets/lamps/lamps.blend', parent '<direct>'
Info: Read library:  '/home/paulm/reframe/reframe-surfsara/production_tests/applications/blender/src/classroom/assets/chairs/chairs.blend', '//assets/chairs/chairs.blend', parent '<direct>'
Info: Read library:  '/home/paulm/reframe/reframe-surfsara/production_tests/applications/blender/src/classroom/assets/coatStand/coatStand.blend', '//assets/coatStand/coatStand.blend', parent '<direct>'
Info: Read library:  '/home/paulm/reframe/reframe-surfsara/production_tests/applications/blender/src/classroom/assets/desks/desks.blend', '//assets/desks/desks.blend', parent '<direct>'
Info: Read library:  '/home/paulm/reframe/reframe-surfsara/production_tests/applications/blender/src/classroom/assets/dustBin/dustBin.blend', '//assets/dustBin/dustBin.blend', parent '<direct>'
Info: Read library:  '/home/paulm/reframe/reframe-surfsara/production_tests/applications/blender/src/classroom/assets/radiator/radiator.blend', '//assets/radiator/radiator.blend', parent '<direct>'
Info: Read library:  '/home/paulm/reframe/reframe-surfsara/production_tests/applications/blender/src/classroom/assets/suitcase/suitcase.blend', '//assets/suitcase/suitcase.blend', parent '<direct>'
Info: Read library:  '/home/paulm/reframe/reframe-surfsara/production_tests/applications/blender/src/classroom/assets/wallClock/wallClock.blend', '//assets/wallClock/wallClock.blend', parent '<direct>'
Info: Read library:  '/home/paulm/reframe/reframe-surfsara/production_tests/applications/blender/src/classroom/assets/wastes/wastes.blend', '//assets/wastes/wastes.blend', parent '<direct>'
Info: Read library:  '/home/paulm/reframe/reframe-surfsara/production_tests/applications/blender/src/classroom/assets/books/books.blend', '//assets/books/books.blend', parent '<direct>'
Info: Read library:  '/home/paulm/reframe/reframe-surfsara/production_tests/applications/blender/src/classroom/assets/officeSupplies/officeSupplies.blend', '//assets/officeSupplies/officeSupplies.blend', parent '<direct>'
I0312 11:43:22.269744 17782 util_debug.cpp:51] Disabling avx2 instruction set.
I0312 11:43:22.272995 17782 device_cuda.cpp:2582] CUEW initialization succeeded
I0312 11:43:22.273051 17782 device_cuda.cpp:2584] Found precompiled kernels
I0312 11:43:22.322508 17782 device_cuda.cpp:2708] Device has compute preemption or is not used for display.
I0312 11:43:22.322548 17782 device_cuda.cpp:2711] Added device "Tesla K40m" with id "CUDA_Tesla K40m_0000:02:00".
I0312 11:43:22.322613 17782 device_cuda.cpp:2708] Device has compute preemption or is not used for display.
I0312 11:43:22.322624 17782 device_cuda.cpp:2711] Added device "Tesla K40m" with id "CUDA_Tesla K40m_0000:82:00".
I0312 11:43:22.323077 17782 util_task.cpp:329] Creating pool of 16 threads.
I0312 11:43:22.323216 17782 util_task.cpp:241] Detected 16 processors in active group.
I0312 11:43:22.323228 17782 util_task.cpp:251] Not setting thread group affinity.
I0312 11:43:22.323711 17782 device_cpu.cpp:126] Will be using default kernels.

The only way I’ve found to get GPU rendering is to manually update the GPU list with a Python expression:

blender -y --python-expr "import bpy; bpy.context.preferences.addons['cycles'].preferences.get_devices()" -b file.blend -f 1

When using the extra Python snippet the GPUs are used for rendering and the CPU cores stay mostly idle, as expected.

So is the get_devices() call really needed these days to get correct detection of GPUs when using headless rendering?

Some more data points:

  • Just checked with the official 2.82 binaries and I’m seeing the same issue
  • The test file used is actually the classroom scene, but then saved from 2.82, not sure if that has any influence here (as I see quite some errors when loading it in 2.82)

Yes, get_devices() is needed. We stopped automatically detecting GPUs on Blender startup because it can crash on some systems with buggy/corrupted OpenCL or CUDA drivers, and we don’t want all of Blender to crash in that case.

Ugh, that’s pretty ugly. Since when was this changed, starting with 2.80?

By the way, when running in GUI mode I assume get_devices() is called automatically at startup? Or are detected devices on a system saved once after setting them up in the preferences?

The devices are detected when going to the system preferences, and then saved.

Two more questions:

  • Am I correct that the preferences are actually only saved when the preferences window is successfully closed? I ran into an issue when running under an older version of VirtualGL where closing a window through the window manager (x icon in the window border) would crash Blender. My preferences file turned out to be last updated on January, 9th while I had been changing render device settings today (running Blender in a VNC session).

  • And I assume that running get_devices() through --python-expr will not update the preferences file?

@PaulMelis get_device() is only for getting the currently available devices, it doesn’t enable them. For an example script that shows how to enable the GPUs or CPUs see “Rendering on command-line with GPU?” and “How to select all non-CPU CUDA or non-CPU OpenCL devices for Cycles rendering”.

Note the examples don’t include OptiX, but it would be the same approach for these devices as well.

1 Like

Blegh, this is all rather convoluted. But thanks for the scripts!

Thanks @brecht and @Robert, came here because of this problem. Updated script did the trick.