aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/compiler/tests/xla_device_test.py
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/compiler/tests/xla_device_test.py')
-rw-r--r--tensorflow/compiler/tests/xla_device_test.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/tensorflow/compiler/tests/xla_device_test.py b/tensorflow/compiler/tests/xla_device_test.py
index b707bd0963..f0b010fa67 100644
--- a/tensorflow/compiler/tests/xla_device_test.py
+++ b/tensorflow/compiler/tests/xla_device_test.py
@@ -23,6 +23,7 @@ import numpy as np
from tensorflow.compiler.tests.xla_test import XLATestCase
from tensorflow.python.framework import ops
from tensorflow.python.ops import array_ops
+from tensorflow.python.ops import gen_control_flow_ops
from tensorflow.python.platform import test
@@ -46,6 +47,12 @@ class XlaDeviceTest(XLATestCase):
result = sess.run(z, {x: inputs})
self.assertAllCloseAccordingToType(result, inputs + inputs)
+ def testControlTrigger(self):
+ with self.test_session() as sess:
+ with self.test_scope():
+ x = gen_control_flow_ops.control_trigger()
+ sess.run(x)
+
if __name__ == "__main__":
test.main()