Combine LUTs use pairIdentityReplacement when possible#2080
Closed
remia wants to merge 1 commit into
Closed
Conversation
Signed-off-by: Rémi Achard <remiachard@gmail.com>
zachlewis
approved these changes
Nov 11, 2024
Collaborator
|
Remi, thanks for identifying this issue! However, I'm wondering if it would be better to address this by changing OpOptimizers directly rather than moving optimization techniques into Lut1DOp::combineWith. In principle, this same problem could affect other ops, which would require making other op combineWith functions more complex as well. Plus, it sort of seems like a bug that the optimizer would even try to call combineWith on a set of pair inverses. I've put together a PR that takes an alternate approach, namely only combining a single pair of ops before trying more preferred optimization techniques (such as removing pair inverses). Please let me know your thoughts. |
Collaborator
Author
|
Declining in favour of #2104. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
In some cases a pair of inverse / forward LUTs don't get optimized away by OCIO but instead combined in a single half-domain LUT. This seems to happen when there are a number of other operators in between, like a pair of MatrixOp to handle domain scales.
For context, the example I saw this in our config was in the case of an ACEScg to ARRI LogC4 -> CDL (identity) -> ARRI LogC4 to ACEScg conversion, the LogC4 LUT was designed to preserve -1 to 500 range. Here is the Group transform from the Processor for reference. Note that the ExponentOp clamp is ignored when optimizing.