File tree Expand file tree Collapse file tree 2 files changed +18
-0
lines changed
utils/bazel/llvm-project-overlay/mlir Expand file tree Collapse file tree 2 files changed +18
-0
lines changed Original file line number Diff line number Diff line change @@ -9436,6 +9436,7 @@ cc_binary(
94369436 "//mlir/test:TestMemRef" ,
94379437 "//mlir/test:TestMemRefToLLVMWithTransforms" ,
94389438 "//mlir/test:TestNVGPU" ,
9439+ "//mlir/test:TestOpenACC" ,
94399440 "//mlir/test:TestPDLL" ,
94409441 "//mlir/test:TestPass" ,
94419442 "//mlir/test:TestReducer" ,
@@ -9995,6 +9996,7 @@ cc_library(
99959996 "include/mlir/Dialect/OpenACCMPCommon/Interfaces/AtomicInterfaces.h" ,
99969997 ],
99979998 deps = [
9999+ ":ArithDialect" ,
999810000 ":AtomicInterfaces" ,
999910001 ":AtomicInterfacesIncGen" ,
1000010002 ":BytecodeOpInterface" ,
Original file line number Diff line number Diff line change @@ -953,6 +953,22 @@ cc_library(
953953 ],
954954)
955955
956+ cc_library (
957+ name = "TestOpenACC" ,
958+ srcs = glob (["lib/Dialect/OpenACC/*.cpp" ]),
959+ includes = ["lib/Dialect/Test" ],
960+ deps = [
961+ "//llvm:Support" ,
962+ "//mlir:ArithDialect" ,
963+ "//mlir:FuncDialect" ,
964+ "//mlir:IR" ,
965+ "//mlir:MemRefDialect" ,
966+ "//mlir:OpenACCDialect" ,
967+ "//mlir:Pass" ,
968+ "//mlir:Support" ,
969+ ],
970+ )
971+
956972cc_library (
957973 name = "TestSCF" ,
958974 srcs = glob (["lib/Dialect/SCF/*.cpp" ]),
You can’t perform that action at this time.
0 commit comments