OpenFPM_pdata  1.1.0
Project that contain the implementation of distributed structures
 All Data Structures Namespaces Functions Variables Typedefs Enumerations Friends Pages
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 // XML report
30 boost::property_tree::ptree pt;
31 
32 #ifdef PERFORMANCE_TEST
33 
34 #include "Vector/performance/vector_dist_performance_util.hpp"
35 
36 BOOST_AUTO_TEST_SUITE( performance )
37 
38 
39 #include "Vector/performance/verlet_performance_tests.hpp"
40 #include "Vector/performance/cell_list_part_reorder.hpp"
41 #include "Vector/performance/cell_list_comp_reorder.hpp"
42 
43 #include "Grid/performance/grid_dist_performance.hpp"
44 
45 BOOST_AUTO_TEST_SUITE_END()
46 
47 #endif
48 
49 #endif /* SRC_PDATA_PERFORMANCE_CPP_ */