We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 23c6be1 commit 5165cc0Copy full SHA for 5165cc0
onedal/linear_model/tests/test_linear_regression.py
@@ -77,7 +77,7 @@ def test_full_results(queue, dtype):
77
model.fit(X, y, queue=queue)
78
79
if queue.sycl_device.is_gpu:
80
- tol = 2.5e-3 if model.coef_.dtype == np.float32 else 1e-5
+ tol = 5e-3 if model.coef_.dtype == np.float32 else 1e-5
81
else:
82
tol = 2e-3 if model.coef_.dtype == np.float32 else 1e-5
83
assert_allclose(coef, model.coef_.T, rtol=tol)
0 commit comments