Compositor: Unify Denoise node between CPU and GPU #118553

Merged
Omar Emara merged 1 commits from OmarEmaraDev/blender:unify-denoise-gpu-cpu into main 2024-02-21 13:23:14 +01:00
Member

The CPU compositor always adds a filter for normal and albedo even if
they don't contain any data, that is, when they are not connected to
anything, by inflating a buffer with the editor value, which is not even
accesible to the user. In anycase, such a solid color will not help do
anything in the denoise operation.

This patch aligns the implementation by only adding the abeldo and
normal filter if they contain actual data, speeding up the operation in
the process.

The CPU compositor always adds a filter for normal and albedo even if they don't contain any data, that is, when they are not connected to anything, by inflating a buffer with the editor value, which is not even accesible to the user. In anycase, such a solid color will not help do anything in the denoise operation. This patch aligns the implementation by only adding the abeldo and normal filter if they contain actual data, speeding up the operation in the process.
Omar Emara added the
Interest
Compositing
Module
VFX & Video
labels 2024-02-21 11:07:11 +01:00
Omar Emara added 1 commit 2024-02-21 11:07:19 +01:00
ae76a6349d Compositor: Unify Denoise node between CPU and GPU
The CPU compositor always adds a filter for normal and albedo even if
they don't contain any data, that is, when they are not connected to
anything, by inflating a buffer with the editor value, which is not even
accesible to the user. In anycase, such a solid color will not help do
anything in the denoise operation.

This patch aligns the implementation by only adding the abeldo and
normal filter if they contain actual data, speeding up the operation in
the process.
Omar Emara requested review from Sergey Sharybin 2024-02-21 11:07:47 +01:00
Sergey Sharybin reviewed 2024-02-21 11:56:12 +01:00
@ -227,0 +217,4 @@
filter.set_image("color", input_color);
if (!input_albedo->is_a_single_elem()) {
filter.set_image("albedo", input_albedo);
if (!input_normal->is_a_single_elem()) {

I believe there is no coupling between albedo and normal guiding passes for OIDN. It is only in the Cycles interface we do not allow all permutations because they are not supported by OptiX, and having different permutations depending on the denoiser used is not that easy. So it probably should be

  if (!input_albedo->is_a_single_elem()) {
    filter.set_image("albedo", input_albedo);
  }
  if (!input_normal->is_a_single_elem()) {
    filter.set_image("normal", input_normal);
  }
I believe there is no coupling between albedo and normal guiding passes for OIDN. It is only in the Cycles interface we do not allow all permutations because they are not supported by OptiX, and having different permutations depending on the denoiser used is not that easy. So it probably should be ``` if (!input_albedo->is_a_single_elem()) { filter.set_image("albedo", input_albedo); } if (!input_normal->is_a_single_elem()) { filter.set_image("normal", input_normal); } ```
Author
Member

@Sergey Are you sure? Because if only normal is added, with logging enabled, I get Error: unsupported combination of input features. There is also this issue, which explains the limitation:

https://github.com/OpenImageDenoise/oidn/issues/9

@Sergey Are you sure? Because if only normal is added, with logging enabled, I get `Error: unsupported combination of input features`. There is also this issue, which explains the limitation: https://github.com/OpenImageDenoise/oidn/issues/9

Is from memories working on the denoiser for Cycles-X, but maybe something was just silently ignoring unsupported configuration. Anyway, if Attila confirms it is unsupported combination we probably should make adjustment to Cycles code to guard against usupported configuration in the code side.

Is from memories working on the denoiser for Cycles-X, but maybe something was just silently ignoring unsupported configuration. Anyway, if Attila confirms it is unsupported combination we probably should make adjustment to Cycles code to guard against usupported configuration in the code side.
Sergey Sharybin approved these changes 2024-02-21 12:29:27 +01:00
Omar Emara merged commit 44778bdf41 into main 2024-02-21 13:23:14 +01:00
Omar Emara deleted branch unify-denoise-gpu-cpu 2024-02-21 13:23:16 +01:00
Sign in to join this conversation.
No reviewers
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
2 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#118553
No description provided.