-
Notifications
You must be signed in to change notification settings - Fork 788
[ESIMD]Move addc and subb functions out of experimental namespace #10589
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
|
||
carry = Result.first; | ||
return Result.second; | ||
__SYCL_DEPRECATED("the function moved out of experimental namespace") |
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.
__SYCL_DEPRECATED("the function moved out of experimental namespace") | |
__SYCL_DEPRECATED("Please use sycl::ext::intel::esimd::addc(carry, src0, src1);") |
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. I have only 1 comment regarding the deprecation message.
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.
Do you think we need tests for both experimental and non-experimental versions? What is the rule of thumb?
I updated the tests only for non-experimental version only to avoid producing deprecation messages while building the tests and save some work later when the experimental API will be actually deleted |
Ok, thanks. |
No description provided.