-
Notifications
You must be signed in to change notification settings - Fork 3.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[TIR] Fix get_block_access_region for let bindings (#16553)
* [TIR] Fix get_block_access_region for let bindings The current implementation of `block_access_region_detector` does not consider the let bindings inside the block. To be more specific: - The let bindings inside the block can be the index of buffer access indices - The let bindings var is defined inside the block, so the block annotation cannot use those vars. - We need to substitute the let bindings inside the block to the block annotation.
- Loading branch information
Showing
2 changed files
with
47 additions
and
13 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
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