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.
2011WP/2011Stream2/DynamicMemory_improvments – NEMO
wiki:2011WP/2011Stream2/DynamicMemory_improvments

Version 3 (modified by cetlod, 13 years ago) (diff)

--

Further improvments for dynamic memory

Last edited Timestamp?

Last edited Timestamp?


CPP key

At the origin, the CPP key where defined to minimize the memory requirement of the code.

Apart from a few exceptions, a key control an option of the system that require additional arrays in in core memory. Now that we have switched to dynamical allocation, most of the key can be removed, and the option would be simply controlled via a namelist parameter.

This can be done throughout the code starting from the vertical physics (key_zdf tke, kpp, cst, gls, ric, tmx) and then the other


avt versus avs

For the key_zdfddm, its suppression can be done in a more clever way, defining avs one for all as a pointer and either pointing on avt is not ddm physics, or pointing to an avs2D arrays that is allocated is ddm is used


memory requirement in terms of workspace arrays

The now-aday demand in terms of number of 2D 3D and 4D arrays should be checked and minimised as much as possible. In particular, a given low number of wrk3D and wrk4D arrays should be allocated and in the module that require more arrays, a test can be added to allocate additional arrays only is this module is effectively used.


creation of a key_uncheck_wrk_array

wrk_in_use and wrk_not_released simply return .FALSE. when this key is defined

This should be useful to speed up production runs


wrk array size check

when a huge number of tracer is used (jptra> jpk) the model simply stop. This should be problematic with BFM for example... Another solution should be found... At this stage we first use allocatable array within the routine. For example in zpshde.F90 {{

REAL(wp), ALLOCATABLE, DIMENSION(:,:,:)
zti, ztj ! interpolated value of tracer

! Allocate workspaces whose dimension is > jpk ALLOCATE( zti(jpi,jpj,kjpt) ) ALLOCATE( ztj(jpi,jpj,kjpt) )

-----bla, bla, bla-----

DEALLOCATE( zti ) DEALLOCATE( ztj )

}}