-
Notifications
You must be signed in to change notification settings - Fork 45
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
ENH: test binary functions with python scalars #348
Conversation
Checked locally: it does catch the error reported in data-apis/array-api-compat#271
|
The 2024.12 changelog lists the following binary functions which accept scalars as one of its arguments:
|
2e33674
to
3f24acc
Compare
For torch, rejecting scalars is a rule, accepting them is an exception:
and
Worth noting that I'm not even trying to cover the dtypes. I'm pretty sure a lot of them have missing kernels (uints, complex etc). |
- logical_{and,or,xor} - atan2, hypot, logaddexp, minimum, maximum
- equal, not_equal, greater, greater_equal, less, less_equal - add, subtract, multiply, divide
- binary_{and,or,xor}
Merging to continue improving the 2024.12 coverage. |
Make strides towards the "Scalar support in most functions" rubric of #299
cross-ref data-apis/array-api-compat#271