Skip to content

Commit

Permalink
Merge pull request #8133 from niboshi/test-tol-imcol
Browse files Browse the repository at this point in the history
Relax tolerance of im2col test
  • Loading branch information
asi1024 committed Sep 17, 2019
2 parents 4ea63a4 + 2ba4afa commit bf8ce9d
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -118,7 +118,7 @@ def setUp(self):

self.check_backward_options = {'atol': 5e-4, 'rtol': 5e-3}
if self.dtype is numpy.float16:
self.check_backward_options.update({'atol': 1e-3, 'rtol': 1e-2})
self.check_backward_options.update({'atol': 2e-3, 'rtol': 1e-2})

self.check_double_backward_options = {'atol': 5e-4, 'rtol': 5e-3}
if self.dtype is numpy.float16:
Expand Down

0 comments on commit bf8ce9d

Please sign in to comment.