//===----------------------------------------------------------------------===// // // 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 // //===----------------------------------------------------------------------===// #ifndef TEST_SUPPORT_COUNTING_PREDICATES_H #define TEST_SUPPORT_COUNTING_PREDICATES_H #include #include #include "test_macros.h" template struct unary_counting_predicate { public: using argument_type = Arg; using result_type = bool; TEST_FUNC constexpr unary_counting_predicate(Predicate p) : p_(p) , count_(0) {} TEST_FUNC constexpr bool operator()(const Arg& a) { ++count_; return p_(a); } TEST_FUNC constexpr size_t count() const { return count_; } TEST_FUNC constexpr void reset() { count_ = 0; } private: Predicate p_; size_t count_; }; template struct binary_counting_predicate { public: using first_argument_type = Arg1; using second_argument_type = Arg2; using result_type = bool; TEST_FUNC constexpr binary_counting_predicate(Predicate p) : p_(p) , count_(0) {} TEST_FUNC constexpr bool operator()(const Arg1& a1, const Arg2& a2) { ++count_; return p_(a1, a2); } TEST_FUNC constexpr size_t count() const { return count_; } TEST_FUNC constexpr void reset() { count_ = 0; } private: Predicate p_; size_t count_; }; template class counting_predicate { Predicate pred_; int* count_ = nullptr; public: constexpr counting_predicate() = default; TEST_FUNC constexpr counting_predicate(Predicate pred, int& count) : pred_(cuda::std::move(pred)) , count_(&count) {} template TEST_FUNC constexpr auto operator()(Args&&... args) -> decltype(pred_(cuda::std::forward(args)...)) { ++(*count_); return pred_(cuda::std::forward(args)...); } template TEST_FUNC constexpr auto operator()(Args&&... args) const -> decltype(pred_(cuda::std::forward(args)...)) { ++(*count_); return pred_(cuda::std::forward(args)...); } }; template counting_predicate(Predicate pred, int& count) -> counting_predicate; #endif // TEST_SUPPORT_COUNTING_PREDICATES_H