Skip to content

Commit

Permalink
[Fix] Set higher err tolerance for conv3d backprop filter unit test (…
Browse files Browse the repository at this point in the history
…#2388)
  • Loading branch information
lingzhi98 authored Sep 6, 2023
1 parent 2198162 commit 4673c67
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ def testGradient(self):
[in_val, out_backprop_val], [in_shape, out_backprop_shape],
output, filter_shape)
print("conv3d_backprop_filter gradient err = %g " % err)
err_tolerance = 1e-3
err_tolerance = 2e-3
self.assertLess(err, err_tolerance)

if __name__ == "__main__":
Expand Down

0 comments on commit 4673c67

Please sign in to comment.