aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/python/kernel_tests
diff options
context:
space:
mode:
authorGravatar Cao Zongyan <zongyan.cao@alibaba-inc.com>2018-09-25 09:59:17 +0800
committerGravatar Cao Zongyan <zongyan.cao@alibaba-inc.com>2018-09-25 09:59:17 +0800
commitf0886f7269de900d226455d4831722f6fc94a71b (patch)
treeac9a860a56ba5b686eb25e8f797631d06edff1e1 /tensorflow/python/kernel_tests
parent5e9a9547f907599f6954fc5e28b7a78acf3b54eb (diff)
Fix build dependencies in tensorflow/cc/BUILD.
Diffstat (limited to 'tensorflow/python/kernel_tests')
-rw-r--r--tensorflow/python/kernel_tests/relu_op_test.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tensorflow/python/kernel_tests/relu_op_test.py b/tensorflow/python/kernel_tests/relu_op_test.py
index 86d9c90e83..d97a1613b9 100644
--- a/tensorflow/python/kernel_tests/relu_op_test.py
+++ b/tensorflow/python/kernel_tests/relu_op_test.py
@@ -351,7 +351,7 @@ class LeakyReluTest(test.TestCase):
self.assertLess(err, 1e-10)
def testGradGradFloat32(self):
- with compat.forward_compatibility_horizon(2018, 10, 2):
+ with compat.forward_compatibility_horizon(2018, 11, 2):
with self.test_session():
x = constant_op.constant(
[-0.9, -0.7, -0.5, -0.3, -0.1, 0.1, 0.3, 0.5, 0.7, 0.9],
@@ -369,7 +369,7 @@ class LeakyReluTest(test.TestCase):
self.assertLess(err, 1e-4)
def testGradGradFloat64(self):
- with compat.forward_compatibility_horizon(2018, 10, 2):
+ with compat.forward_compatibility_horizon(2018, 11, 2):
with self.test_session():
x = constant_op.constant(
[-0.9, -0.7, -0.5, -0.3, -0.1, 0.1, 0.3, 0.5, 0.7, 0.9],