-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[SplitLogicalObjFifos] Support loop dependency and stride (#1009)
This PR add support for splitting logical objectFifos and DMAs with loop dependencies and a strided access specified through an affine expression. For example, if the data in a 4x4 objectFifo at some point is: ``` [0, 0, 0, 0] [1, 1, 1, 1] [2, 2, 2, 2] [3, 3, 3, 3] ``` and for an `index` from 0 -> 2, two consumer DMAs access the following rows: ```` consumer 1: 2 * `index` (thus rows 0 and 2) consumer 2: 2 * `index` + 1 (thus rows 1 and 3) ```` Then, the objectFifo is split into two objectFifos in the following way: new objectFifo 1: ``` [0, 0, 0, 0] [2, 2, 2, 2] ``` new objectFifo 2: ``` [1, 1, 1, 1] [3, 3, 3, 3] ```
- Loading branch information
Showing
9 changed files
with
612 additions
and
130 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
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
Oops, something went wrong.