Skip to content

Commit

Permalink
Moving status message to verbose only
Browse files Browse the repository at this point in the history
  • Loading branch information
khuck committed Sep 19, 2024
1 parent 4ceecda commit a197703
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/apex/apex_kokkos.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ void kokkosp_init_library(int loadseq, uint64_t version,
void kokkosp_finalize_library() {
memory_mtx.lock();
if (memory_map().size() == 0) {
if (apex::apex::instance()->get_node_id() == 0) {
if (apex::apex::instance()->get_node_id() == 0 && apex::apex_options::use_verbose()) {
std::cout << "No Kokkos allocation Leaks on rank 0!" << std::endl;
}
} else {
Expand Down

0 comments on commit a197703

Please sign in to comment.