[PATCH] D104885: Update Bazel build for 744146f60b
Geoffrey Martin-Noble via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu Jun 24 16:33:22 PDT 2021
GMNGeoffrey created this revision.
Herald added subscribers: dcaballe, cota, teijeong, rdzhabarov, tatianashp, msifontes, jurahul, Kayjukh, grosul1, Joonsoo, liufengdb, aartbik, lucyrfox, mgester, arpith-jacob, antiagainst, shauheen, rriddle, mehdi_amini.
GMNGeoffrey requested review of this revision.
Herald added subscribers: llvm-commits, stephenneuendorffer, nicolasvasilache.
Herald added a project: LLVM.
Repository:
rG LLVM Github Monorepo
https://reviews.llvm.org/D104885
Files:
utils/bazel/llvm-project-overlay/mlir/BUILD.bazel
Index: utils/bazel/llvm-project-overlay/mlir/BUILD.bazel
===================================================================
--- utils/bazel/llvm-project-overlay/mlir/BUILD.bazel
+++ utils/bazel/llvm-project-overlay/mlir/BUILD.bazel
@@ -1525,6 +1525,7 @@
":SCFDialect",
":SparseTensor",
":SparseTensorPassIncGen",
+ ":SparseTensorUtils",
":StandardOps",
":StandardOpsTransforms",
":TensorDialect",
@@ -1534,6 +1535,17 @@
],
)
+cc_library(
+ name = "SparseTensorUtils",
+ srcs = glob(["lib/Dialect/SparseTensor/Utils/*.cpp"]),
+ hdrs = glob(["include/mlir/Dialect/SparseTensor/Utils/*.h"]),
+ includes = ["include"],
+ deps = [
+ ":IR",
+ "//llvm:Support",
+ ],
+)
+
td_library(
name = "StdOpsTdFiles",
srcs = [
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D104885.354395.patch
Type: text/x-patch
Size: 823 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20210624/78010710/attachment.bin>
More information about the llvm-commits
mailing list