Loading...
Searching...
No Matches
12#ifndef CD_Decoration_H_
13#define CD_Decoration_H_
15#include <CD_NamespaceHeader.H>
21#elif defined(__INTEL_COMPILER)
22#define CD_PRAGMA_SIMD _Pragma("ivdep")
24#elif defined(__INTEL_LLVM_COMPILER)
25#define CD_PRAGMA_SIMD _Pragma("SIMD")
27#elif defined(__clang__)
28#define CD_PRAGMA_SIMD _Pragma("clang loop vectorize(enable)")
30#elif defined(__GNUC__)
31#define CD_PRAGMA_SIMD _Pragma("GCC ivdep")
40#define ALWAYS_INLINE __attribute__((always_inline)) __inline__
42#define ALWAYS_INLINE inline
45#include <CD_NamespaceFooter.H>