Skip to content

Commit

Permalink
Update Converse init print statements
Browse files Browse the repository at this point in the history
  • Loading branch information
stwhite91 committed Jun 12, 2023
1 parent a4cb22a commit dcd3e70
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions src/conv-core/convcore.C
Original file line number Diff line number Diff line change
Expand Up @@ -2203,11 +2203,17 @@ void CsdInit(char **argv)
CsvAccess(idleThreadsCnt) = 0;
#endif
if (CmiMyPe() == 0) {
#if CMK_SMP && CMK_LOCKLESS_QUEUE
CmiPrintf("Charm++> Using lockless concurrent queue.\n");
#endif
#if CMK_SMP && CMK_TASKQUEUE
CmiPrintf("Charm++> Work stealing task queue support is enabled.\n");
#endif
#if CMK_USE_STL_MSGQ
CmiPrintf("Charm++> Using STL-based msgQ.\n");
CmiPrintf("Charm++> Using STL-based message queue optimized for non-bitvec priority types.\n");
#endif
#if CMK_RANDOMIZED_MSGQ
CmiPrintf("Charm++> Using randomized msgQ. Priorities will not be respected!\n");
CmiPrintf("Charm++> Using randomized message queue. Priorities will not be respected!\n");
#elif CMK_NO_MSG_PRIOS
CmiPrintf("Charm++> Message priorities have been turned off and will not be respected.\n");
#endif
Expand Down

0 comments on commit dcd3e70

Please sign in to comment.