Join does not always respect the order of provided parameters (#3511)#3513
Merged
christophe-murphy merged 2 commits intoarrayfire:masterfrom Feb 26, 2025
Merged
Join does not always respect the order of provided parameters (#3511)#3513christophe-murphy merged 2 commits intoarrayfire:masterfrom
christophe-murphy merged 2 commits intoarrayfire:masterfrom
Conversation
Contributor
Author
|
Do not merge yet. |
Contributor
Author
|
Code is updated and join tests are expanded with the generation of multiple join combinations. For some joins, the kernel of a previous join could be used since both generated the same 'unique' funcName (while having a different kernel) resulting in the reuse of the previously cached kernel iso generating the new one. |
Member
|
Updated the getFuncName parameters in oneapi. |
christophe-murphy
approved these changes
Feb 25, 2025
willyborn
added a commit
to willyborn/arrayfire
that referenced
this pull request
Jun 14, 2025
5 tasks
christophe-murphy
pushed a commit
that referenced
this pull request
Jun 25, 2025
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.
Arrays were be joined in the order the JIT engine generated the arrays iso the order of the parameters.
Description
This assumption is violated when one of the generated arrays is an intermediate result of a previous specified JIT generated array.
Example of error condition:
In this fix, the order of the parameters is imposed, independent from the order of JIT generation.
PS: This bug appears in OPENCL and CUDA.
As result, a different kernel could be executed than intended, dependent on the order of the JIT kernel generation.
Additional information about the PR answering following questions:
Fixes: #3511
Changes to Users
None
Checklist