Skip to content

Commit

Permalink
TEST: Make err bound less stricter for elemental_02
Browse files Browse the repository at this point in the history
Previously, the test was using float64 (which is the default value for dtype).
After providing the value of dtype=float32 the test seems to fail sometimes.
Therefore, making the error bound less stricter.
  • Loading branch information
Shaikh-Ubaid committed Aug 28, 2023
1 parent 976905f commit 289e6e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion integration_tests/elemental_02.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def elemental_tan32():
i: i32
j: i32
eps: f32
eps = f32(1e-6)
eps = f32(1e-4)

for i in range(25):
theta1d[i] = f32(i + 1)
Expand Down

0 comments on commit 289e6e2

Please sign in to comment.