Skip to content

Commit

Permalink
minor printf change
Browse files Browse the repository at this point in the history
  • Loading branch information
Edgar Solomonik committed Aug 2, 2016
1 parent c01ed28 commit 8fd8cb3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/contraction/contraction.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -2570,7 +2570,8 @@ namespace CTF_int {
TAU_FSTOP(est_ctr_map_time);
TAU_FSTART(get_avail_res);
if ((int64_t)memuse >= max_memuse){
DPRINTF(1,"Not enough memory available for topo %d with order %d memory %ld/%ld\n", t,j,memuse,max_memuse);
if (global_comm.rank == 0)
DPRINTF(1,"Not enough memory available for topo %d with order %d memory %ld/%ld\n", t,j,memuse,max_memuse);
TAU_FSTOP(get_avail_res);
delete sctr;
continue;
Expand Down

0 comments on commit 8fd8cb3

Please sign in to comment.