]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/move/test/adaptive_merge_test.cpp
import new upstream nautilus stable release 14.2.8
[ceph.git] / ceph / src / boost / libs / move / test / adaptive_merge_test.cpp
CommitLineData
7c673cae
FG
1//////////////////////////////////////////////////////////////////////////////
2//
3// (C) Copyright Ion Gaztanaga 2015-2016.
4// Distributed under the Boost Software License, Version 1.0.
5// (See accompanying file LICENSE_1_0.txt or copy at
6// http://www.boost.org/LICENSE_1_0.txt)
7//
8// See http://www.boost.org/libs/move for documentation.
9//
10//////////////////////////////////////////////////////////////////////////////
11
12#include <cstdlib> //std::srand
7c673cae
FG
13#include <iostream> //std::cout
14
15#include <boost/config.hpp>
16
17#include <boost/move/unique_ptr.hpp>
b32b8144 18#include <boost/move/algo/detail/merge_sort.hpp>
7c673cae
FG
19
20#include "order_type.hpp"
b32b8144 21#include "random_shuffle.hpp"
7c673cae
FG
22
23#include <boost/move/algo/adaptive_merge.hpp>
24#include <boost/move/core.hpp>
25
26
27template<class T>
28bool test_random_shuffled(std::size_t const element_count, std::size_t const num_keys, std::size_t const num_iter)
29{
30 boost::movelib::unique_ptr<T[]> elements(new T[element_count]);
31 boost::movelib::unique_ptr<std::size_t[]> key_reps(new std::size_t[num_keys ? num_keys : element_count]);
32 std::cout << "- - N: " << element_count << ", Keys: " << num_keys << ", It: " << num_iter << " \n";
33
34 //Initialize keys
35 for(std::size_t i=0; i < element_count; ++i){
36 std::size_t key = num_keys ? (i % num_keys) : i;
37 elements[i].key=key;
38 }
39
40 std::srand(0);
41
42 for (std::size_t i = 0; i != num_iter; ++i)
43 {
b32b8144 44 ::random_shuffle(elements.get(), elements.get() + element_count);
92f5a8d4
TL
45 for(std::size_t j = 0; j < (num_keys ? num_keys : element_count); ++j){
46 key_reps[j]=0;
7c673cae 47 }
92f5a8d4
TL
48 for(std::size_t j = 0; j < element_count; ++j){
49 elements[j].val = key_reps[elements[j].key]++;
7c673cae
FG
50 }
51
b32b8144
FG
52 boost::movelib::unique_ptr<char[]> buf(new char [sizeof(T)*(element_count-element_count/2)]);
53
7c673cae 54 std::size_t const split = std::size_t(std::rand()) % element_count;
b32b8144
FG
55 boost::movelib::merge_sort(elements.get(), elements.get()+split, order_type_less(), (T*)buf.get());
56 boost::movelib::merge_sort(elements.get()+split, elements.get()+element_count, order_type_less(), (T*)buf.get());
7c673cae 57
b32b8144 58 boost::movelib::adaptive_merge(elements.get(), elements.get()+split, elements.get()+element_count, order_type_less());
7c673cae 59
b32b8144 60 if (!is_order_type_ordered(elements.get(), element_count))
7c673cae
FG
61 {
62 std::cout << "\n ERROR\n";
63 throw int(0);
64 }
65 }
66 return true;
67}
68
92f5a8d4
TL
69void instantiate_smalldiff_iterators()
70{
71 typedef randit<int, short> short_rand_it_t;
72 boost::movelib::adaptive_merge(short_rand_it_t(), short_rand_it_t(), short_rand_it_t(), less_int());
73
74 typedef randit<int, signed char> schar_rand_it_t;
75 boost::movelib::adaptive_merge(schar_rand_it_t(), schar_rand_it_t(), schar_rand_it_t(), less_int());
76}
77
7c673cae
FG
78int main()
79{
92f5a8d4
TL
80 instantiate_smalldiff_iterators();
81
7c673cae 82 const std::size_t NIter = 100;
b32b8144
FG
83 test_random_shuffled<order_move_type>(10001, 3, NIter);
84 test_random_shuffled<order_move_type>(10001, 65, NIter);
85 test_random_shuffled<order_move_type>(10001, 101, NIter);
86 test_random_shuffled<order_move_type>(10001, 1023, NIter);
87 test_random_shuffled<order_move_type>(10001, 4095, NIter);
88 test_random_shuffled<order_move_type>(10001, 0, NIter);
7c673cae
FG
89
90 return 0;
91}