diff options
author | Louis Dionne <ldionne@apple.com> | 2019-03-27 21:28:24 +0000 |
---|---|---|
committer | Louis Dionne <ldionne@apple.com> | 2019-03-27 21:28:24 +0000 |
commit | 3b62047b8b2209bed57d239f581bdbfc91a10b94 (patch) | |
tree | e321a0dea2d7355c3eca7c9cf9ae1f2b89823c1d /pstl/test/test_find_end.cpp | |
parent | 4bc38cfe297746858a7159bd4a537261d628b47e (diff) | |
download | bcm5719-llvm-3b62047b8b2209bed57d239f581bdbfc91a10b94.tar.gz bcm5719-llvm-3b62047b8b2209bed57d239f581bdbfc91a10b94.zip |
Restructure test suite to follow libc++ standard layout
Summary: Subsumes changes requested in https://reviews.llvm.org/D59110
Reviewers: EricWF, ldionne
Subscribers: mgorny, krytarowski, jfb, jdoerfert, libcxx-commits
Differential Revision: https://reviews.llvm.org/D59856
llvm-svn: 357124
Diffstat (limited to 'pstl/test/test_find_end.cpp')
-rw-r--r-- | pstl/test/test_find_end.cpp | 120 |
1 files changed, 0 insertions, 120 deletions
diff --git a/pstl/test/test_find_end.cpp b/pstl/test/test_find_end.cpp deleted file mode 100644 index 0a5a44bb0ae..00000000000 --- a/pstl/test/test_find_end.cpp +++ /dev/null @@ -1,120 +0,0 @@ -// -*- C++ -*- -//===-- test_find_end.cpp -------------------------------------------------===// -// -// 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 -// -//===----------------------------------------------------------------------===// - -#include "pstl_test_config.h" - -#include "pstl/execution" -#include "pstl/algorithm" -#include "utils.h" - -using namespace TestUtils; - -struct test_one_policy -{ -#if __PSTL_ICC_17_VC141_TEST_SIMD_LAMBDA_DEBUG_32_BROKEN || \ - __PSTL_ICC_16_VC14_TEST_SIMD_LAMBDA_DEBUG_32_BROKEN //dummy specialization by policy type, in case of broken configuration - template <typename Iterator1, typename Iterator2, typename Predicate> - void - operator()(pstl::execution::unsequenced_policy, Iterator1 b, Iterator1 e, Iterator2 bsub, Iterator2 esub, - Predicate pred) - { - } - template <typename Iterator1, typename Iterator2, typename Predicate> - void - operator()(pstl::execution::parallel_unsequenced_policy, Iterator1 b, Iterator1 e, Iterator2 bsub, Iterator2 esub, - Predicate pred) - { - } -#endif - - template <typename ExecutionPolicy, typename Iterator1, typename Iterator2, typename Predicate> - void - operator()(ExecutionPolicy&& exec, Iterator1 b, Iterator1 e, Iterator2 bsub, Iterator2 esub, Predicate pred) - { - using namespace std; - // For find_end - { - auto expected = find_end(b, e, bsub, esub, pred); - auto actual = find_end(exec, b, e, bsub, esub); - EXPECT_TRUE(actual == expected, "wrong return result from find_end"); - - actual = find_end(exec, b, e, bsub, esub, pred); - EXPECT_TRUE(actual == expected, "wrong return result from find_end with a predicate"); - } - - // For search - { - auto expected = search(b, e, bsub, esub, pred); - auto actual = search(exec, b, e, bsub, esub); - EXPECT_TRUE(actual == expected, "wrong return result from search"); - - actual = search(exec, b, e, bsub, esub, pred); - EXPECT_TRUE(actual == expected, "wrong return result from search with a predicate"); - } - } -}; - -template <typename T> -void -test(const std::size_t bits) -{ - - const std::size_t max_n1 = 1000; - const std::size_t max_n2 = (max_n1 * 10) / 8; - Sequence<T> in(max_n1, [max_n1, bits](std::size_t k) { return T(2 * HashBits(max_n1, bits - 1) ^ 1); }); - Sequence<T> sub(max_n2, [max_n1, bits](std::size_t k) { return T(2 * HashBits(max_n1, bits - 1)); }); - for (std::size_t n1 = 0; n1 <= max_n1; n1 = n1 <= 16 ? n1 + 1 : size_t(3.1415 * n1)) - { - std::size_t sub_n[] = {0, 1, 3, n1, (n1 * 10) / 8}; - std::size_t res[] = {0, 1, n1 / 2, n1}; - for (auto n2 : sub_n) - { - for (auto r : res) - { - std::size_t i = r, isub = 0; - for (; i < n1 & isub < n2; ++i, ++isub) - in[i] = sub[isub]; - invoke_on_all_policies(test_one_policy(), in.begin(), in.begin() + n1, sub.begin(), sub.begin() + n2, - std::equal_to<T>()); - invoke_on_all_policies(test_one_policy(), in.cbegin(), in.cbegin() + n1, sub.cbegin(), - sub.cbegin() + n2, std::equal_to<T>()); - } - } - } -} - -template <typename T> -struct test_non_const -{ - template <typename Policy, typename FirstIterator, typename SecondInterator> - void - operator()(Policy&& exec, FirstIterator first_iter, SecondInterator second_iter) - { - invoke_if(exec, [&]() { - find_end(exec, first_iter, first_iter, second_iter, second_iter, non_const(std::equal_to<T>())); - search(exec, first_iter, first_iter, second_iter, second_iter, non_const(std::equal_to<T>())); - }); - } -}; - -int32_t -main() -{ - test<int32_t>(8 * sizeof(int32_t)); - test<uint16_t>(8 * sizeof(uint16_t)); - test<float64_t>(53); -#if !__PSTL_ICC_16_17_TEST_REDUCTION_BOOL_TYPE_RELEASE_64_BROKEN - test<bool>(1); -#endif - - test_algo_basic_double<int32_t>(run_for_rnd_fw<test_non_const<int32_t>>()); - - std::cout << done() << std::endl; - return 0; -} |