Custom Query (964 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (145 - 147 of 964)

Ticket Owner Reporter Resolution Summary
#901 arango Done Improved memory.F
Description

Updated memory.F to avoid creating a temporary vector for the fifth argument in the call to mp_collect during Fortran execution. Now, we have:

#ifdef DISTRIBUTE
      IF (.not.allocated(Bwrk)) THEN
        allocate ( Bwrk(Ntiles+1) )
      END IF
      IF (.not.allocated(Dwrk)) THEN
        allocate ( Dwrk(Ntiles+1) )
      END IF
#endif
      ...

#ifdef DISTRIBUTE
      Bwrk=spv
      Dwrk=spv
      DO ng=1,Ngrids
        Bwrk(MyRank+1)=BmemMax(ng)*1.0E-6_r8        ! already in bytes
        Dwrk(MyRank+1)=megabytefac*Dmem(ng)
        CALL mp_collect (ng, iNLM, numthreads, spv, Bwrk)
        CALL mp_collect (ng, iNLM, numthreads, spv, Dwrk)
        Bsize(MyRank,ng)=Bwrk(MyRank+1)
        Dsize(MyRank,ng)=Dwrk(MyRank+1)
        Bwrk=spv
        Dwrk=spv
      END DO
#else

where Bwrk and Dwrk are temporary vectors.

#907 arango Done MINOR: Changed _FillValue for user generic parameters
Description

I modified the _FillValue for user variable in output NetCDF files from zero to 1.0E+37.

       double user(Nuser) ;
               user:long_name = "user generic parameters" ;
               user:_FillValue = 1.e+37 ;
               user:field = "user, scalar" ;

Many thanks to John Wilkin for bringing this to my attention.

#908 arango Done Corrected minor typos
Description

Corrected minor typos in roms_build.csh and varinfo.dat.

Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.