Skip to content

Commit 3459926

Browse files
authored
[bazel] Port llvm#90972 (llvm#93996)
1 parent 1e81b67 commit 3459926

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

utils/bazel/llvm-project-overlay/mlir/BUILD.bazel

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4186,6 +4186,7 @@ cc_library(
41864186
":FuncToLLVM",
41874187
":FuncToSPIRV",
41884188
":GPUToGPURuntimeTransforms",
4189+
":GPUToLLVMSPVTransforms",
41894190
":GPUToNVVMTransforms",
41904191
":GPUToROCDLTransforms",
41914192
":GPUToSPIRV",
@@ -5796,6 +5797,29 @@ gentbl_cc_library(
57965797
],
57975798
)
57985799

5800+
cc_library(
5801+
name = "GPUToLLVMSPVTransforms",
5802+
srcs = glob([
5803+
"lib/Conversion/GPUToLLVMSPV/*.cpp",
5804+
]),
5805+
hdrs = glob([
5806+
"include/mlir/Conversion/GPUToLLVMSPV/*.h",
5807+
]),
5808+
includes = ["include"],
5809+
deps = [
5810+
":ConversionPassIncGen",
5811+
":GPUDialect",
5812+
":IR",
5813+
":LLVMCommonConversion",
5814+
":LLVMDialect",
5815+
":Pass",
5816+
":SPIRVDialect",
5817+
":Support",
5818+
":TransformUtils",
5819+
"//llvm:Support",
5820+
],
5821+
)
5822+
57995823
cc_library(
58005824
name = "GPUToNVVMTransforms",
58015825
srcs = glob([

0 commit comments

Comments
 (0)