blob: f1b23786bfc309b220ab04c8fe7422bec1183da9 [file] [edit]
//===----------------------------------------------------------------------===//
//
// 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 exp.
///
//===----------------------------------------------------------------------===//
#include "exhaustive_test.h"
#include "src/__support/CPP/simd.h"
#include "src/__support/math/expf_double_eval.h"
#include "src/mathvec/expf.h"
using LlvmLibcExpfExhaustiveTest = LlvmLibcUnaryOpExhaustiveMathvecTest<
float, LIBC_NAMESPACE::math::double_eval::expf, LIBC_NAMESPACE::expf>;
// Tests all possible 32-bit input patterns
TEST_F(LlvmLibcExpfExhaustiveTest, EntireRange) { test_full_range_RN(); }