
This patch adds a new set of conformance tests for single-precision math functions provided by the LLVM libm for GPUs. The functions included in this set were selected based on the following criteria: - An implementation exists in `libc/src/math/generic` (i.e., it is not just a wrapper around a compiler built-in). - The corresponding LLVM CPU libm implementation is correctly rounded. - The function is listed in Table 65 of the OpenCL C Specification v3.0.19.
58 lines
1.9 KiB
C++
58 lines
1.9 KiB
C++
//===----------------------------------------------------------------------===//
|
||
//
|
||
// 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 the conformance test of the log1pf function.
|
||
///
|
||
//===----------------------------------------------------------------------===//
|
||
|
||
#include "mathtest/CommandLineExtras.hpp"
|
||
#include "mathtest/ExhaustiveGenerator.hpp"
|
||
#include "mathtest/IndexedRange.hpp"
|
||
#include "mathtest/TestConfig.hpp"
|
||
#include "mathtest/TestRunner.hpp"
|
||
|
||
#include "llvm/ADT/StringRef.h"
|
||
|
||
#include <cstdlib>
|
||
#include <limits>
|
||
#include <math.h>
|
||
|
||
namespace mathtest {
|
||
|
||
template <> struct FunctionConfig<log1pf> {
|
||
static constexpr llvm::StringRef Name = "log1pf";
|
||
static constexpr llvm::StringRef KernelName = "log1pfKernel";
|
||
|
||
// Source: The Khronos Group, The OpenCL C Specification v3.0.19, Sec. 7.4,
|
||
// Table 65, Khronos Registry [July 10, 2025].
|
||
static constexpr uint64_t UlpTolerance = 2;
|
||
};
|
||
} // namespace mathtest
|
||
|
||
int main(int argc, const char **argv) {
|
||
llvm::cl::ParseCommandLineOptions(argc, argv,
|
||
"Conformance test of the log1pf function");
|
||
|
||
using namespace mathtest;
|
||
|
||
IndexedRange<float> Range(/*Begin=*/-1.0f,
|
||
/*End=*/std::numeric_limits<float>::infinity(),
|
||
/*Inclusive=*/true);
|
||
ExhaustiveGenerator<float> Generator(Range);
|
||
|
||
const auto Configs = cl::getTestConfigs();
|
||
const llvm::StringRef DeviceBinaryDir = DEVICE_BINARY_DIR;
|
||
const bool IsVerbose = cl::IsVerbose;
|
||
|
||
bool Passed =
|
||
runTests<log1pf>(Generator, Configs, DeviceBinaryDir, IsVerbose);
|
||
|
||
return Passed ? EXIT_SUCCESS : EXIT_FAILURE;
|
||
}
|