OpenFPM_pdata  4.1.0
Project that contain the implementation of distributed structures
pdata_performance.cpp
1 /*
2  * performance.hpp
3  *
4  * Created on: Mar 9, 2016
5  * Author: yaroslav
6  */
7 
8 #ifndef SRC_PDATA_PERFORMANCE_CPP_
9 #define SRC_PDATA_PERFORMANCE_CPP_
10 
11 
12 #include <iostream>
13 #include <mpi.h>
14 #include "config.h"
15 
16 #include <boost/property_tree/ptree.hpp>
17 #include <boost/property_tree/xml_parser.hpp>
18 #include "Vector/vector_dist.hpp"
19 #include "data_type/aggregate.hpp"
20 #include "Plot/GoogleChart.hpp"
21 #include "Point_test.hpp"
22 #include <sstream>
23 
24 #define BOOST_TEST_DYN_LINK
25 #include <boost/test/unit_test.hpp>
26 
27 extern const char * test_dir;
28 
29 
30 #ifdef PERFORMANCE_TEST
31 
32 #include "../../openfpm_numerics/src/interpolation/interpolation.hpp"
33 #include "Grid/grid_dist_id.hpp"
34 #include "Plot/GoogleChart.hpp"
35 #include "interpolation/mp4_kernel.hpp"
36 #include "Vector/performance/vector_dist_performance_util.hpp"
37 #include "util/performance/performance_util.hpp"
38 
39 BOOST_AUTO_TEST_SUITE( performance )
40 
41 #include "Vector/performance/verlet_performance_tests.hpp"
42 #include "Vector/performance/cell_list_part_reorder.hpp"
43 #include "Vector/performance/cell_list_comp_reorder.hpp"
44 #include "Vector/performance/vector_dist_gg_map_performance.hpp"
45 #include "Grid/performance/grid_dist_performance.hpp"
46 
47 BOOST_AUTO_TEST_SUITE_END()
48 
49 #endif
50 
51 #endif /* SRC_PDATA_PERFORMANCE_CPP_ */