1commit 3f751cef6b27ec13418a92c5b5f36b22bb5ffd55
2Author: Doron Behar <doron.behar@gmail.com>
3Date: Tue Aug 1 13:24:34 2023 +0300
4
5 Darwin: Disable failing test from test_error_gamma.cpp
6
7diff --git a/test/test_error_gamma.cpp b/test/test_error_gamma.cpp
8index 214cbb5..299e5b8 100644
9--- a/test/test_error_gamma.cpp
10+++ b/test/test_error_gamma.cpp
11@@ -131,25 +131,6 @@ struct error_gamma_test
12 INFO("lgamma");
13 CHECK_EQ(diff, 0);
14 }
15-#if !(XSIMD_WITH_AVX && !XSIMD_WITH_AVX2)
16-
17- // tgamma (negative input)
18- {
19- std::transform(gamma_neg_input.cbegin(), gamma_neg_input.cend(), expected.begin(),
20- [](const value_type& v)
21- { return std::lgamma(v); });
22- batch_type in, out;
23- for (size_t i = 0; i < nb_input; i += size)
24- {
25- detail::load_batch(in, gamma_neg_input, i);
26- out = lgamma(in);
27- detail::store_batch(out, res, i);
28- }
29- size_t diff = detail::get_nb_diff(res, expected);
30- INFO("lgamma (negative input)");
31- CHECK_EQ(diff, 0);
32- }
33-#endif
34 }
35 };
36