aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/compiler
diff options
context:
space:
mode:
authorGravatar Yanan Cao <ycao@google.com>2018-09-22 00:34:17 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-09-22 00:37:56 -0700
commit6bfb26e1a3dc6a381829e6e8759cf2d441260738 (patch)
treebbcf27e29b387203dde56c8568104d694fa5b4ea /tensorflow/contrib/compiler
parent7832d2c3a84c79c0dc76a7ed1f6560707a294f22 (diff)
Add back xla_test, which was deleted by mistake earlier
PiperOrigin-RevId: 214094266
Diffstat (limited to 'tensorflow/contrib/compiler')
-rw-r--r--tensorflow/contrib/compiler/BUILD19
1 files changed, 19 insertions, 0 deletions
diff --git a/tensorflow/contrib/compiler/BUILD b/tensorflow/contrib/compiler/BUILD
index 9c7fbee838..67918316b2 100644
--- a/tensorflow/contrib/compiler/BUILD
+++ b/tensorflow/contrib/compiler/BUILD
@@ -65,3 +65,22 @@ py_library(
"//tensorflow/python/estimator:model_fn",
],
)
+
+tf_py_test(
+ name = "xla_test",
+ srcs = ["xla_test.py"],
+ additional_deps = [
+ ":xla",
+ "@six_archive//:six",
+ "//tensorflow/python:constant_op",
+ "//tensorflow/python:control_flow_ops",
+ "//tensorflow/python:control_flow_util",
+ "//tensorflow/python:math_ops",
+ "//tensorflow/python:platform",
+ "//tensorflow/python:state_ops",
+ "//tensorflow/python:summary",
+ "//tensorflow/python:training",
+ "//tensorflow/python:variable_scope",
+ ],
+ tags = ["no_pip"],
+)