Skip to content
Snippets Groups Projects
Commit e768b595 authored by Andreas Klöckner's avatar Andreas Klöckner
Browse files

Use slightly looser tan tolerance for 12.4 AMD Cypress drivers.

parent c31944d1
No related branches found
No related tags found
No related merge requests found
......@@ -119,7 +119,7 @@ if have_cl():
test_asin = make_unary_function_test("asin", (-0.9, 0.9), 5e-7)
test_acos = make_unary_function_test("acos", (-0.9, 0.9), 5e-7)
test_tan = make_unary_function_test("tan",
(-math.pi/2 + 0.1, math.pi/2 - 0.1), 1e-5, use_complex=True)
(-math.pi/2 + 0.1, math.pi/2 - 0.1), 2e-5, use_complex=True)
test_atan = make_unary_function_test("atan", (-10, 10), 2e-7)
test_sinh = make_unary_function_test("sinh", (-3, 3), 1e-6, use_complex=2e-3)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment