File tree Expand file tree Collapse file tree 2 files changed +36
-0
lines changed
utils/bazel/llvm-project-overlay/mlir Expand file tree Collapse file tree 2 files changed +36
-0
lines changed Original file line number Diff line number Diff line change @@ -6188,6 +6188,7 @@ cc_binary(
6188
6188
"//mlir/test:TestLinalg" ,
6189
6189
"//mlir/test:TestMath" ,
6190
6190
"//mlir/test:TestMemRef" ,
6191
+ "//mlir/test:TestPDLL" ,
6191
6192
"//mlir/test:TestPass" ,
6192
6193
"//mlir/test:TestReducer" ,
6193
6194
"//mlir/test:TestRewrite" ,
Original file line number Diff line number Diff line change @@ -626,3 +626,38 @@ cc_library(
626
626
"//mlir:Transforms" ,
627
627
],
628
628
)
629
+
630
+ gentbl_cc_library (
631
+ name = "TestPDLLPatternsIncGen" ,
632
+ includes = ["lib/Dialect/Test" ],
633
+ strip_include_prefix = "lib" ,
634
+ tbl_outs = [
635
+ (
636
+ ["-x=cpp" ],
637
+ "lib/Tools/PDLL/TestPDLLPatterns.h.inc" ,
638
+ ),
639
+ ],
640
+ tblgen = "//mlir:mlir-pdll" ,
641
+ td_file = "lib/Tools/PDLL/TestPDLL.pdll" ,
642
+ deps = [
643
+ ":TestDialect" ,
644
+ ":TestOpTdFiles" ,
645
+ ],
646
+ )
647
+
648
+ cc_library (
649
+ name = "TestPDLL" ,
650
+ srcs = ["lib/Tools/PDLL/TestPDLL.cpp" ],
651
+ includes = ["lib/Tools/PDLL" ],
652
+ deps = [
653
+ ":TestDialect" ,
654
+ ":TestPDLLPatternsIncGen" ,
655
+ "//mlir:IR" ,
656
+ "//mlir:PDLDialect" ,
657
+ "//mlir:PDLInterpDialect" ,
658
+ "//mlir:Parser" ,
659
+ "//mlir:Pass" ,
660
+ "//mlir:Support" ,
661
+ "//mlir:TransformUtils" ,
662
+ ],
663
+ )
You can’t perform that action at this time.
0 commit comments