//===----------------------------------------------------------------------===// // // 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 // //===----------------------------------------------------------------------===// // UNSUPPORTED: c++03, c++11, c++14 // UNSUPPORTED: libcpp-has-no-incomplete-pstl // // template // T transform_reduce(ExecutionPolicy&& exec, // ForwardIterator1 first1, ForwardIterator1 last1, // ForwardIterator2 first2, // T init); // // template // T transform_reduce(ExecutionPolicy&& exec, // ForwardIterator1 first1, ForwardIterator1 last1, // ForwardIterator2 first2, // T init, // BinaryOperation1 binary_op1, // BinaryOperation2 binary_op2); #include #include #include "MoveOnly.h" #include "test_execution_policies.h" #include "test_iterators.h" #include "test_macros.h" #include "type_algorithms.h" template struct constructible_from { T v_; explicit constructible_from(T v) : v_(v) {} friend constructible_from operator+(constructible_from lhs, constructible_from rhs) { return constructible_from{lhs.get() + rhs.get()}; } T get() const { return v_; } }; template struct Test { template void operator()(Policy&& policy) { for (const auto& pair : {std::pair{0, 34}, {1, 40}, {2, 48}, {100, 10534}, {350, 124284}}) { auto [size, expected] = pair; std::vector a(size); std::vector b(size); for (int i = 0; i != size; ++i) { a[i] = i + 1; b[i] = i + 4; } decltype(auto) ret = std::transform_reduce( policy, Iter1(std::data(a)), Iter1(std::data(a) + std::size(a)), Iter2(std::data(b)), ValueT(34), std::plus{}, [](ValueT i, ValueT j) { return i + j + 1; }); static_assert(std::is_same_v); assert(ret == expected); } for (const auto& pair : {std::pair{0, 34}, {1, 30}, {2, 24}, {100, 313134}, {350, 14045884}}) { auto [size, expected] = pair; std::vector a(size); std::vector b(size); for (int i = 0; i != size; ++i) { a[i] = i + 1; b[i] = i - 4; } decltype(auto) ret = std::transform_reduce( policy, Iter1(std::data(a)), Iter1(std::data(a) + std::size(a)), Iter2(std::data(b)), 34); static_assert(std::is_same_v); assert(ret == expected); } { int a[] = {1, 2, 3, 4, 5, 6, 7, 8}; int b[] = {8, 7, 6, 5, 4, 3, 2, 1}; auto ret = std::transform_reduce( policy, Iter1(std::begin(a)), Iter1(std::end(a)), Iter2(std::begin(b)), constructible_from{0}, std::plus{}, [](int i, int j) { return constructible_from{i + j}; }); assert(ret.get() == 72); } } }; int main(int, char**) { types::for_each( types::forward_iterator_list{}, types::apply_type_identity{[](auto v) { using Iter2 = typename decltype(v)::type; types::for_each( types::forward_iterator_list{}, types::apply_type_identity{[](auto v2) { using Iter1 = typename decltype(v2)::type; types::for_each( types::type_list{}, TestIteratorWithPolicies::template apply>{}); }}); }}); return 0; }