Skip to content

Commit 8124d59

Browse files
committed
[bazel] Port llvm#90972
1 parent 13b6284 commit 8124d59

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
@@ -4185,6 +4185,7 @@ cc_library(
41854185
":FuncToLLVM",
41864186
":FuncToSPIRV",
41874187
":GPUToGPURuntimeTransforms",
4188+
":GPUToLLVMSPVTransforms",
41884189
":GPUToNVVMTransforms",
41894190
":GPUToROCDLTransforms",
41904191
":GPUToSPIRV",
@@ -5795,6 +5796,29 @@ gentbl_cc_library(
57955796
],
57965797
)
57975798

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

0 commit comments

Comments
 (0)