From d9e284e32bfff5e67683e5a3343f1a11c102fc81 Mon Sep 17 00:00:00 2001 From: SadiinsoSnowfall Date: Fri, 22 Nov 2024 12:21:21 +0100 Subject: [PATCH] fixed digamma unit test --- test/unit/module/special/digamma.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/unit/module/special/digamma.cpp b/test/unit/module/special/digamma.cpp index 2310bc87bc..10cc81c361 100644 --- a/test/unit/module/special/digamma.cpp +++ b/test/unit/module/special/digamma.cpp @@ -67,7 +67,7 @@ TTS_CASE_TPL("Check behavior of digamma on wide", eve::test::simd::ieee_reals) TTS_CASE_WITH("Check behavior of digamma on wide", eve::test::simd::ieee_reals, tts::generate(tts::randoms(0.4, 4.0))) -(T const& a0) { TTS_ULP_EQUAL(eve::digamma(a0), T(map(eve::digamma, a0)), 2); }; +(T const& a0) { TTS_ULP_EQUAL(eve::digamma(a0), T(tts::map(eve::digamma, a0)), 2); }; //==================================================================================================