[Mlir-commits] [llvm] [mlir] [mlir][bazel] Add bazel build support for https://github.com/llvm/llvm-project/commit/2b2ce50fe843b5b550806a0ab15b06cd5c405d48 (PR #94126)
llvmlistbot at llvm.org
llvmlistbot at llvm.org
Sat Jun 1 14:26:21 PDT 2024
https://github.com/MaheshRavishankar created https://github.com/llvm/llvm-project/pull/94126
Also drop errant header include from `Linalg` dialect into `Dialect/SCF/Transforms/TileUsingInterface.cpp`
>From 9fb374f489830f76a0c0454e02ec581824175798 Mon Sep 17 00:00:00 2001
From: MaheshRavishankar <mahesh.ravishankar at gmail.com>
Date: Sat, 1 Jun 2024 14:23:23 -0700
Subject: [PATCH] [mlir][bazel] Add bazel build support for
https://github.com/llvm/llvm-project/commit/2b2ce50fe843b5b550806a0ab15b06cd5c405d48
Also drop errant header include from `Linalg` dialect into `Dialect/SCF/Transforms/TileUsingInterface.cpp`
---
mlir/lib/Dialect/SCF/Transforms/TileUsingInterface.cpp | 1 -
utils/bazel/llvm-project-overlay/mlir/BUILD.bazel | 2 ++
2 files changed, 2 insertions(+), 1 deletion(-)
diff --git a/mlir/lib/Dialect/SCF/Transforms/TileUsingInterface.cpp b/mlir/lib/Dialect/SCF/Transforms/TileUsingInterface.cpp
index a54edf5e72e78..f3d6b7a530117 100644
--- a/mlir/lib/Dialect/SCF/Transforms/TileUsingInterface.cpp
+++ b/mlir/lib/Dialect/SCF/Transforms/TileUsingInterface.cpp
@@ -16,7 +16,6 @@
#include "mlir/Dialect/Arith/IR/Arith.h"
#include "mlir/Dialect/Arith/Utils/Utils.h"
#include "mlir/Dialect/Func/IR/FuncOps.h"
-#include "mlir/Dialect/Linalg/IR/Linalg.h"
#include "mlir/Dialect/SCF/Utils/Utils.h"
#include "mlir/Dialect/Tensor/IR/Tensor.h"
#include "mlir/Dialect/Utils/IndexingUtils.h"
diff --git a/utils/bazel/llvm-project-overlay/mlir/BUILD.bazel b/utils/bazel/llvm-project-overlay/mlir/BUILD.bazel
index ded718ae9950b..dcd8125f34b9f 100644
--- a/utils/bazel/llvm-project-overlay/mlir/BUILD.bazel
+++ b/utils/bazel/llvm-project-overlay/mlir/BUILD.bazel
@@ -2831,6 +2831,7 @@ cc_library(
":TensorTransforms",
":TilingInterface",
":TransformUtils",
+ ":ViewLikeInterface",
"//llvm:Support",
],
)
@@ -7525,6 +7526,7 @@ cc_library(
":TilingInterface",
":TransformUtils",
":ValueBoundsOpInterface",
+ ":ViewLikeInterface",
":VectorDialect",
":VectorUtils",
"//llvm:Support",
More information about the Mlir-commits
mailing list