Skip to content

Commit 39229f7

Browse files
committed
[bazel] Port llvm#98653
1 parent 2d42f84 commit 39229f7

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",
@@ -7279,6 +7280,32 @@ cc_library(
72797280
],
72807281
)
72817282

7283+
cc_library(
7284+
name = "MathToROCDL",
7285+
srcs = glob([
7286+
"lib/Conversion/MathToROCDL/*.cpp",
7287+
]),
7288+
hdrs = glob([
7289+
"include/mlir/Conversion/MathToROCDL/*.h",
7290+
]),
7291+
includes = ["include"],
7292+
deps = [
7293+
":ConversionPassIncGen",
7294+
":DialectUtils",
7295+
":FuncDialect",
7296+
":GPUCommonTransforms",
7297+
":GPUToGPURuntimeTransforms",
7298+
":IR",
7299+
":LLVMCommonConversion",
7300+
":LLVMDialect",
7301+
":MathDialect",
7302+
":Pass",
7303+
":ROCDLDialect",
7304+
":TransformUtils",
7305+
":VectorDialect",
7306+
],
7307+
)
7308+
72827309
cc_library(
72837310
name = "FuncToEmitC",
72847311
srcs = glob([

0 commit comments

Comments
 (0)