This commit is contained in:
Keith Smiley 2024-05-31 10:43:15 -07:00 committed by GitHub
parent 1e81b67925
commit 34599266b2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -4186,6 +4186,7 @@ cc_library(
":FuncToLLVM",
":FuncToSPIRV",
":GPUToGPURuntimeTransforms",
":GPUToLLVMSPVTransforms",
":GPUToNVVMTransforms",
":GPUToROCDLTransforms",
":GPUToSPIRV",
@ -5796,6 +5797,29 @@ gentbl_cc_library(
],
)
cc_library(
name = "GPUToLLVMSPVTransforms",
srcs = glob([
"lib/Conversion/GPUToLLVMSPV/*.cpp",
]),
hdrs = glob([
"include/mlir/Conversion/GPUToLLVMSPV/*.h",
]),
includes = ["include"],
deps = [
":ConversionPassIncGen",
":GPUDialect",
":IR",
":LLVMCommonConversion",
":LLVMDialect",
":Pass",
":SPIRVDialect",
":Support",
":TransformUtils",
"//llvm:Support",
],
)
cc_library(
name = "GPUToNVVMTransforms",
srcs = glob([