Cycles - Rendering on a Nvidia A100 crashes/fails on Google Colab #91879

Closed
opened 2021-10-01 14:31:17 +02:00 by Raimund Klink · 18 comments
Contributor

System Information
Operating system:

NAME="Ubuntu"
VERSION="18.04.5 LTS (Bionic Beaver)"
ID=ubuntu
ID_LIKE=debian
PRETTY_NAME="Ubuntu 18.04.5 LTS"
VERSION_ID="18.04"

Graphics card: Nvidia A100-SXM4-40GB

+-----------------------------------------------------------------------------+
| NVIDIA-SMI 470.63.01    Driver Version: 460.32.03    CUDA Version: 11.2     |
|-------------------------------+----------------------+----------------------+
| GPU  Name        Persistence-M| Bus-Id        Disp.A | Volatile Uncorr. ECC |
| Fan  Temp  Perf  Pwr:Usage/Cap|         Memory-Usage | GPU-Util  Compute M. |
|                               |                      |               MIG M. |
|===============================+======================+======================|
|   0  A100-SXM4-40GB      Off  | 00000000:00:04.0 Off |                    0 |
| N/A   34C    P0    42W / 400W |      0MiB / 40536MiB |      0%      Default |
|                               |                      |             Disabled |
+-------------------------------+----------------------+----------------------+

Blender Version
Blender 2.93.0-2.93.4, Blender 3.0.0
Worked: Blender 2.92.0

Short description of error
Blender is crashing and aborting the render with Cycles

Exact steps for others to reproduce the error
Open Google Colab
Try to get a A100
Run https://colab.research.google.com/gist/Raimund58/88061f785ea2563d345914d196c15b87/blender_script_for_google_colab_using_the_gpu.ipynb
It will crash

blender.crash_2.93.4.txt
Crashlog_2.93.4.txt
Crashlog_3.0.0.txt

CC @brecht @pmoursnv

**System Information** Operating system: NAME="Ubuntu" VERSION="18.04.5 LTS (Bionic Beaver)" ID=ubuntu ID_LIKE=debian PRETTY_NAME="Ubuntu 18.04.5 LTS" VERSION_ID="18.04" Graphics card: Nvidia A100-SXM4-40GB ``` +-----------------------------------------------------------------------------+ | NVIDIA-SMI 470.63.01 Driver Version: 460.32.03 CUDA Version: 11.2 | |-------------------------------+----------------------+----------------------+ | GPU Name Persistence-M| Bus-Id Disp.A | Volatile Uncorr. ECC | | Fan Temp Perf Pwr:Usage/Cap| Memory-Usage | GPU-Util Compute M. | | | | MIG M. | |===============================+======================+======================| | 0 A100-SXM4-40GB Off | 00000000:00:04.0 Off | 0 | | N/A 34C P0 42W / 400W | 0MiB / 40536MiB | 0% Default | | | | Disabled | +-------------------------------+----------------------+----------------------+ ``` **Blender Version** Blender 2.93.0-2.93.4, Blender 3.0.0 Worked: Blender 2.92.0 **Short description of error** Blender is crashing and aborting the render with Cycles **Exact steps for others to reproduce the error** Open Google Colab Try to get a A100 Run https://colab.research.google.com/gist/Raimund58/88061f785ea2563d345914d196c15b87/blender_script_for_google_colab_using_the_gpu.ipynb It will crash [blender.crash_2.93.4.txt](https://archive.blender.org/developer/F10713054/blender.crash_2.93.4.txt) [Crashlog_2.93.4.txt](https://archive.blender.org/developer/F10713060/Crashlog_2.93.4.txt) [Crashlog_3.0.0.txt](https://archive.blender.org/developer/F10713050/Crashlog_3.0.0.txt) CC @brecht @pmoursnv
Author
Contributor

Added subscribers: @pmoursnv, @brecht, @Raimund58

Added subscribers: @pmoursnv, @brecht, @Raimund58
Raimund Klink changed title from Cycles - Rendering on a Nvidia A100 fails on Google Colab to Cycles - Rendering on a Nvidia A100 crashes/fails on Google Colab 2021-10-01 15:00:09 +02:00
Member

Since Blender does not ship with pre-compiled kernels for A100, it falls back to the PTX one it ships with. But the PTX files that ship with Blender 2.93.4 and 3.0.0 were compiled with CUDA 11.4 (PTX version 7.4).
This requires a r470 driver or newer, older drivers are not able to interpret that PTX version and will fail to compile the kernels. You are running r460, which only supports up to PTX version 7.2, and therefore it fails (and Blender does not handle the error correctly it seems and just crashes shortly after).

Since Blender does not ship with pre-compiled kernels for A100, it falls back to the PTX one it ships with. But the PTX files that ship with Blender 2.93.4 and 3.0.0 were compiled with CUDA 11.4 (PTX version 7.4). This requires a r470 driver or newer, older drivers are not able to interpret that PTX version and will fail to compile the kernels. You are running r460, which only supports up to PTX version 7.2, and therefore it fails (and Blender does not handle the error correctly it seems and just crashes shortly after).

Changed status from 'Needs Triage' to: 'Needs User Info'

Changed status from 'Needs Triage' to: 'Needs User Info'

Ah, I was not aware that upgrading the CUDA toolkit would affect driver compatibility this way. Not sure it's worth reverting to an older CUDA version for this case, I think mentioning it in the 2.93 release notes is enough.

@pmoursnv, can we improve the test here to give a better error message, and then backport that to 2.93?

@Raimund58, can you verify if upgrading the driver to 470 fixes the problem?

Ah, I was not aware that upgrading the CUDA toolkit would affect driver compatibility this way. Not sure it's worth reverting to an older CUDA version for this case, I think mentioning it in the 2.93 release notes is enough. @pmoursnv, can we improve the test here to give a better error message, and then backport that to 2.93? @Raimund58, can you verify if upgrading the driver to 470 fixes the problem?
Patrick Mours self-assigned this 2021-10-04 13:09:13 +02:00
Member

Sure, I can post a fix later today.
The driver reports CUDA_ERROR_UNSUPPORTED_PTX_VERSION (222), which is a more recent addition (was added in CUDA 11.1 as far as I can tell) and not currently in CUEW, hence the "Unknown CUDA error value" in the log.
The crash is then happening because Cycles tries to call "cuOccupancyMaxPotentialBlockSize" with a NULL kernel function in "CUDADevice::load_functions" (since the module failed to load).

Sure, I can post a fix later today. The driver reports `CUDA_ERROR_UNSUPPORTED_PTX_VERSION` (222), which is a more recent addition (was added in CUDA 11.1 as far as I can tell) and not currently in CUEW, hence the "Unknown CUDA error value" in the log. The crash is then happening because Cycles tries to call "cuOccupancyMaxPotentialBlockSize" with a NULL kernel function in "CUDADevice::load_functions" (since the module failed to load).
Author
Contributor

I am quite confused and I don't know if it is because Colab or if I am doing something wrong.
The system said that 470 is already installed, no? But why is nothing changing?

First try to update the driver:

!cat /etc/os-release
!nvidia-smi
!sudo apt install nvidia-driver-470
!nvidia-smi

Log1.txt
(Driver already up to date)

Second try to update the driver:

I followed this site: https://developer.nvidia.com/cuda-downloads?target_os=Linux&target_arch=x86_64&Distribution=Ubuntu&target_version=18.04&target_type=deb_local

!cat /etc/os-release
!nvidia-smi
!wget https://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64/cuda-ubuntu1804.pin
!sudo mv cuda-ubuntu1804.pin /etc/apt/preferences.d/cuda-repository-pin-600
!wget https://developer.download.nvidia.com/compute/cuda/11.4.2/local_installers/cuda-repo-ubuntu1804-11-4-local_11.4.2-470.57.02-1_amd64.deb
!sudo dpkg -i cuda-repo-ubuntu1804-11-4-local_11.4.2-470.57.02-1_amd64.deb
!sudo apt-key add /var/cuda-repo-ubuntu1804-11-4-local/7fa2af80.pub
!sudo apt-get update
!sudo apt-get -y install cuda
!nvidia-smi

Log2.txt
(Still nothing changed)

What am I not seeing?

I am quite confused and I don't know if it is because Colab or if I am doing something wrong. The system said that 470 is already installed, no? But why is nothing changing? First try to update the driver: ``` !cat /etc/os-release !nvidia-smi !sudo apt install nvidia-driver-470 !nvidia-smi ``` [Log1.txt](https://archive.blender.org/developer/F10763062/Log1.txt) (Driver already up to date) Second try to update the driver: I followed this site: https://developer.nvidia.com/cuda-downloads?target_os=Linux&target_arch=x86_64&Distribution=Ubuntu&target_version=18.04&target_type=deb_local ``` !cat /etc/os-release !nvidia-smi !wget https://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64/cuda-ubuntu1804.pin !sudo mv cuda-ubuntu1804.pin /etc/apt/preferences.d/cuda-repository-pin-600 !wget https://developer.download.nvidia.com/compute/cuda/11.4.2/local_installers/cuda-repo-ubuntu1804-11-4-local_11.4.2-470.57.02-1_amd64.deb !sudo dpkg -i cuda-repo-ubuntu1804-11-4-local_11.4.2-470.57.02-1_amd64.deb !sudo apt-key add /var/cuda-repo-ubuntu1804-11-4-local/7fa2af80.pub !sudo apt-get update !sudo apt-get -y install cuda !nvidia-smi ``` [Log2.txt](https://archive.blender.org/developer/F10763074/Log2.txt) (Still nothing changed) What am I not seeing?
Member

I'm not really familiar enough with Linux driver installation to be much help with that. Something is weird on the system though: The called nvidia-smi tool was installed by a r470 driver, but the actual driver running (as reported by nvidia-smi) is a r460 one ... As if both drivers are installed in parallel, but the r460 one is actually active. Wonder if one can force uninstall the old driver and then try to cleanly install r470 over it again.

Fix for the crash in 2.93 is here: https://developer.blender.org/P2478
Super simple, but I'm not sure about the process for backporting/committing stuff to 2.93 (or 2.83 for that matter, which suffers from the same bug)?

I'm not really familiar enough with Linux driver installation to be much help with that. Something is weird on the system though: The called nvidia-smi tool was installed by a r470 driver, but the actual driver running (as reported by nvidia-smi) is a r460 one ... As if both drivers are installed in parallel, but the r460 one is actually active. Wonder if one can force uninstall the old driver and then try to cleanly install r470 over it again. Fix for the crash in 2.93 is here: https://developer.blender.org/P2478 Super simple, but I'm not sure about the process for backporting/committing stuff to 2.93 (or 2.83 for that matter, which suffers from the same bug)?

@Raimund58.: istalling the CUDA toolkit should not be needed, just the driver. Not sure what is going on with that driver though. Maybe needs a system restart or kernel module reload. If it takes a lot of time to investigate that it's probably not worth it just to confirm if this bug is fixed.

@pmoursnv: you can add it to the list in #88449 (Blender LTS: Maintenance Task 2.93) and #77348 (Blender LTS: Maintenance Task 2.83). Linking to the patch from there is fine, Jeroen should be able to commit that..

@Raimund58.: istalling the CUDA toolkit should not be needed, just the driver. Not sure what is going on with that driver though. Maybe needs a system restart or kernel module reload. If it takes a lot of time to investigate that it's probably not worth it just to confirm if this bug is fixed. @pmoursnv: you can add it to the list in #88449 (Blender LTS: Maintenance Task 2.93) and #77348 (Blender LTS: Maintenance Task 2.83). Linking to the patch from there is fine, Jeroen should be able to commit that..
Author
Contributor

@brecht The Google Colab session can not rebooted afaik. So, no fix for me :/
Guess I have to wait for Google to update the driver.
I will come back in case I find a workaround.

@brecht The Google Colab session can not rebooted afaik. So, no fix for me :/ Guess I have to wait for Google to update the driver. I will come back in case I find a workaround.

This issue was referenced by c11585a82f

This issue was referenced by c11585a82f97e51c01c4f4f309b85bdf7602ca08
Member

@Raimund58 You could build Blender yourself with CUDA toolkit 11.2, that should give you PTX files that are compatible. Or build a Cubin for sm_80 directly (via CYCLES_CUDA_BINARIES_ARCH CMake variable), then the CUDA toolkit version should not matter.
Blender doesn't ship with a Cubin for sm_80 by default since there are no consumer GPUs using that architecture.

@brecht I don't have permission to edit those lists, could you add this?:

Report Commits in Master
#91879 c11585a82f Use P2478 instead (has additional crash fix)
@Raimund58 You could build Blender yourself with CUDA toolkit 11.2, that should give you PTX files that are compatible. Or build a Cubin for sm_80 directly (via `CYCLES_CUDA_BINARIES_ARCH` CMake variable), then the CUDA toolkit version should not matter. Blender doesn't ship with a Cubin for sm_80 by default since there are no consumer GPUs using that architecture. @brecht I don't have permission to edit those lists, could you add this?: | Report | Commits in Master | | | -- | -- | -- | | #91879 | c11585a82f | Use [P2478](https://archive.blender.org/developer/P2478.txt) instead (has additional crash fix) |
Member

Added subscriber: @LazyDodo

Added subscriber: @LazyDodo
Member

@pmoursnv added you to the right groups, permissions should be ok now.

@pmoursnv added you to the right groups, permissions should be ok now.
Member

Thanks! Done.

Thanks! Done.

Changed status from 'Needs User Info' to: 'Resolved'

Changed status from 'Needs User Info' to: 'Resolved'

I'll consider this resolved then.

I'll consider this resolved then.

This issue was referenced by b382632665

This issue was referenced by b382632665b3552d580a3c65e94dd36857d5fb68

This issue was referenced by 31dfdb6379

This issue was referenced by 31dfdb6379cd42b919ba529eb9cfd3f29eb8de64
Sign in to join this conversation.
No Label
Interest
Alembic
Interest
Animation & Rigging
Interest
Asset Browser
Interest
Asset Browser Project Overview
Interest
Audio
Interest
Automated Testing
Interest
Blender Asset Bundle
Interest
BlendFile
Interest
Collada
Interest
Compatibility
Interest
Compositing
Interest
Core
Interest
Cycles
Interest
Dependency Graph
Interest
Development Management
Interest
EEVEE
Interest
EEVEE & Viewport
Interest
Freestyle
Interest
Geometry Nodes
Interest
Grease Pencil
Interest
ID Management
Interest
Images & Movies
Interest
Import Export
Interest
Line Art
Interest
Masking
Interest
Metal
Interest
Modeling
Interest
Modifiers
Interest
Motion Tracking
Interest
Nodes & Physics
Interest
OpenGL
Interest
Overlay
Interest
Overrides
Interest
Performance
Interest
Physics
Interest
Pipeline, Assets & IO
Interest
Platforms, Builds & Tests
Interest
Python API
Interest
Render & Cycles
Interest
Render Pipeline
Interest
Sculpt, Paint & Texture
Interest
Text Editor
Interest
Translations
Interest
Triaging
Interest
Undo
Interest
USD
Interest
User Interface
Interest
UV Editing
Interest
VFX & Video
Interest
Video Sequencer
Interest
Virtual Reality
Interest
Vulkan
Interest
Wayland
Interest
Workbench
Interest: X11
Legacy
Blender 2.8 Project
Legacy
Milestone 1: Basic, Local Asset Browser
Legacy
OpenGL Error
Meta
Good First Issue
Meta
Papercut
Meta
Retrospective
Meta
Security
Module
Animation & Rigging
Module
Core
Module
Development Management
Module
EEVEE & Viewport
Module
Grease Pencil
Module
Modeling
Module
Nodes & Physics
Module
Pipeline, Assets & IO
Module
Platforms, Builds & Tests
Module
Python API
Module
Render & Cycles
Module
Sculpt, Paint & Texture
Module
Triaging
Module
User Interface
Module
VFX & Video
Platform
FreeBSD
Platform
Linux
Platform
macOS
Platform
Windows
Priority
High
Priority
Low
Priority
Normal
Priority
Unbreak Now!
Status
Archived
Status
Confirmed
Status
Duplicate
Status
Needs Info from Developers
Status
Needs Information from User
Status
Needs Triage
Status
Resolved
Type
Bug
Type
Design
Type
Known Issue
Type
Patch
Type
Report
Type
To Do
No Milestone
No project
No Assignees
5 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: blender/blender#91879
No description provided.