From 30d28b14375035bbf7e063084e210e7951c1fbed Mon Sep 17 00:00:00 2001
From: Andreas Kloeckner <inform@tiker.net>
Date: Mon, 21 Jan 2013 19:26:21 -0500
Subject: [PATCH] Loosen cosh bound for AMD CPU.

---
 test/test_clmath.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/test/test_clmath.py b/test/test_clmath.py
index 19b9144b..6ab66380 100644
--- a/test/test_clmath.py
+++ b/test/test_clmath.py
@@ -122,8 +122,8 @@ if have_cl():
             (-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)
-    test_cosh = make_unary_function_test("cosh", (-3, 3), 1e-6, use_complex=2e-3)
+    test_sinh = make_unary_function_test("sinh", (-3, 3), 2e-6, use_complex=2e-3)
+    test_cosh = make_unary_function_test("cosh", (-3, 3), 2e-6, use_complex=2e-3)
     test_tanh = make_unary_function_test("tanh", (-3, 3), 2e-6, use_complex=True)
 
 
-- 
GitLab