blob: 33f94adb48455bc5852f78dc537a9b47d145e625 [file] [edit]
//===-- Exhaustive test for exp2f -----------------------------------------===//
//
// 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
//
//===----------------------------------------------------------------------===//
#include "src/__support/math/exp2f_float_eval.h"
#include "src/math/exp2f.h"
#include "test/src/math/exhaustive/exhaustive_test.h"
#include "utils/MPFRWrapper/MPFRUtils.h"
namespace mpfr = LIBC_NAMESPACE::testing::mpfr;
// Range: [0, Inf];
static constexpr uint32_t POS_START = 0x0000'0000U;
static constexpr uint32_t POS_STOP = 0x7f80'0000U;
// Range: [-Inf, 0];
static constexpr uint32_t NEG_START = 0x8000'0000U;
static constexpr uint32_t NEG_STOP = 0xff80'0000U;
using LlvmLibcExp2fExhaustiveTest =
LlvmLibcUnaryOpExhaustiveMathTest<float, mpfr::Operation::Exp2,
LIBC_NAMESPACE::exp2f>;
TEST_F(LlvmLibcExp2fExhaustiveTest, PositiveRange) {
test_full_range_all_roundings(POS_START, POS_STOP);
}
TEST_F(LlvmLibcExp2fExhaustiveTest, NegativeRange) {
test_full_range_all_roundings(NEG_START, NEG_STOP);
}
// Float-eval implementation: tested against the correctly rounded double
// precision version for round-to-nearest with 1 ULP bound.
static float exp2f_float_eval(float x) {
return LIBC_NAMESPACE::math::float_eval::exp2f(x);
}
using LlvmLibcExp2fFloatExhaustiveTest =
LlvmLibcUnaryOpAgainstBaselineExhaustiveMathTest<
float, LIBC_NAMESPACE::exp2f, exp2f_float_eval, 1>;
TEST_F(LlvmLibcExp2fFloatExhaustiveTest, PositiveRange) {
test_full_range(mpfr::RoundingMode::Nearest, POS_START, POS_STOP);
}
TEST_F(LlvmLibcExp2fFloatExhaustiveTest, NegativeRange) {
test_full_range(mpfr::RoundingMode::Nearest, NEG_START, NEG_STOP);
}