1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
#ifndef _ASSERT_FEATURES_H
#define _ASSERT_FEATURES_H
! Whether or not the assert library may use multi-image features
! Default is compiler-dependent
#ifndef ASSERT_MULTI_IMAGE
# if defined(__flang__) || defined(__INTEL_COMPILER) || defined(__LFORTRAN__)
# define ASSERT_MULTI_IMAGE 0
# else
# define ASSERT_MULTI_IMAGE 1
# endif
#endif
! Whether the library should use client callbacks for parallel features
#ifndef ASSERT_PARALLEL_CALLBACKS
#define ASSERT_PARALLEL_CALLBACKS 0
#endif
#endif
|