File tree Expand file tree Collapse file tree 1 file changed +16
-1
lines changed
utils/bazel/llvm-project-overlay/mlir Expand file tree Collapse file tree 1 file changed +16
-1
lines changed Original file line number Diff line number Diff line change @@ -5786,10 +5786,12 @@ cc_library(
5786
5786
deps = [
5787
5787
":ConversionPassIncGen" ,
5788
5788
":GPUDialect" ,
5789
+ ":GPUToGPURuntimeTransforms" ,
5789
5790
":IR" ,
5790
5791
":LLVMCommonConversion" ,
5791
5792
":LLVMDialect" ,
5792
5793
":Pass" ,
5794
+ ":SPIRVCommonAttrToLLVMConversion" ,
5793
5795
":SPIRVDialect" ,
5794
5796
":Support" ,
5795
5797
":TransformUtils" ,
@@ -5985,7 +5987,10 @@ cc_library(
5985
5987
"lib/Conversion/GPUCommon/GPUOpsLowering.cpp" ,
5986
5988
"lib/Conversion/GPUCommon/GPUToLLVMConversion.cpp" ,
5987
5989
],
5988
- hdrs = ["include/mlir/Conversion/GPUCommon/GPUCommonPass.h" ],
5990
+ hdrs = [
5991
+ "include/mlir/Conversion/GPUCommon/GPUCommonPass.h" ,
5992
+ "lib/Conversion/GPUCommon/GPUOpsLowering.h" ,
5993
+ ],
5989
5994
includes = ["include" ],
5990
5995
deps = [
5991
5996
":ArithToLLVM" ,
@@ -7213,6 +7218,16 @@ cc_library(
7213
7218
],
7214
7219
)
7215
7220
7221
+ cc_library (
7222
+ name = "SPIRVCommonAttrToLLVMConversion" ,
7223
+ srcs = ["lib/Conversion/SPIRVCommon/AttrToLLVMConverter.cpp" ],
7224
+ hdrs = ["include/mlir/Conversion/SPIRVCommon/AttrToLLVMConverter.h" ],
7225
+ includes = ["include" ],
7226
+ deps = [
7227
+ ":SPIRVDialect" ,
7228
+ ],
7229
+ )
7230
+
7216
7231
cc_library (
7217
7232
name = "MathToSPIRV" ,
7218
7233
srcs = glob ([
You can’t perform that action at this time.
0 commit comments