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.