Mentions légales du service

Skip to content
Snippets Groups Projects
Commit df27af68 authored by Quentin Khan's avatar Quentin Khan
Browse files

Add StarPU profiling to testBlockedChebyshev

parent ccbf2bc2
No related branches found
No related tags found
No related merge requests found
......@@ -121,7 +121,13 @@ int main(int argc, char* argv[]){
GroupAlgorithm groupalgo(&groupedTree,&groupkernel);
timer.tic();
#ifdef SCALFMM_USE_STARPU
starpu_fxt_start_profiling();
#endif
groupalgo.execute();
#ifdef SCALFMM_USE_STARPU
starpu_fxt_stop_profiling();
#endif
std::cout << "Kernel executed in in " << timer.tacAndElapsed() << "s\n";
// Validate the result
......@@ -195,4 +201,3 @@ int main(int argc, char* argv[]){
return 0;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment