Some helper additions - #21868
Open
jenshannoschwalm wants to merge 3 commits into
Open
Conversation
Added the cli option `--opencl-no-tiling` to disable fast internal opencl tiling
in case this recent OpenCL pipe feature doesn't work correctly.
(Can also be switched on via dt_conf_get_bool("no_opencl_fast_tiling")
The module-in-focus should only give a performance hint if enabled so the OpenCL code might avoid the write-back to host.
1. If analyzing data from OpenCL cl_mem we should not overwrite data in output cacheline as that might be used otherwise but to a temp buffer. 2. The analysing happens in OMP code for performance 3. At least in OpenCL code some drivers might behave in a strange way if there are NaNs or infinites in channel 3 so we analyse and report that too. 4. Simplified log output
jenshannoschwalm
force-pushed
the
some_opencl_additions
branch
from
August 16, 2026 06:49
0700f70 to
b7eda32
Compare
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.
Provide
--opencl-no-tilingAdded the cli option
--opencl-no-tilingto disable fast internal opencl tiling in case this recent OpenCL pipe feature doesn't work correctly. (Can also be switched on via dt_conf_get_bool("no_opencl_fast_tiling")Improved importance cache hint
The module-in-focus should only give a performance hint if enabled so the OpenCL code might avoid the write-back to host.
Improved analysis of NaN pipe data