Skip to content

Commit 5578f86

Browse files
authored
Merge branch 'main' into objfifo-locks-dynamic
2 parents 7ef9477 + f38d918 commit 5578f86

33 files changed

Lines changed: 303 additions & 2276 deletions

File tree

.github/CODEOWNERS

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ aie_kernels/** @denolf @jgmelber @jackl-xilinx @andrej
44
aie_runtime_lib/** @stephenneuendorffer @jackl-xilinx
55
cmake/** @denolf @stephenneuendorffer
66
docs/** @stephenneuendorffer @abisca @jackl-xilinx @jgmelber
7-
**/ADF/** @stephenneuendorffer
87
**/AIEVec/** @jsetoain
98
**/AIE/** @abisca @stephenneuendorffer @fifield @erwei-xilinx
109
**/AIEX/** @jgmelber @abisca @fifield

docs/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -324,7 +324,6 @@ Generated Code Documentation (rendered on the website):
324324
- [AIE Dialect](https://xilinx.github.io/mlir-aie/AIEDialect.html) - [AIE Passes](https://xilinx.github.io/mlir-aie/AIEPasses.html)
325325
- [AIEX Experimental Dialect](https://xilinx.github.io/mlir-aie/AIEXDialect.html) - [AIEX Experimental Passes](https://xilinx.github.io/mlir-aie/AIEXPasses.html)
326326
- [AIEVec Dialect](https://xilinx.github.io/mlir-aie/AIEVecDialect.html) - [AIEVec Passes](https://xilinx.github.io/mlir-aie/AIEVecPasses.html)
327-
- [ADF Dialect](https://xilinx.github.io/mlir-aie/ADFDialect.html) - [ADF Passes](https://xilinx.github.io/mlir-aie/ADFPasses.html)
328327
329328
Tutorials
330329
- [IRON AIE Application Programming Guide](../programming_guide/README.md)

docs/_layouts/default.html

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@
3838
<li class="listedpages"><a style="color:white;" href="AIEXPasses.html">AIEX Passes</a></li>
3939
<li class="listedpages"><a style="color:white;" href="AIEVecDialect.html">AIEVec Dialect</a></li>
4040
<li class="listedpages"><a style="color:white;" href="AIEVecPasses.html">AIEVec Passes</a></li>
41-
<li class="listedpages"><a style="color:white;" href="ADFDialect.html">ADF Dialect</a></li>
4241
<li class="listedpages"><a style="color:white;" href="doxygen/html/index.html">Doxygen Docs</a></li>
4342
<li><label for="btn-4 " class="show ">IRON Docs</label></li>
4443
<li class="listedpages"><a style="color:white;" href="python/html/namespaceiron.html">IRON API</a></li>

docs/dialects.dot

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ digraph G {
2424
node [fillcolor="#f5edbc"]
2525
label = "mlir_aie"
2626

27-
ADF [URL="ADFDialect.html"]
2827
{ rank = same; AIE [URL="AIEDialect.html"]
2928
AIEVec [URL="AIEVecDialect.html"] }
3029
}
@@ -38,7 +37,6 @@ digraph G {
3837
// File formats
3938
subgraph output_formats {
4039
node [fillcolor="#7fc97f" shape="note"]
41-
ADFCPPFile [label="adf.cpp"]
4240
subgraph cluster_configuration {
4341
label = "configuration"
4442
LLFile [label=".ll"]
@@ -47,16 +45,9 @@ digraph G {
4745
}
4846

4947
Affine -> AIE [ltail=cluster_mlir, style=dashed]
50-
ADF -> AIE [style=dashed]
51-
ADF -> ADFCPPFile
5248
Affine -> AIEVec
53-
AIEVec -> ADFCPPFile
5449
AIE -> LLFile [lhead=cluster_mlir]
5550
AIEVec -> LLFile [style=dashed]
56-
ADFCPPFile -> Vitis
5751
Pytorch -> torch_mlir -> Affine [lhead=cluster_mlir]
5852
CPPFile -> polygeist -> Affine [lhead=cluster_mlir]
59-
60-
// For layout
61-
Affine -> ADF [style=invis]
6253
}

include/aie/Dialect/ADF/ADF.td

Lines changed: 0 additions & 208 deletions
This file was deleted.

include/aie/Dialect/ADF/ADFDialect.h

Lines changed: 0 additions & 33 deletions
This file was deleted.

include/aie/Dialect/ADF/ADFOps.h

Lines changed: 0 additions & 18 deletions
This file was deleted.

include/aie/Dialect/ADF/CMakeLists.txt

Lines changed: 0 additions & 9 deletions
This file was deleted.

include/aie/Dialect/CMakeLists.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
55
#
66

7-
add_subdirectory(ADF)
87
add_subdirectory(AIE)
98
add_subdirectory(AIEX)
109
add_subdirectory(AIEVec)

include/aie/InitialAllDialect.h

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
#ifndef XILINX_INITALLDIALECTS_H_
1313
#define XILINX_INITALLDIALECTS_H_
1414

15-
#include "aie/Dialect/ADF/ADFDialect.h"
1615
#include "aie/Dialect/AIE/IR/AIEDialect.h"
1716
#include "aie/Dialect/AIEVec/AIE1/IR/AIEVecAIE1Dialect.h"
1817
#include "aie/Dialect/AIEVec/IR/AIEVecDialect.h"
@@ -27,7 +26,6 @@ namespace xilinx {
2726
inline void registerAllDialects(mlir::DialectRegistry &registry) {
2827
// clang-format off
2928
registry.insert<
30-
ADF::ADFDialect,
3129
AIE::AIEDialect,
3230
aievec::AIEVecDialect,
3331
aievec::aie1::AIEVecAIE1Dialect,

0 commit comments

Comments
 (0)