aboutsummaryrefslogtreecommitdiff
path: root/utils/bazel
diff options
context:
space:
mode:
authorBenjamin Kramer <benny.kra@googlemail.com>2025-10-18 12:02:51 +0200
committerBenjamin Kramer <benny.kra@googlemail.com>2025-10-18 12:02:51 +0200
commitc491c6e80945258750e7f4e3af4e69ae97353586 (patch)
treec32b1e1fc57d375811166b35b37672b042372bbd /utils/bazel
parent0f68dc6cffd93954188f73bff8aced93aab63687 (diff)
downloadllvm-main.zip
llvm-main.tar.gz
llvm-main.tar.bz2
[bazel] Port 89d1143a90b7bf9b9ebabab1d8b7ed519c6ec5ebHEADmain
Diffstat (limited to 'utils/bazel')
-rw-r--r--utils/bazel/llvm-project-overlay/mlir/BUILD.bazel9
1 files changed, 8 insertions, 1 deletions
diff --git a/utils/bazel/llvm-project-overlay/mlir/BUILD.bazel b/utils/bazel/llvm-project-overlay/mlir/BUILD.bazel
index 086e571..a4724b9 100644
--- a/utils/bazel/llvm-project-overlay/mlir/BUILD.bazel
+++ b/utils/bazel/llvm-project-overlay/mlir/BUILD.bazel
@@ -5512,12 +5512,13 @@ gentbl_cc_library(
cc_library(
name = "GPUPipelines",
- srcs = ["lib/Dialect/GPU/Pipelines/GPUToNVVMPipeline.cpp"],
+ srcs = glob(["lib/Dialect/GPU/Pipelines/*.cpp"]),
hdrs = ["include/mlir/Dialect/GPU/Pipelines/Passes.h"],
includes = ["include"],
deps = [
":AffineToStandard",
":ArithToLLVM",
+ ":ConversionPasses",
":FuncDialect",
":FuncToLLVM",
":GPUDialect",
@@ -5526,8 +5527,10 @@ cc_library(
":GPUTransforms",
":IndexToLLVM",
":LLVMDialect",
+ ":LLVMIRTransforms",
":LinalgTransforms",
":MathToLLVM",
+ ":MathToXeVM",
":MemRefToLLVM",
":MemRefTransforms",
":NVGPUToNVVM",
@@ -5538,6 +5541,10 @@ cc_library(
":Transforms",
":VectorToLLVM",
":VectorToSCF",
+ ":XeGPUToXeVM",
+ ":XeGPUTransforms",
+ ":XeVMTarget",
+ ":XeVMToLLVM",
],
)