aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/python/kernel_tests
diff options
context:
space:
mode:
authorGravatar Revan Sopher <rsopher@google.com>2018-10-01 23:03:16 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-10-01 23:07:39 -0700
commit721ab82745a113fb8cca4ce2b1f22d1d5ab5d546 (patch)
treea88ef1b363f63f00c20ea8eafc272eff3a558fcb /tensorflow/python/kernel_tests
parent6161d8cc4d66b87ba198cb6a16d83ce317c77eff (diff)
Loosen test bounds.
PiperOrigin-RevId: 215338403
Diffstat (limited to 'tensorflow/python/kernel_tests')
-rw-r--r--tensorflow/python/kernel_tests/depthwise_conv_op_test.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tensorflow/python/kernel_tests/depthwise_conv_op_test.py b/tensorflow/python/kernel_tests/depthwise_conv_op_test.py
index 6d1ead20be..9c02b69180 100644
--- a/tensorflow/python/kernel_tests/depthwise_conv_op_test.py
+++ b/tensorflow/python/kernel_tests/depthwise_conv_op_test.py
@@ -131,8 +131,8 @@ class DepthwiseConv2DTest(test.TestCase):
with self.session(graph=graph, use_gpu=use_gpu) as sess:
tolerance = {
dtypes.float16: 4e-2,
- dtypes.float32: 1e-8,
- dtypes.float64: 1e-13,
+ dtypes.float32: 1e-7,
+ dtypes.float64: 1e-12,
}[data_type]
t1 = constant_op.constant(x1, shape=tensor_in_sizes, dtype=data_type)