]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/experimental/simd/tests/trigonometric.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / experimental / simd / tests / trigonometric.cc
CommitLineData
7adcbafe 1// Copyright (C) 2020-2022 Free Software Foundation, Inc.
02e32295
MK
2//
3// This file is part of the GNU ISO C++ Library. This library is free
4// software; you can redistribute it and/or modify it under the
5// terms of the GNU General Public License as published by the
6// Free Software Foundation; either version 3, or (at your option)
7// any later version.
8//
9// This library is distributed in the hope that it will be useful,
10// but WITHOUT ANY WARRANTY; without even the implied warranty of
11// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12// GNU General Public License for more details.
13//
14// You should have received a copy of the GNU General Public License along
15// with this library; see the file COPYING3. If not see
16// <http://www.gnu.org/licenses/>.
17
aa89c53c
MK
18// only: float|double|ldouble * * *
19// expensive: * [1-9] * *
02e32295
MK
20#include "bits/verify.h"
21#include "bits/metahelpers.h"
22#include "bits/test_values.h"
23
24template <typename V>
25 void
26 test()
27 {
28 vir::test::setFuzzyness<float>(1);
29 vir::test::setFuzzyness<double>(1);
30
31 using T = typename V::value_type;
32 test_values<V>(
33 {
34#ifdef __STDC_IEC_559__
35 std::__quiet_NaN_v<T>, std::__infinity_v<T>, -std::__infinity_v<T>, -0.,
36 std::__denorm_min_v<T>, std::__norm_min_v<T> / 3,
37#endif
38 +0., std::__norm_min_v<T>, std::__finite_max_v<T>},
39 {10000}, MAKE_TESTER(acos), MAKE_TESTER(tan), MAKE_TESTER(acosh),
40 MAKE_TESTER(asinh), MAKE_TESTER(atanh), MAKE_TESTER(cosh),
41 MAKE_TESTER(sinh), MAKE_TESTER(tanh));
42 }