aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMogball <jeffniu22@gmail.com>2021-12-22 19:26:23 +0000
committerMogball <jeffniu22@gmail.com>2021-12-22 19:46:37 +0000
commitad761f0c3961a09dffd3e7eaea82cd331db9184f (patch)
tree198f5451088103551b04b1282b2130643bf8254e
parent79abf89303757cbd5a273525a4b922b3fefd2a88 (diff)
downloadllvm-ad761f0c3961a09dffd3e7eaea82cd331db9184f.zip
llvm-ad761f0c3961a09dffd3e7eaea82cd331db9184f.tar.gz
llvm-ad761f0c3961a09dffd3e7eaea82cd331db9184f.tar.bz2
[mlir] Update BUILD.bazel to include `scf_tests`
-rw-r--r--utils/bazel/llvm-project-overlay/mlir/unittests/BUILD.bazel15
1 files changed, 15 insertions, 0 deletions
diff --git a/utils/bazel/llvm-project-overlay/mlir/unittests/BUILD.bazel b/utils/bazel/llvm-project-overlay/mlir/unittests/BUILD.bazel
index 095841a..ff22e88 100644
--- a/utils/bazel/llvm-project-overlay/mlir/unittests/BUILD.bazel
+++ b/utils/bazel/llvm-project-overlay/mlir/unittests/BUILD.bazel
@@ -105,6 +105,21 @@ cc_test(
)
cc_test(
+ name = "scf_tests",
+ size = "small",
+ srcs = glob([
+ "Dialect/SCF/*.cpp",
+ "Dialect/SCF/*.h",
+ ]),
+ deps = [
+ "//llvm:gtest_main",
+ "//mlir:Parser",
+ "//mlir:SCFDialect",
+ "//mlir:StandardOps",
+ ],
+)
+
+cc_test(
name = "sparse_tensor_tests",
size = "small",
srcs = glob([