New URL for NEMO forge!   http://forge.nemo-ocean.eu

Since March 2022 along with NEMO 4.2 release, the code development moved to a self-hosted GitLab.
This present forge is now archived and remained online for history.
Changeset 9926 for NEMO/branches/2018/dev_r9759_HPC09_ESIWACE/src/OCE/LBC/mppini.F90 – NEMO

Ignore:
Timestamp:
2018-07-11T14:19:53+02:00 (6 years ago)
Author:
smasson
Message:

dev_r9759_HPC09_ESIWACE: report bugixes from NEMO trunk

File:
1 edited

Legend:

Unmodified
Added
Removed
  • NEMO/branches/2018/dev_r9759_HPC09_ESIWACE/src/OCE/LBC/mppini.F90

    r9814 r9926  
    521521         nimppt(jproc) = iimppt(ii,ij)   
    522522         njmppt(jproc) = ijmppt(ii,ij)  
    523          nfilcit(ii,ij) = ilci(ii,ij) 
    524523      END DO 
     524      nfilcit(:,:) = ilci(:,:) 
    525525 
    526526      ! Save processor layout in ascii file 
     
    542542               &                                ibonit (jproc), ibonjt (jproc)  
    543543         END DO 
    544          CLOSE(inum)    
    545544      END IF 
    546545 
     
    583582      IF( jperio >= 3 .AND. jperio <= 6 .AND. jpni > 1 ) THEN 
    584583         CALL mpp_ini_north 
    585          IF(lwp) WRITE(numout,*) 
    586          IF(lwp) WRITE(numout,*) '   ==>>>   North fold boundary prepared for jpni >1' 
     584         IF (lwp) THEN 
     585            WRITE(numout,*) 
     586            WRITE(numout,*) '   ==>>>   North fold boundary prepared for jpni >1' 
     587            ! additional prints in layout.dat 
     588            WRITE(inum,*) 
     589            WRITE(inum,*) 
     590            WRITE(inum,*) 'number of subdomains located along the north fold : ', ndim_rank_north 
     591            WRITE(inum,*) 'Rank of the subdomains located along the north fold : ', ndim_rank_north 
     592            DO jproc = 1, ndim_rank_north, 5 
     593               WRITE(inum,*) nrank_north( jproc:MINVAL( (/jproc+4,ndim_rank_north/) ) ) 
     594            END DO 
     595         ENDIF 
    587596      ENDIF 
    588597      ! 
    589598      CALL mpp_init_ioipsl       ! Prepare NetCDF output file (if necessary) 
    590599      ! 
    591       IF( ln_nnogather )   CALL mpp_init_nfdcom     ! northfold neighbour lists 
     600      IF( ln_nnogather ) THEN 
     601         CALL mpp_init_nfdcom     ! northfold neighbour lists 
     602         IF (lwp) THEN 
     603            WRITE(inum,*) 
     604            WRITE(inum,*) 
     605            WRITE(inum,*) 'north fold exchanges with explicit point-to-point messaging :' 
     606            WRITE(inum,*) 'nfsloop : ', nfsloop 
     607            WRITE(inum,*) 'nfeloop : ', nfeloop 
     608            WRITE(inum,*) 'nsndto : ', nsndto 
     609            WRITE(inum,*) 'isendto : ', isendto 
     610         ENDIF 
     611      ENDIF 
     612      ! 
     613      IF (lwp) CLOSE(inum)    
    592614      ! 
    593615      DEALLOCATE(iin, ijn, ii_nono, ii_noea, ii_noso, ii_nowe,    & 
Note: See TracChangeset for help on using the changeset viewer.