[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:38:43 PDT 2021
This revision was not accepted when it landed; it landed in state "Needs Review".
This revision was landed with ongoing or failed builds.
This revision was automatically updated to reflect the committed changes.
Closed by commit rGf0dd6faaecc8: Update Bazel build for 744146f60b (authored by GMNGeoffrey).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D104885/new/
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.354396.patch
Type: text/x-patch
Size: 823 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20210624/3315b736/attachment-0001.bin>
More information about the llvm-commits
mailing list