We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The problem comes from gh-1487:
import dpctl.tensor as dpt import numpy a = dpt.ones((0, 10)) dpt.sum(a, keepdims=True).shape # Out: () b = numpy.ones((0, 10)) numpy.sum(a, keepdims=True).shape # Out: (1,)
The text was updated successfully, but these errors were encountered:
Provide tests for gh-1293
8413c78
a4e357f
Merge pull request #1294 from IntelPython/fix-gh-1293-sum-keepdims-true
e86ba87
Fix gh-1293 for sum over zero-size array with keepdims set
Successfully merging a pull request may close this issue.
The problem comes from gh-1487:
The text was updated successfully, but these errors were encountered: