Changes between Version 8 and Version 9 of doc/app/userint/comp
- Timestamp:
- Nov 29, 2012 9:05:26 AM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
doc/app/userint/comp
v8 v9 31 31 '''The modified user-interface files cannot be pre-compiled by using mbuild! '''\\\\ 32 32 While programming user-defined code, errors are frequently made. For possible ways of error tracing see [../../intdbg Debugging]. 33 34 In 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 ) 39 CALL MPI_ALLREDUCE(...) 40 #endif 41 }}}