-
Notifications
You must be signed in to change notification settings - Fork 787
[SYCL][ABI-break] Remove legacy get member function from event #6570
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
[SYCL][ABI-break] Remove legacy get member function from event #6570
Conversation
SYCL 1.2.1 had a get member function on select classes for getting the underlying OpenCL object. With SYCL 2020 those were removed and replaced with a more general API. This commit removes the get member function from the sycl::event class. Signed-off-by: Larsen, Steffen <[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.
Looks good to me. Just one comment though: shouldn't the field "MOpenCLInterop" be removed from event_impl.hpp ?
Signed-off-by: Larsen, Steffen <[email protected]>
Yes, that was should absolutely be removed! I don't even know how I forgot to do that. |
Failures unrelated:
|
intel/llvm#6570 removed the OpenCL interop get member function from sycl::event. SYCL/DeprecatedFeatures/event_creation_opencl.cpp used the removed feature and should as such be removed. Signed-off-by: Larsen, Steffen <[email protected]>
intel/llvm#6570 removed the OpenCL interop get member function from sycl::event. SYCL/DeprecatedFeatures/event_creation_opencl.cpp used the removed feature and should as such be removed. Signed-off-by: Larsen, Steffen <[email protected]>
…llvm-test-suite#1161) intel#6570 removed the OpenCL interop get member function from sycl::event. SYCL/DeprecatedFeatures/event_creation_opencl.cpp used the removed feature and should as such be removed. Signed-off-by: Larsen, Steffen <[email protected]>
SYCL 1.2.1 had a get member function on select classes for getting the underlying OpenCL object. With SYCL 2020 those were removed and replaced with a more general API. This commit removes the get member function from the sycl::event class.