-
Notifications
You must be signed in to change notification settings - Fork 80
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[NFC] Update template get_access
call in multi_ptr header
#907
Merged
bader
merged 3 commits into
KhronosGroup:SYCL-2020
from
0x12CC:multi_ptr_test_add_template_arguments
Jul 17, 2024
Merged
[NFC] Update template get_access
call in multi_ptr header
#907
bader
merged 3 commits into
KhronosGroup:SYCL-2020
from
0x12CC:multi_ptr_test_add_template_arguments
Jul 17, 2024
Conversation
This file contains 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
llvm/llvm-project#80801 updates clang to require a list of template arguments after an identifier prefixed by the template keyword. This change updates a call in `multi_ptr_comparison_op.h` to ensure it compiles with the latest clang. Signed-off-by: Michael Aziz <michael.aziz@intel.com>
Signed-off-by: Michael Aziz <michael.aziz@intel.com>
Signed-off-by: Michael Aziz <michael.aziz@intel.com>
AlexeySachkov
approved these changes
Jul 8, 2024
This was referenced Jul 8, 2024
sarnex
added a commit
to intel/llvm
that referenced
this pull request
Jul 8, 2024
Needed until KhronosGroup/SYCL-CTS#907 is merged Signed-off-by: Sarnie, Nick <nick.sarnie@intel.com>
steffenlarsen
approved these changes
Jul 11, 2024
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@keryell, could you take a look, please? This change blocks a few other PRs. |
keryell
approved these changes
Jul 17, 2024
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks!
sarnex
added a commit
to intel/llvm
that referenced
this pull request
Jul 22, 2024
Fix was [merged](KhronosGroup/SYCL-CTS#907) to CTS. Manual nightly run with this change: https://github.com/intel/llvm/actions/runs/10045951175/job/27765157126 Closes: #14478 Signed-off-by: Sarnie, Nick <nick.sarnie@intel.com>
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.
llvm/llvm-project#80801 updates clang to require a list of template arguments after an identifier prefixed by the template keyword. This change updates calls in the
multi_ptr
test headers to ensure they compile with the latest clang.