Skip to content

Commit

Permalink
Merge pull request trilinos#8859 from searhein/kokkos-std
Browse files Browse the repository at this point in the history
KokkosKernels: std::
  • Loading branch information
srajama1 authored Mar 10, 2021
2 parents c270fa0 + 2e98c2c commit 7cc0e5c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ class GraphColoringHandle
{
this->coloring_algorithm_type = COLORING_SERIAL;
#ifdef VERBOSE
std:cout << "Serial Execution Space, Default Algorithm: COLORING_SERIAL\n";
std::cout << "Serial Execution Space, Default Algorithm: COLORING_SERIAL\n";
#endif
}
else if(KokkosKernels::Impl::kk_is_gpu_exec_space<ExecutionSpace>())
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -208,15 +208,15 @@ class GraphColorDistance2Handle
if(KokkosKernels::Impl::kk_get_exec_space_type<ExecutionSpace>() == KokkosKernels::Impl::Exec_SERIAL)
{
this->coloring_algorithm_type = COLORING_D2_SERIAL;
#ifdef VERBOSE
std:cout << "Serial Execution Space, Default Algorithm: COLORING_D2_SERIAL\n";
#ifdef VERBOSE
std::cout << "Serial Execution Space, Default Algorithm: COLORING_D2_SERIAL\n";
#endif
}
else
{
this->coloring_algorithm_type = COLORING_D2_NB_BIT;
#ifdef VERBOSE
std:cout << ExecutionSpace::name() << " Execution Space, Default Algorithm: COLORING_D2_NB_BIT\n";
#ifdef VERBOSE
std::cout << ExecutionSpace::name() << " Execution Space, Default Algorithm: COLORING_D2_NB_BIT\n";
#endif
}
}
Expand Down

0 comments on commit 7cc0e5c

Please sign in to comment.