We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dcccb2f commit f0dd6faCopy full SHA for f0dd6fa
utils/bazel/llvm-project-overlay/mlir/BUILD.bazel
@@ -1525,6 +1525,7 @@ cc_library(
1525
":SCFDialect",
1526
":SparseTensor",
1527
":SparseTensorPassIncGen",
1528
+ ":SparseTensorUtils",
1529
":StandardOps",
1530
":StandardOpsTransforms",
1531
":TensorDialect",
@@ -1534,6 +1535,17 @@ cc_library(
1534
1535
],
1536
)
1537
1538
+cc_library(
1539
+ name = "SparseTensorUtils",
1540
+ srcs = glob(["lib/Dialect/SparseTensor/Utils/*.cpp"]),
1541
+ hdrs = glob(["include/mlir/Dialect/SparseTensor/Utils/*.h"]),
1542
+ includes = ["include"],
1543
+ deps = [
1544
+ ":IR",
1545
+ "//llvm:Support",
1546
+ ],
1547
+)
1548
+
1549
td_library(
1550
name = "StdOpsTdFiles",
1551
srcs = [
0 commit comments