Changes between Version 190 and Version 191 of LnDevel


Ignore:
Timestamp:
Sep 9, 2024, 6:02:47 PM (10 days ago)
Author:
lnerger
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • LnDevel

    v190 v191  
    185185[wiki:PDAFlocalomi_assimilate_nondiagR]
    186186
    187 [wiki:PDAFlocalomi_assimilate_lknetf_nondiagR_si]
    188 
    189 [wiki:PDAFlocalomi_assimilate_lnetf_nondiagR_si]
    190 
    191 [wiki:PDAFlocalomi_assimilate_nondiagR_si]
    192 
    193 [wiki:PDAFlocalomi_assimilate_si]
    194 
    195187
    196188[wiki:PDAFlocalomi_put_state]
     
    210202[wiki:PDAFlocalomi_put_state_nondiagR]
    211203
    212 [wiki:PDAFlocalomi_put_state_lknetf_nondiagR_si]
    213 
    214 [wiki:PDAFlocalomi_put_state_lnetf_nondiagR_si]
    215 
    216 [wiki:PDAFlocalomi_put_state_nondiagR_si]
    217 
    218 [wiki:PDAFlocalomi_put_state_si]
     204[wiki:PDAF_diag_crps_mpi]
     205
     206== Version 2.3 - XXX, 2024 ==
     207
     208Major Changes and additions:
     209 * Performance improvements to ''PDAFomi_init_dim_obs_l''. While we already improve the performance in V2.2.1 we found that by further restructuring of the code the performance could be further improved. (In some cases with gfortran and ifort compilers by a factor of 6 to 9.) The previous routine is still present as PDAFomi_init_dim_obs_l_old.
     210 * For even better performance of the initialization of local observations, we added ''support for a user-sided implementation of search for local observations''. The user-sided search routine can lead to the best performance since it requires less IF-checks which are required in the generic code inside PDAFomi. If you have the impression that PDAFomi_init_dim_obs_l is slow in your case, e.g. because it domines the run time of the analysis step, we recommend to aim for a user-sided implementation (see https://pdaf.awi.de/trac/wiki/OMI_search_local_observations)
     211 * Addition of ''support for non-diagonal observation error covariance matrices in PDAF-OMI'' (see https://pdaf.awi.de/trac/wiki/OMI_nondiagonal_observation_error_covariance_matrices)
     212 * ''Introduction of PDAFlocal interface''. This simplifies the implementation of the state localization. It also provides support for weighted local increments, e.g. to implement vertical localization or weakly coupled assimilaation. (see https://pdaf.awi.de/trac/wiki/PDAFlocal_overview)
     213
     214Further changes and additions:
     215 * Improved ''parser_mpi.F90'': Now parsing a slash '/' is possible. Thus also directory paths can be parsed. In addition, for string parsing it is checked if the string is truncated upon parsing.
     216 * Update of ''PDAF_diag_crps'': The routine now includes parallelization. There is a separate routine ''PDAF_diag_crps_mpi'' which allows one to specify the communicator in which the operation is performed.
     217 * New ''Makefile'' in PDAF root directory. This makefile performs the compilation in the directory build/ and keeps src/ clear. Further, it supports parallel compilation.  The previous Makefile in src/ is still present, but will be removed in a future release. If you integrated the compilation of PDAF in some larger build process, we recommend to switch to the new Makefile.
     218 * New routine ''PDAFomi_observation_localization_weights'' as convenient way to get a localization weight. Usable for exmaple in the prodRinvA or likelihood routines for non-diagonal R.
     219 * New routine ''PDAF_correlation_function'' to provide the value of correlation functions. Currently, a Gaussian and the 5th-order polynomial by Gaspari&Cohn (1999) are implemented.
     220 * Revised timer module: Now we use MPI_Wtime instead of SYSTEM_CLOCK. This appears to yield more consistent timings
     221 
     222Bug fixes:
     223 * Replace lower-case letters by upper case in TRTRS library calls. This circumvents a bug in some versions of OPENBLAS, which causes OPENBLAS to only accept upper case letters for this call.
     224 * Revision of ETKF/ESTKF/SEIK analysis step. For domains with dim_obs_p=0 now the observation operator is called consistently with domains having dim_obs_p>0. This allows for global MPI operations in the observation operator.