[PATCH] D118330: [mlir][Bazel] Add TestMemRef target.
Adrian Kuegel via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu Jan 27 00:45:01 PST 2022
akuegel created this revision.
Herald added subscribers: sdasgup3, wenzhicui, wrengr, Chia-hungDuan, dcaballe, cota, teijeong, rdzhabarov, tatianashp, msifontes, jurahul, Kayjukh, grosul1, Joonsoo, liufengdb, aartbik, lucyrfox, mgester, arpith-jacob, antiagainst, shauheen, rriddle, mehdi_amini.
akuegel requested review of this revision.
Herald added subscribers: llvm-commits, stephenneuendorffer, nicolasvasilache.
Herald added a project: LLVM.
Needed after D118285 <https://reviews.llvm.org/D118285>
Repository:
rG LLVM Github Monorepo
https://reviews.llvm.org/D118330
Files:
utils/bazel/llvm-project-overlay/mlir/test/BUILD.bazel
Index: utils/bazel/llvm-project-overlay/mlir/test/BUILD.bazel
===================================================================
--- utils/bazel/llvm-project-overlay/mlir/test/BUILD.bazel
+++ utils/bazel/llvm-project-overlay/mlir/test/BUILD.bazel
@@ -430,6 +430,20 @@
],
)
+cc_library(
+ name = "TestMemRef",
+ srcs = glob(["lib/Dialect/MemRef/*.cpp"]),
+ defines = ["MLIR_CUDA_CONVERSIONS_ENABLED"],
+ includes = ["lib/Dialect/Test"],
+ deps = [
+ ":TestDialect",
+ "//mlir:Affine",
+ "//mlir:MemRefTransforms",
+ "//mlir:Pass",
+ "//mlir:Transforms",
+ ],
+)
+
cc_library(
name = "TestSCF",
srcs = glob(["lib/Dialect/SCF/*.cpp"]),
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D118330.403535.patch
Type: text/x-patch
Size: 706 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20220127/2283edcb/attachment.bin>
More information about the llvm-commits
mailing list