-
Notifications
You must be signed in to change notification settings - Fork 752
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
[DeviceSanitizer] Support "-fsanitize-ignorelist=" to disable sanitizing on some of kernels #15294
Conversation
Waiting for #15843 being 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.
lgtm
Hi @intel/llvm-gatekeepers @intel/unified-runtime-reviewers , please merge. |
This is not ready to merge. The UR part isn't merged yet. |
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.
The UR PR was merged and the tag has been updated now
@pbalcer @callumfare, Thanks! |
@intel/llvm-gatekeepers please merge |
UR: oneapi-src/unified-runtime#2055
We reuse
-fsanitize-ignorelist=
to support kernel filtering.Usage: https://clang.llvm.org/docs/SanitizerSpecialCaseList.html
We implement this feature by adding a device global "__AsanKernelMetadata" which records the sanitized kernel name, so that we can check if we need specially handle kernel in UR.