Skip to content

Commit d748dab

Browse files
authored
[bazel] Port llvm#98653 (llvm#99356)
1 parent 6867e49 commit d748dab

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

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

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5992,6 +5992,7 @@ cc_library(
59925992
":LLVMCommonConversion",
59935993
":LLVMDialect",
59945994
":MathDialect",
5995+
":MathToROCDL",
59955996
":MemRefDialect",
59965997
":MemRefToLLVM",
59975998
":Pass",
@@ -7284,6 +7285,32 @@ cc_library(
72847285
],
72857286
)
72867287

7288+
cc_library(
7289+
name = "MathToROCDL",
7290+
srcs = glob([
7291+
"lib/Conversion/MathToROCDL/*.cpp",
7292+
]),
7293+
hdrs = glob([
7294+
"include/mlir/Conversion/MathToROCDL/*.h",
7295+
]),
7296+
includes = ["include"],
7297+
deps = [
7298+
":ConversionPassIncGen",
7299+
":DialectUtils",
7300+
":FuncDialect",
7301+
":GPUCommonTransforms",
7302+
":GPUToGPURuntimeTransforms",
7303+
":IR",
7304+
":LLVMCommonConversion",
7305+
":LLVMDialect",
7306+
":MathDialect",
7307+
":Pass",
7308+
":ROCDLDialect",
7309+
":TransformUtils",
7310+
":VectorDialect",
7311+
],
7312+
)
7313+
72877314
cc_library(
72887315
name = "FuncToEmitC",
72897316
srcs = glob([

0 commit comments

Comments
 (0)