MOAB  4.9.3pre
Eigen::Architecture Namespace Reference

Enumerations

enum  Type {
  Generic = 0x0, SSE = 0x1, AltiVec = 0x2, VSX = 0x3,
  NEON = 0x4, Target = Generic
}

Detailed Description

Enum used to choose between implementation depending on the computer architecture.


Enumeration Type Documentation

Enumerator:
Generic 
SSE 
AltiVec 
VSX 
NEON 
Target 

Definition at line 461 of file Constants.h.

            {
    Generic = 0x0,
    SSE = 0x1,
    AltiVec = 0x2,
    VSX = 0x3,
    NEON = 0x4,
#if defined EIGEN_VECTORIZE_SSE
    Target = SSE
#elif defined EIGEN_VECTORIZE_ALTIVEC
    Target = AltiVec
#elif defined EIGEN_VECTORIZE_VSX
    Target = VSX
#elif defined EIGEN_VECTORIZE_NEON
    Target = NEON
#else
    Target = Generic
#endif
  };
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines