-
Notifications
You must be signed in to change notification settings - Fork 131
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added
FindSingleUseData
Pass (#1906)
Added `FindSingleUseData` analysis pass This new pass scans the SDFG and computes the data that is only used in one single place. Essentially, this boils down to the check how often a data descriptor is accessed A data descriptor is classified if the following statements are true: - There is exactly one AccessNode referring to the data descriptor. - The data descriptor is not referred to on an interstate edge, nor in the condition parts of `ConditionBlock`s or `LoopRegion`s. This pass will be needed to speed up fusion passes.
- Loading branch information
1 parent
7771baf
commit e1886a0
Showing
2 changed files
with
507 additions
and
0 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.