-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat[next][dace]: GTIR-to-SDFG lowering of let-lambdas (using NestedS…
…DFG) (#1601) This PR proposes an alternative design for the lowering of let-lambdas to SDFG, than the design provided in #1589. The previous PR added a separate state for the definition of let-symbols: the disadvantage of that solution is that the generated SDFG does not clearly represent the data dependency. The alternative design proposed in this PR uses a nested SDFG to represent some local symbols in the lambda scope. The lambda function is lowered inside the nested SDFG. We rely on the simplify pass to remove unnecessary nested SDFGs.
- Loading branch information
Showing
3 changed files
with
240 additions
and
164 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.