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(
9436
9436
"//mlir/test:TestMemRef" ,
9437
9437
"//mlir/test:TestMemRefToLLVMWithTransforms" ,
9438
9438
"//mlir/test:TestNVGPU" ,
9439
+ "//mlir/test:TestOpenACC" ,
9439
9440
"//mlir/test:TestPDLL" ,
9440
9441
"//mlir/test:TestPass" ,
9441
9442
"//mlir/test:TestReducer" ,
@@ -9995,6 +9996,7 @@ cc_library(
9995
9996
"include/mlir/Dialect/OpenACCMPCommon/Interfaces/AtomicInterfaces.h" ,
9996
9997
],
9997
9998
deps = [
9999
+ ":ArithDialect" ,
9998
10000
":AtomicInterfaces" ,
9999
10001
":AtomicInterfacesIncGen" ,
10000
10002
":BytecodeOpInterface" ,
Original file line number Diff line number Diff line change @@ -953,6 +953,22 @@ cc_library(
953
953
],
954
954
)
955
955
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
+
956
972
cc_library (
957
973
name = "TestSCF" ,
958
974
srcs = glob (["lib/Dialect/SCF/*.cpp" ]),
You can’t perform that action at this time.
0 commit comments