-
Notifications
You must be signed in to change notification settings - Fork 19
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
Add fusion for ufuncs and perhaps other operations #391
Comments
We were thinking that a Dask DAG could be used to identify sequences of fusable operations and fuse them. That leaves open the scope:
Implementation:
Footnotes
|
From today's meeting:
In dask-awkward we could look to fusing ufunc operations like
x * 1 + 2
using the task graph. This is effectively what NumExpr does, but without requiring the string processing.We should also look to identify operations that are impossible or very memory intensive at the moment, such as
ak.cartesian
.The text was updated successfully, but these errors were encountered: