forked from OSchip/llvm-project
Update Bazel build for 744146f60b
Updates Bazel build files to match https://github.com/llvm/llvm-project/commit/744146f60b Differential Revision: https://reviews.llvm.org/D104885
This commit is contained in:
parent
dcccb2f594
commit
f0dd6faaec
|
@ -1525,6 +1525,7 @@ cc_library(
|
|||
":SCFDialect",
|
||||
":SparseTensor",
|
||||
":SparseTensorPassIncGen",
|
||||
":SparseTensorUtils",
|
||||
":StandardOps",
|
||||
":StandardOpsTransforms",
|
||||
":TensorDialect",
|
||||
|
@ -1534,6 +1535,17 @@ cc_library(
|
|||
],
|
||||
)
|
||||
|
||||
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 = [
|
||||
|
|
Loading…
Reference in New Issue