aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/compiler/tests/BUILD
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/compiler/tests/BUILD')
-rw-r--r--tensorflow/compiler/tests/BUILD19
1 files changed, 19 insertions, 0 deletions
diff --git a/tensorflow/compiler/tests/BUILD b/tensorflow/compiler/tests/BUILD
index 46b86c53aa..ac2441cea0 100644
--- a/tensorflow/compiler/tests/BUILD
+++ b/tensorflow/compiler/tests/BUILD
@@ -309,6 +309,25 @@ tf_xla_py_test(
)
tf_xla_py_test(
+ name = "eager_test",
+ size = "small",
+ srcs = ["eager_test.py"],
+ disabled_backends = [
+ # TODO(b/78199195) Support XLA CPU devices in eager runtime
+ "cpu",
+ "cpu_ondemand",
+ # TODO(b/78468222) Enable GPU backend
+ "gpu",
+ ],
+ deps = [
+ ":xla_test",
+ "//tensorflow/python:array_ops",
+ "//tensorflow/python:framework_for_generated_wrappers",
+ "//tensorflow/python:platform_test",
+ ],
+)
+
+tf_xla_py_test(
name = "fft_test",
size = "medium",
srcs = ["fft_test.py"],