-
Notifications
You must be signed in to change notification settings - Fork 546
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
Add support for extended launch syntax. #1530
Conversation
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.
By when do you think ROCm/hcc-clang-upgrade#183 would be merged ?
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.
Building the test fails with the following error message:
hip/tests/src/kernel/hipExtLaunchKernelGGL.cpp:44:5: error: no matching function for call to 'hipExtLaunchKernelGGL'
hipExtLaunchKernelGGL(HipTest::vectorADD, dim3(blocks),
^~~~~~~~~~~~~~~~~~~~~
hip/include/hip/hcc_detail/functional_grid_launch.hpp:177:6: note: candidate function [with Args = <int *, int *, int *, unsigned long>, F = void (*)(int *, int *, int *, unsigned long)] not viable: no overload of 'vectorADD' matching 'void (*)(int *, int *, int *, unsigned long)' for 1st argument
void hipExtLaunchKernelGGL(F kernel, const dim3& numBlocks,
@mangupta this won't work until the Clang support is in place (that is the reason for the build failure). Thanks for spotting the typo. |
Change-Id: Ice32dab0d43475fda65c6a910c11416871a8f2ff
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.
LGTM
Requested changes were addressed.
This depends on ROCm/hcc-clang-upgrade#183. It supersedes #1523.