Set tolerance for CUDA tests to 1e-6

This commit is contained in:
Bram Veenboer
2025-08-12 17:10:55 +02:00
parent c7ab463b43
commit 33f98abc48

View File

@@ -3,8 +3,8 @@
#include "test_utils.hpp"
TEST_CASE("sinf") { test_sinf<GPUBackend>(1e-1f); }
TEST_CASE("sinf") { test_sinf<GPUBackend>(1e-6f); }
TEST_CASE("cosf") { test_cosf<GPUBackend>(1e-1f); }
TEST_CASE("cosf") { test_cosf<GPUBackend>(1e-6f); }
TEST_CASE("sincosf") { test_sincosf<GPUBackend>(1e-1f); }
TEST_CASE("sincosf") { test_sincosf<GPUBackend>(1e-6f); }