We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b270f13 + 1a25db5 commit 55ccf8eCopy full SHA for 55ccf8e
Source/main.f90
@@ -3276,7 +3276,11 @@ SUBROUTINE MESH_EXCHANGE(CODE)
3276
3277
IF (N_MPI_PROCESSES>1 .AND. (CODE==1.OR.CODE==4) .AND. N_REQ1>0) THEN
3278
CALL MPI_STARTALL(N_REQ1,REQ1(1:N_REQ1),IERR)
3279
- CALL TIMEOUT('MPI exchange of gas species densities',N_REQ1,REQ1(1:N_REQ1))
+ IF (CODE==1) THEN
3280
+ CALL TIMEOUT('MPI exchange of gas species densities (CODE=1)',N_REQ1,REQ1(1:N_REQ1))
3281
+ ELSE
3282
+ CALL TIMEOUT('MPI exchange of gas species densities (CODE=4)',N_REQ1,REQ1(1:N_REQ1))
3283
+ ENDIF
3284
ENDIF
3285
3286
IF (N_MPI_PROCESSES>1 .AND. CODE==7 .AND. N_REQ2>0) THEN
0 commit comments