From 33f98abc48b3106cdbe00a734d39f91ffe1ebe11 Mon Sep 17 00:00:00 2001 From: Bram Veenboer Date: Tue, 12 Aug 2025 17:10:55 +0200 Subject: [PATCH] Set tolerance for CUDA tests to 1e-6 --- tests/test_gpu.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/test_gpu.cpp b/tests/test_gpu.cpp index 6e06419..2fbd28f 100644 --- a/tests/test_gpu.cpp +++ b/tests/test_gpu.cpp @@ -3,8 +3,8 @@ #include "test_utils.hpp" -TEST_CASE("sinf") { test_sinf(1e-1f); } +TEST_CASE("sinf") { test_sinf(1e-6f); } -TEST_CASE("cosf") { test_cosf(1e-1f); } +TEST_CASE("cosf") { test_cosf(1e-6f); } -TEST_CASE("sincosf") { test_sincosf(1e-1f); } +TEST_CASE("sincosf") { test_sincosf(1e-6f); }