1 //===-- Exhaustive test for f16sqrtf --------------------------------------===// 2 // 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4 // See https://llvm.org/LICENSE.txt for license information. 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6 // 7 //===----------------------------------------------------------------------===// 8 9 #include "exhaustive_test.h" 10 #include "src/math/f16sqrtf.h" 11 #include "utils/MPFRWrapper/MPFRUtils.h" 12 13 namespace mpfr = LIBC_NAMESPACE::testing::mpfr; 14 15 using LlvmLibcF16sqrtfExhaustiveTest = 16 LlvmLibcUnaryNarrowingOpExhaustiveMathTest< 17 float16, float, mpfr::Operation::Sqrt, LIBC_NAMESPACE::f16sqrtf>; 18 19 // Range: [0, Inf]; 20 static constexpr uint32_t POS_START = 0x0000'0000U; 21 static constexpr uint32_t POS_STOP = 0x7f80'0000U; 22 TEST_F(LlvmLibcF16sqrtfExhaustiveTest,PostiveRange)23TEST_F(LlvmLibcF16sqrtfExhaustiveTest, PostiveRange) { 24 test_full_range_all_roundings(POS_START, POS_STOP); 25 } 26