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 following raises
NotImplementedError: no overload for ak.to_layout with arguments (dask.awkward<from-awkward, npartitions=1>,)
when attempting to multiply the array by a scalar from the left:
import awkward as ak import dask_awkward as dak arr = dak.from_awkward(ak.Array([1,3,4]), npartitions=1) dak.sum(arr, axis=-1) * arr
Doing the same thing from the right works:
arr * dak.sum(arr, axis=-1)
I'm using awkward 2.6.6 and dask_awkward 2024.6.0.
awkward
dask_awkward
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
The following raises
when attempting to multiply the array by a scalar from the left:
Doing the same thing from the right works:
I'm using
awkward
2.6.6 anddask_awkward
2024.6.0.The text was updated successfully, but these errors were encountered: