Skip to content
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

Fuse in case of multiple arrays derived from one source array via blockwise ops #126

Closed
tomwhite opened this issue Sep 12, 2022 · 2 comments

Comments

@tomwhite
Copy link
Member

This was raised in #117 (comment).

An example (from test_no_fusion) is:

a = ...
b = +a
c = +b
b == c

It has the following DAG:

cubed

It should be possible to fuse all the blockwise operations into one.

This is reminiscent of ParallelDo Fusion in FlumeJava (a predecessor to Beam).

@tomwhite
Copy link
Member Author

To do this generally needs the ability to write multiple outputs (#69).

@tomwhite
Copy link
Member Author

This was implemented in #346 and made the default in #412

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant