Skip to content

Commit

Permalink
change atol,rtol values
Browse files Browse the repository at this point in the history
  • Loading branch information
aonotas committed Aug 25, 2017
1 parent c8dfa97 commit 2f12358
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -44,7 +44,7 @@ def check_backward_gpu(self, op):

def check_double_backward(self, op, x_data, y_grad, y_grad_grad):
gradient_check.check_double_backward(
op, x_data, y_grad, y_grad_grad, dtype='d')
op, x_data, y_grad, y_grad_grad, atol=1e-4, rtol=1e-3, dtype='d')

def check_double_backward_cpu(self, op):
self.check_double_backward(op, self.x, self.gy, self.ggy)
Expand Down

0 comments on commit 2f12358

Please sign in to comment.