Skip to content

Commit

Permalink
[bazel] Port #98653
Browse files Browse the repository at this point in the history
  • Loading branch information
keith committed Jul 17, 2024
1 parent 2d42f84 commit 39229f7
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions utils/bazel/llvm-project-overlay/mlir/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -5992,6 +5992,7 @@ cc_library(
":LLVMCommonConversion",
":LLVMDialect",
":MathDialect",
":MathToROCDL",
":MemRefDialect",
":MemRefToLLVM",
":Pass",
Expand Down Expand Up @@ -7279,6 +7280,32 @@ cc_library(
],
)

cc_library(
name = "MathToROCDL",
srcs = glob([
"lib/Conversion/MathToROCDL/*.cpp",
]),
hdrs = glob([
"include/mlir/Conversion/MathToROCDL/*.h",
]),
includes = ["include"],
deps = [
":ConversionPassIncGen",
":DialectUtils",
":FuncDialect",
":GPUCommonTransforms",
":GPUToGPURuntimeTransforms",
":IR",
":LLVMCommonConversion",
":LLVMDialect",
":MathDialect",
":Pass",
":ROCDLDialect",
":TransformUtils",
":VectorDialect",
],
)

cc_library(
name = "FuncToEmitC",
srcs = glob([
Expand Down

0 comments on commit 39229f7

Please sign in to comment.