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 4393266 commit 71a344eCopy full SHA for 71a344e
.github/workflows/macos.yml
@@ -8,8 +8,9 @@ jobs:
8
strategy:
9
matrix:
10
os:
11
- - 13
12
- 14
+ - 15
13
+ - 15-intel
14
runs-on: macos-${{ matrix.os }}
15
name: 'macos-${{ matrix.os }}'
16
steps:
test/test_xsimd_api.cpp
@@ -484,7 +484,11 @@ struct xsimd_api_float_types_functions
484
void test_asin()
485
{
486
value_type val(1);
487
+#if defined(__APPLE__)
488
+ CHECK_EQ(extract(xsimd::asin(T(val))), doctest::Approx(std::asin(val)));
489
+#else
490
CHECK_EQ(extract(xsimd::asin(T(val))), std::asin(val));
491
+#endif
492
}
493
void test_asinh()
494
0 commit comments