OpenFPM_pdata  4.1.0
Project that contain the implementation of distributed structures
SparseGridGpu_performance_stencil_heat_host.cu
1 /*
2  * SparseGridGpu_performance_host.cu
3  *
4  * Created on: Sep 10, 2019
5  * Author: i-bird
6  */
7 
8 #define BOOST_TEST_DYN_LINK
9 #define DISABLE_MPI_WRITTERS
10 
11 #include <boost/test/unit_test.hpp>
12 #include "performancePlots.hpp"
13 #include <iostream>
14 #include "SparseGridGpu/SparseGridGpu.hpp"
15 #include "SparseGridGpu/tests/utils/SparseGridGpu_util_test.cuh"
16 
17 extern std::string suiteURI;
18 extern report_sparse_grid_tests report_sparsegrid_funcs;
19 extern std::set<std::string> testSet;
20 
21 BOOST_AUTO_TEST_SUITE(performance)
22 
23 BOOST_AUTO_TEST_SUITE(SparseGridGpu_test)
24 
25 BOOST_AUTO_TEST_CASE(testStencilHeatHost_gridScaling)
26 {
27 
28 }
29 BOOST_AUTO_TEST_CASE(testStencilHeatHost_blockScaling)
30 {
31 
32 }
33 
34 BOOST_AUTO_TEST_CASE(testStencilHeatSparseHost_gridScaling)
35 {
36 
37 }
38 BOOST_AUTO_TEST_CASE(testStencilHeatSparseHost_blockScaling)
39 {
40 
41 }
42 
43 BOOST_AUTO_TEST_SUITE_END()
44 
45 BOOST_AUTO_TEST_SUITE_END()
46