File tree Expand file tree Collapse file tree 1 file changed +23
-0
lines changed
utils/bazel/llvm-project-overlay/mlir Expand file tree Collapse file tree 1 file changed +23
-0
lines changed Original file line number Diff line number Diff line change @@ -5167,6 +5167,7 @@ cc_library(
5167
5167
":FuncDialect" ,
5168
5168
":FunctionInterfaces" ,
5169
5169
":GPUDialect" ,
5170
+ ":GPUUtils" ,
5170
5171
":IR" ,
5171
5172
":LinalgDialect" ,
5172
5173
":MemRefDialect" ,
@@ -5795,6 +5796,7 @@ cc_library(
5795
5796
":ExecutionEngineUtils" ,
5796
5797
":FuncDialect" ,
5797
5798
":GPUDialect" ,
5799
+ ":GPUUtils" ,
5798
5800
":GPUPassIncGen" ,
5799
5801
":GPUToLLVMIRTranslation" ,
5800
5802
":IR" ,
@@ -5829,6 +5831,26 @@ cc_library(
5829
5831
]),
5830
5832
)
5831
5833
5834
+ cc_library (
5835
+ name = "GPUUtils" ,
5836
+ srcs = glob (
5837
+ [
5838
+ "lib/Dialect/GPU/Utils/*.cpp" ,
5839
+ ],
5840
+ ),
5841
+ hdrs = glob (["include/mlir/Dialect/GPU/Utils/*.h" ]),
5842
+ includes = ["include" ],
5843
+ deps = [
5844
+ ":AffineDialect" ,
5845
+ ":ArithDialect" ,
5846
+ ":GPUDialect" ,
5847
+ ":IR" ,
5848
+ ":Support" ,
5849
+ ":VectorDialect" ,
5850
+ "//llvm:Support" ,
5851
+ ],
5852
+ )
5853
+
5832
5854
td_library (
5833
5855
name = "GPUTransformOpsTdFiles" ,
5834
5856
srcs = [
@@ -6188,6 +6210,7 @@ cc_library(
6188
6210
":FuncToLLVM" ,
6189
6211
":GPUCommonTransforms" ,
6190
6212
":GPUDialect" ,
6213
+ ":GPUUtils" ,
6191
6214
":GPUTransforms" ,
6192
6215
":IR" ,
6193
6216
":LLVMCommonConversion" ,
You can’t perform that action at this time.
0 commit comments