34 lines
910 B
Python
34 lines
910 B
Python
load("//tensorflow:tensorflow.default.bzl", "filegroup")
|
|
load("//tensorflow/compiler/mlir:glob_lit_test.bzl", "glob_lit_tests")
|
|
|
|
package(
|
|
# copybara:uncomment default_applicable_licenses = ["//tensorflow:license"],
|
|
licenses = ["notice"],
|
|
)
|
|
|
|
glob_lit_tests(
|
|
name = "all_tests",
|
|
data = [":test_utilities"],
|
|
driver = "@llvm-project//mlir:run_lit.sh",
|
|
size_override = {
|
|
"legalize-tf-binary-elementwise.mlir": "medium",
|
|
"legalize-tf-include-tf2xla-fallback.mlir": "medium",
|
|
"legalize-tf-prefer-tf2xla.mlir": "medium",
|
|
"legalize-tf.mlir": "medium",
|
|
},
|
|
test_file_exts = [
|
|
"mlir",
|
|
"hlotxt",
|
|
],
|
|
)
|
|
|
|
# Bundle together all of the test utilities that are used by tests.
|
|
filegroup(
|
|
name = "test_utilities",
|
|
testonly = True,
|
|
data = [
|
|
"//tensorflow/compiler/mlir:tf-opt",
|
|
"@llvm-project//llvm:FileCheck",
|
|
],
|
|
)
|