blob: 4c1cf3bf95392f5f164b60a45082fdd2393f55bd [file]
//===----------------------------------------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
///
/// \file
/// This file contains exhaustive tests for single-precision SIMD atanh.
///
//===----------------------------------------------------------------------===//
#include "exhaustive_test.h"
#include "src/__support/CPP/simd.h"
#include "src/math/atanhf.h"
#include "src/mathvec/atanhf.h"
using LlvmLibcAtanhfExhaustiveTest =
LlvmLibcUnaryOpExhaustiveMathvecTest<float, LIBC_NAMESPACE::atanhf,
LIBC_NAMESPACE::atanhf>;
// Tests all possible 32-bit input patterns
TEST_F(LlvmLibcAtanhfExhaustiveTest, EntireRange) { test_full_range_RN(); }