diff options
author | Jorge Gorbe Moya <jgorbe@google.com> | 2025-04-30 14:18:48 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-04-30 16:18:48 -0500 |
commit | 27e8e08b6633a31e6a5512df7a543615db4a1d56 (patch) | |
tree | 2c0d4d4bc4aae11e68e0ce2a36d448c8d828c345 | |
parent | 9b8c96a040ae6b76bb73690acfc5bea85aaa51d4 (diff) | |
download | llvm-27e8e08b6633a31e6a5512df7a543615db4a1d56.zip llvm-27e8e08b6633a31e6a5512df7a543615db4a1d56.tar.gz llvm-27e8e08b6633a31e6a5512df7a543615db4a1d56.tar.bz2 |
[bazel] port d30554b19edc27bc9ca3475b888c1b3e4eda87c4 (#138022)
-rw-r--r-- | utils/bazel/llvm-project-overlay/mlir/BUILD.bazel | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/utils/bazel/llvm-project-overlay/mlir/BUILD.bazel b/utils/bazel/llvm-project-overlay/mlir/BUILD.bazel index 1df9492..1e8be2b 100644 --- a/utils/bazel/llvm-project-overlay/mlir/BUILD.bazel +++ b/utils/bazel/llvm-project-overlay/mlir/BUILD.bazel @@ -3421,17 +3421,32 @@ cc_library( ":Analysis", ":FunctionInterfaces", ":GPUDialect", + ":GPUUtils", ":IR", + ":InliningUtils", ":MemRefDialect", ":Pass", ":TransformUtils", ":VectorDialect", + ":VectorTransforms", ":XeGPUDialect", ":XeGPUPassIncGen", + ":XeGPUUtils", "//llvm:Support", ], ) +cc_library( + name = "XeGPUUtils", + srcs = glob(["lib/Dialect/XeGPU/Utils/*.cpp"]), + hdrs = glob(["include/mlir/Dialect/XeGPU/Utils/*.h"]), + includes = ["include"], + deps = [ + ":IR", + ":XeGPUDialect", + ], +) + td_library( name = "FuncTdFiles", srcs = [ |