-
Notifications
You must be signed in to change notification settings - Fork 23
Added implementation of dpnp.special.erfc
#2588
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
…ader for the extensions
… init_dispatch_table() from common utils
…ch_table() from common utils
…spatch_table() from common utils
|
View rendered docs @ https://intelpython.github.io/dpnp/index.html |
|
Array API standard conformance tests for dpnp=0.19.0dev6=py313h509198e_22 ran successfully. |
dpnp.erfc through pybind11 extensiondpnp.special.erfc
vlad-perevezentsev
left a comment
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
Thank you @antonwolfy for erfc implementation and the helpful code simplifications by introducing shared init dispatch templates
The PR add the implementation of `dpnp.special.erfc` function, including tests coverage. Also it reworks the previous implementation of erf function to reduce future code duplication. because most of erf-like function has the same types supported and similar signature. 8906b0e
The PR add the implementation of
dpnp.special.erfcfunction, including tests coverage.Also it reworks the previous implementation of erf function to reduce future code duplication. because most of erf-like function has the same types supported and similar signature.