Skip to content
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

[OClToSPIRV] Do not identify user defined functions as OpenCL builtins #2512

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

asudarsa
Copy link
Contributor

There are scenarios where users define functions with names as 'atomic_fetch_and_sub_uint32'. Such functions are being wrongly identified as OpenCL builtins.
This change adds the following to OCLIsBuiltin(...) function
if (!F->isDeclaration()) return false;

This resolves several existing test failures.

Thanks

Signed-off-by: Arvind Sudarsanam <arvind.sudarsanam@intel.com>
@asudarsa
Copy link
Contributor Author

A better solution has been submitted here: #2525
Once approved, I will close this one.

Thanks

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant