Newer
Older

ESCOBAR MUNOZ Juan
committed
//#
//# Some Macro to bypass OpenACC incompatiblity beetwen Nvidia & Cray Compiler
//#

ESCOBAR MUNOZ Juan
committed

ESCOBAR MUNOZ Juan
committed
//# Activate $acc directive only for Nvidia Compiler

ESCOBAR MUNOZ Juan
committed
#ifdef MNH_COMPILER_NVHPC
#define acc_nv acc
#else
#define acc_nv !/!\ NOT ACTIVATE acc
#endif

ESCOBAR MUNOZ Juan
committed
//# Activate present directive only for Cray Compiler

ESCOBAR MUNOZ Juan
committed
#ifdef MNH_COMPILER_CCE
#define present_cr(TAB...) present(TAB)

ESCOBAR MUNOZ Juan
committed
#else
#define present_cr(TAB...)