This PR introduces the initial version of a C++ framework for the conformance testing of GPU math library functions, building upon the skeleton provided in #146391. The main goal of this framework is to systematically measure the accuracy of math functions in the GPU libc, verifying correctness or at least conformance to standards like OpenCL via exhaustive or random accuracy tests.
34 lines
1.0 KiB
C++
34 lines
1.0 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 definition of the InputGenerator class, which defines
|
|
/// the abstract interface for classes that generate math test inputs.
|
|
///
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef MATHTEST_INPUTGENERATOR_HPP
|
|
#define MATHTEST_INPUTGENERATOR_HPP
|
|
|
|
#include "llvm/ADT/ArrayRef.h"
|
|
|
|
namespace mathtest {
|
|
|
|
template <typename... InTypes> class InputGenerator {
|
|
public:
|
|
virtual ~InputGenerator() noexcept = default;
|
|
|
|
virtual void reset() noexcept = 0;
|
|
|
|
[[nodiscard]] virtual size_t
|
|
fill(llvm::MutableArrayRef<InTypes>... Buffers) noexcept = 0;
|
|
};
|
|
} // namespace mathtest
|
|
|
|
#endif // MATHTEST_INPUTGENERATOR_HPP
|