-
Notifications
You must be signed in to change notification settings - Fork 477
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Silence C++ [[nodiscard]] warning (#8090)
* Silence C++ [[nodiscard]] warning Add a note about new air-pdi-transform component Signed-off-by: Sonal Santan <[email protected]> * Resolve a few additional clang-tidy warnings Signed-off-by: Sonal Santan <[email protected]> * Let compiler manage the type of auto Signed-off-by: Sonal Santan <[email protected]> --------- Signed-off-by: Sonal Santan <[email protected]>
- Loading branch information
Showing
5 changed files
with
23 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
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
11 changes: 11 additions & 0 deletions
11
src/runtime_src/tools/xclbinutil/aie-pdi-transform/README.rst
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
aie-pdi-transform | ||
================= | ||
|
||
The code in aie-pdi-transform directory provide functionality to transform a | ||
given PDI to make it more efficient to load. For example multiple DMAs are | ||
merged together and LOAD/STOREs are consolidated. | ||
|
||
Please note that the coding style used in this subsystem is not conformant to | ||
XRT coding style. Please do not use this code as an example to write new PRs | ||
for XRT. In due course of time this subsystem will be rewritten in modern C++ | ||
like the rest of the XRT code base. |