1 //  Copyright (c) 2017 Ajai V George
2 //
3 //  Distributed under the Boost Software License, Version 1.0. (See accompanying
4 //  file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
5 
6 #include <hpx/hpx_main.hpp>
7 #include <hpx/include/partitioned_vector_predef.hpp>
8 #include <hpx/include/parallel_transform.hpp>
9 #include <hpx/include/parallel_count.hpp>
10 
11 #include <hpx/util/lightweight_test.hpp>
12 
13 #include <vector>
14 
15 #include "test_transform_binary.hpp"
16 
17 ///////////////////////////////////////////////////////////////////////////////
main()18 int main()
19 {
20     std::vector<hpx::id_type> localities = hpx::find_all_localities();
21 
22     transform_binary_tests<double, double, int>(localities);
23 
24     return hpx::util::report_errors();
25 }
26