Skip to content

Commit

Permalink
fix flakes
Browse files Browse the repository at this point in the history
  • Loading branch information
rsokl committed Sep 8, 2024
1 parent 4d42c68 commit 99b80d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/tensor_ops/test_sequence_ops.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ def test_sequential_arithmetic(
f = mygrad_func(*tensors)
f1 = true_func(tensors_copy)

assert_allclose(f.data, f1.data, rtol=1e-05)
assert_allclose(f.data, f1.data, rtol=1e-05, atol=1e-05)

f.sum().backward()
f1.sum().backward()
Expand Down

0 comments on commit 99b80d5

Please sign in to comment.