Changes between Version 8 and Version 9 of doc/app/userint/comp


Ignore:
Timestamp:
Nov 29, 2012 9:05:26 AM (12 years ago)
Author:
maronga
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • doc/app/userint/comp

    v8 v9  
    3131'''The modified user-interface files cannot be pre-compiled by using mbuild! '''\\\\
    3232While programming user-defined code, errors are frequently made. For possible ways of error tracing see [../../intdbg Debugging].
     33
     34In case you are calling MPI functions or external functions from your user code, you might get error messages during the namelist file check, which is performed before your job is started. These errors will not occur during your model run, so you might skip the parameter file check in this case. The better option, however, is to exclude these calls from this check. In order to achieve this, can set the preprocessor directive {{{__check}}} whereever needed.
     35
     36'''Example:'''
     37{{{
     38#if ! defined ( __check )
     39CALL MPI_ALLREDUCE(...)
     40#endif
     41}}}