Skip to content

Commit fd741b5

Browse files
committed
TEST: Make err bound less stricter for elemental_02
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.
1 parent 1c6eaf8 commit fd741b5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

integration_tests/elemental_02.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ def elemental_tan32():
3939
i: i32
4040
j: i32
4141
eps: f32
42-
eps = f32(1e-6)
42+
eps = f32(1e-5)
4343

4444
for i in range(25):
4545
theta1d[i] = f32(i + 1)

0 commit comments

Comments
 (0)