[AMDGPU] Add True16 register classes.
[llvm-project.git] / pstl / test / std / algorithms / alg.nonmodifying / find_end.pass.cpp
blobed0185f7b0c5e0c277c0f6f383e3543bf9cb5c18
1 // -*- C++ -*-
2 //===-- find_end.pass.cpp -------------------------------------------------===//
3 //
4 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
5 // See https://llvm.org/LICENSE.txt for license information.
6 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //
8 //===----------------------------------------------------------------------===//
10 // UNSUPPORTED: c++03, c++11, c++14
12 #include "support/pstl_test_config.h"
14 #include <execution>
15 #include <algorithm>
17 #include "support/utils.h"
19 using namespace TestUtils;
21 struct test_one_policy
23 #if defined(_PSTL_ICC_17_VC141_TEST_SIMD_LAMBDA_DEBUG_32_BROKEN) || \
24 defined(_PSTL_ICC_16_VC14_TEST_SIMD_LAMBDA_DEBUG_32_BROKEN) //dummy specialization by policy type, in case of broken configuration
25 template <typename Iterator1, typename Iterator2, typename Predicate>
26 void
27 operator()(pstl::execution::unsequenced_policy, Iterator1 b, Iterator1 e, Iterator2 bsub, Iterator2 esub,
28 Predicate pred)
31 template <typename Iterator1, typename Iterator2, typename Predicate>
32 void
33 operator()(pstl::execution::parallel_unsequenced_policy, Iterator1 b, Iterator1 e, Iterator2 bsub, Iterator2 esub,
34 Predicate pred)
37 #endif
39 template <typename ExecutionPolicy, typename Iterator1, typename Iterator2, typename Predicate>
40 void
41 operator()(ExecutionPolicy&& exec, Iterator1 b, Iterator1 e, Iterator2 bsub, Iterator2 esub, Predicate pred)
43 using namespace std;
44 // For find_end
46 auto expected = find_end(b, e, bsub, esub, pred);
47 auto actual = find_end(exec, b, e, bsub, esub);
48 EXPECT_TRUE(actual == expected, "wrong return result from find_end");
50 actual = find_end(exec, b, e, bsub, esub, pred);
51 EXPECT_TRUE(actual == expected, "wrong return result from find_end with a predicate");
54 // For search
56 auto expected = search(b, e, bsub, esub, pred);
57 auto actual = search(exec, b, e, bsub, esub);
58 EXPECT_TRUE(actual == expected, "wrong return result from search");
60 actual = search(exec, b, e, bsub, esub, pred);
61 EXPECT_TRUE(actual == expected, "wrong return result from search with a predicate");
66 template <typename T>
67 void
68 test(const std::size_t bits)
71 const std::size_t max_n1 = 1000;
72 const std::size_t max_n2 = (max_n1 * 10) / 8;
73 Sequence<T> in(max_n1, [bits](std::size_t) { return T(2 * HashBits(max_n1, bits - 1) ^ 1); });
74 Sequence<T> sub(max_n2, [bits](std::size_t) { return T(2 * HashBits(max_n1, bits - 1)); });
75 for (std::size_t n1 = 0; n1 <= max_n1; n1 = n1 <= 16 ? n1 + 1 : size_t(3.1415 * n1))
77 std::size_t sub_n[] = {0, 1, 3, n1, (n1 * 10) / 8};
78 std::size_t res[] = {0, 1, n1 / 2, n1};
79 for (auto n2 : sub_n)
81 for (auto r : res)
83 std::size_t i = r, isub = 0;
84 for (; i < n1 && isub < n2; ++i, ++isub)
85 in[i] = sub[isub];
86 invoke_on_all_policies(test_one_policy(), in.begin(), in.begin() + n1, sub.begin(), sub.begin() + n2,
87 std::equal_to<T>());
88 invoke_on_all_policies(test_one_policy(), in.cbegin(), in.cbegin() + n1, sub.cbegin(),
89 sub.cbegin() + n2, std::equal_to<T>());
95 template <typename T>
96 struct test_non_const
98 template <typename Policy, typename FirstIterator, typename SecondInterator>
99 void
100 operator()(Policy&& exec, FirstIterator first_iter, SecondInterator second_iter)
102 invoke_if(exec, [&]() {
103 find_end(exec, first_iter, first_iter, second_iter, second_iter, non_const(std::equal_to<T>()));
104 search(exec, first_iter, first_iter, second_iter, second_iter, non_const(std::equal_to<T>()));
110 main()
112 test<int32_t>(8 * sizeof(int32_t));
113 test<uint16_t>(8 * sizeof(uint16_t));
114 test<float64_t>(53);
115 #if !defined(_PSTL_ICC_16_17_TEST_REDUCTION_BOOL_TYPE_RELEASE_64_BROKEN)
116 test<bool>(1);
117 #endif
119 test_algo_basic_double<int32_t>(run_for_rnd_fw<test_non_const<int32_t>>());
121 std::cout << done() << std::endl;
122 return 0;