-
Notifications
You must be signed in to change notification settings - Fork 769
[SYCL] Deprecate single_task() and parallel_for() overloads with properties #16728
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
Conversation
Signed-off-by: Hu, Peisen <[email protected]>
Note: the deprecation warnings are all added now. There will be a separate PR to fix the failing e2e tests (#16775) before merging this one. |
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.
I think you got them all 👍 .
Signed-off-by: Hu, Peisen <[email protected]>
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!
Requesting @intel/llvm-gatekeepers to merge this PR. Thanks! |
As the title says, added deprecation messages for such overloads in the
sycl_ext_oneapi_kernel_properties extension
, suggesting users to usesingle_task/parallel_for
overloads provided in thesycl_ext_oneapi_enqueue_functions
extension instead. (As these overloads are to be removed later as mentioned in #14785) Also fixed an affected test case.