-
Notifications
You must be signed in to change notification settings - Fork 86
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Multi-Dimensional Buffer Descriptors in AIE2 (#547)
* add error handling to libXAIE calls * address PR comments on error handling in libXAIE calls do not expose AieRC type in aie_inc.cpp functions do not print redundant error messages use C++ raw string for code block rename __mlir_aie_print to __mlir_aie_verbose * replace some duplicated definitions with auto-generated TableGen ones * initial draft of N-dimensional buffer descriptors for AIE-ML * add simulator tests for multi-dim buffer descriptors in AIE2 small fixes * clang format * remove unused tileDMATensorRefStr function * fix merge conflict * re-add objectFifoTypes; fix optional ndim generation; format * add dependency on AIE lib to AIEX CMakeLists * reformat and add N-dimensional BD unit tests * n-dimensonal DMA: add tests; add documentation; add checks on buffer size, rank, and contiguity; reorder arguments to be highest dimension first
- Loading branch information
Showing
48 changed files
with
1,342 additions
and
412 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,6 +15,7 @@ add_mlir_dialect_library(AIEX | |
MLIRAIEXEnumsIncGen | ||
|
||
LINK_LIBS PUBLIC | ||
AIE | ||
MLIRIR | ||
MLIRSupport | ||
) |
Oops, something went wrong.