2009-05-06 15:48:28 +00:00
// This file is part of Eigen, a lightweight C++ template library
2009-05-22 20:25:33 +02:00
// for linear algebra.
2009-05-06 15:48:28 +00:00
//
2010-06-24 23:21:58 +02:00
// Copyright (C) 2008 Gael Guennebaud <gael.guennebaud@inria.fr>
2011-01-27 10:34:44 -05:00
// Copyright (C) 2007-2011 Benoit Jacob <jacob.benoit.1@gmail.com>
2009-05-06 15:48:28 +00:00
//
2012-07-13 14:42:47 -04:00
// This Source Code Form is subject to the terms of the Mozilla
// Public License v. 2.0. If a copy of the MPL was not distributed
// with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
2009-05-06 15:48:28 +00:00
2008-03-26 09:13:11 +00:00
#ifndef EIGEN_CORE_H
#define EIGEN_CORE_H
2016-10-14 16:39:41 +01:00
// first thing Eigen does: stop the compiler from committing suicide
#include "src/Core/util/DisableStupidWarnings.h"
2013-02-21 19:05:23 +01:00
2017-08-24 11:06:47 +02:00
#if defined(__CUDACC__) && !defined(EIGEN_NO_CUDA)
#define EIGEN_CUDACC __CUDACC__
#endif
#if defined(__CUDA_ARCH__) && !defined(EIGEN_NO_CUDA)
#define EIGEN_CUDA_ARCH __CUDA_ARCH__
#endif
#if defined(__CUDACC_VER_MAJOR__) && (__CUDACC_VER_MAJOR__ >= 9)
#define EIGEN_CUDACC_VER ((__CUDACC_VER_MAJOR__ * 10000) + (__CUDACC_VER_MINOR__ * 100))
#elif defined(__CUDACC_VER__)
#define EIGEN_CUDACC_VER __CUDACC_VER__
#else
#define EIGEN_CUDACC_VER 0
#endif
2016-10-14 12:09:55 +01:00
// Handle NVCC/CUDA/SYCL
2022-02-04 22:24:31 +00:00
#if defined(EIGEN_CUDACC) || defined(__SYCL_DEVICE_ONLY__)
2016-10-14 12:09:55 +01:00
// Do not try asserts on CUDA and SYCL!
2016-09-19 12:44:13 +01:00
#ifndef EIGEN_NO_DEBUG
#define EIGEN_NO_DEBUG
#endif
#ifdef EIGEN_INTERNAL_DEBUGGING
#undef EIGEN_INTERNAL_DEBUGGING
#endif
#ifdef EIGEN_EXCEPTIONS
#undef EIGEN_EXCEPTIONS
#endif
2016-10-14 12:09:55 +01:00
// All functions callable from CUDA code must be qualified with __device__
2022-02-04 22:24:31 +00:00
#ifdef EIGEN_CUDACC
2016-11-02 11:44:27 -07:00
// Do not try to vectorize on CUDA and SYCL!
#ifndef EIGEN_DONT_VECTORIZE
#define EIGEN_DONT_VECTORIZE
#endif
2016-10-14 12:09:55 +01:00
#define EIGEN_DEVICE_FUNC __host__ __device__
2018-07-30 14:45:08 +02:00
// We need cuda_runtime.h to ensure that that EIGEN_USING_STD_MATH macro
2016-10-20 09:42:05 -07:00
// works properly on the device side
2018-07-30 14:45:08 +02:00
#include <cuda_runtime.h>
2016-10-14 12:09:55 +01:00
#else
#define EIGEN_DEVICE_FUNC
#endif
2016-10-19 12:56:12 -07:00
2016-10-14 12:09:55 +01:00
#else
2016-09-19 12:44:13 +01:00
#define EIGEN_DEVICE_FUNC
2025-03-11 19:20:03 -07:00
#endif
2016-09-19 12:44:13 +01:00
2025-03-11 19:20:03 -07:00
#if defined(EIGEN_CUDACC)
#include <cuda.h>
#define EIGEN_CUDA_SDK_VER (CUDA_VERSION * 10)
#else
#define EIGEN_CUDA_SDK_VER 0
2016-09-19 12:44:13 +01:00
#endif
2025-03-11 19:20:03 -07:00
2016-10-14 12:09:55 +01:00
// When compiling CUDA device code with NVCC, pull in math functions from the
// global namespace. In host mode, and when device doee with clang, use the
// std versions.
#if defined(__CUDA_ARCH__) && defined(__NVCC__)
#define EIGEN_USING_STD_MATH(FUNC) using ::FUNC;
#else
#define EIGEN_USING_STD_MATH(FUNC) using std::FUNC;
2014-07-22 13:16:44 +02:00
#endif
2016-10-16 12:52:34 +01:00
#if (defined(_CPPUNWIND) || defined(__EXCEPTIONS)) && !defined(__CUDA_ARCH__) && !defined(EIGEN_EXCEPTIONS) && !defined(EIGEN_USE_SYCL)
#define EIGEN_EXCEPTIONS
#endif
2014-07-22 13:16:44 +02:00
#ifdef EIGEN_EXCEPTIONS
#include <new>
#endif
2010-03-06 09:05:15 -05:00
// then include this file where all our macros are defined. It's really important to do it first because
// it's where we do all the alignment settings (platform detection and honoring the user's will if he
// defined e.g. EIGEN_DONT_ALIGN) so it needs to be done before we do anything with vectorization.
2010-12-27 15:07:11 +00:00
#include "src/Core/util/Macros.h"
2010-03-06 09:05:15 -05:00
2013-07-05 23:47:40 +02:00
// Disable the ipa-cp-clone optimization flag with MinGW 6.x or newer (enabled by default with -O3)
// See http://eigen.tuxfamily.org/bz/show_bug.cgi?id=556 for details.
2014-11-04 21:58:52 +01:00
#if EIGEN_COMP_MINGW && EIGEN_GNUC_AT_LEAST(4,6)
2013-07-05 23:47:40 +02:00
#pragma GCC optimize ("-fno-ipa-cp-clone")
#endif
2012-02-10 22:49:09 +01:00
#include <complex>
2011-12-09 10:06:49 +01:00
// this include file manages BLAS and MKL related macros
// and inclusion of their respective header files
#include "src/Core/util/MKL_support.h"
2015-07-29 10:22:25 +02:00
// if alignment is disabled, then disable vectorization. Note: EIGEN_MAX_ALIGN_BYTES is the proper check, it takes into
// account both the user's will (EIGEN_MAX_ALIGN_BYTES,EIGEN_DONT_ALIGN) and our own platform checks
#if EIGEN_MAX_ALIGN_BYTES==0
2010-03-06 09:05:15 -05:00
#ifndef EIGEN_DONT_VECTORIZE
#define EIGEN_DONT_VECTORIZE
#endif
#endif
2014-11-04 21:58:52 +01:00
#if EIGEN_COMP_MSVC
2009-01-10 14:10:40 +00:00
#include <malloc.h> // for _aligned_malloc -- need it regardless of whether vectorization is enabled
2014-11-04 21:58:52 +01:00
#if (EIGEN_COMP_MSVC >= 1500) // 2008 or later
2009-05-04 12:13:37 +00:00
// Remember that usage of defined() in a #define is undefined by the standard.
// a user reported that in 64-bit mode, MSVC doesn't care to define _M_IX86_FP.
2014-11-04 21:58:52 +01:00
#if (defined(_M_IX86_FP) && (_M_IX86_FP >= 2)) || EIGEN_ARCH_x86_64
2009-05-04 12:13:37 +00:00
#define EIGEN_SSE2_ON_MSVC_2008_OR_LATER
2009-02-06 09:01:50 +00:00
#endif
2008-12-16 15:17:29 +00:00
#endif
2011-04-19 15:25:00 +02:00
#else
// Remember that usage of defined() in a #define is undefined by the standard
2014-11-04 21:58:52 +01:00
#if (defined __SSE2__) && ( (!EIGEN_COMP_GNUC) || EIGEN_COMP_ICC || EIGEN_GNUC_AT_LEAST(4,2) )
2011-04-19 15:25:00 +02:00
#define EIGEN_SSE2_ON_NON_MSVC_BUT_NOT_OLD_GCC
#endif
2008-12-16 15:17:29 +00:00
#endif
2008-12-15 21:20:40 +00:00
2025-02-28 15:21:23 -08:00
#if !defined(EIGEN_DONT_VECTORIZE) && !defined(EIGEN_CUDACC)
2010-03-06 09:05:15 -05:00
2011-04-19 15:25:00 +02:00
#if defined (EIGEN_SSE2_ON_NON_MSVC_BUT_NOT_OLD_GCC) || defined(EIGEN_SSE2_ON_MSVC_2008_OR_LATER)
2010-02-24 21:43:30 +01:00
// Defines symbols for compile-time detection of which instructions are
// used.
// EIGEN_VECTORIZE_YY is defined if and only if the instruction set YY is used
2008-08-28 15:28:23 +00:00
#define EIGEN_VECTORIZE
#define EIGEN_VECTORIZE_SSE
2010-02-24 21:43:30 +01:00
#define EIGEN_VECTORIZE_SSE2
// Detect sse3/ssse3/sse4:
2010-04-22 20:40:31 -04:00
// gcc and icc defines __SSE3__, ...
2010-02-24 21:43:30 +01:00
// there is no way to know about this on msvc. You can define EIGEN_VECTORIZE_SSE* if you
// want to force the use of those instructions with msvc.
#ifdef __SSE3__
#define EIGEN_VECTORIZE_SSE3
#endif
#ifdef __SSSE3__
#define EIGEN_VECTORIZE_SSSE3
#endif
#ifdef __SSE4_1__
#define EIGEN_VECTORIZE_SSE4_1
#endif
#ifdef __SSE4_2__
#define EIGEN_VECTORIZE_SSE4_2
#endif
2014-01-29 11:43:05 -08:00
#ifdef __AVX__
#define EIGEN_VECTORIZE_AVX
#define EIGEN_VECTORIZE_SSE3
#define EIGEN_VECTORIZE_SSSE3
#define EIGEN_VECTORIZE_SSE4_1
#define EIGEN_VECTORIZE_SSE4_2
#endif
2015-07-22 18:22:16 -07:00
#ifdef __AVX2__
#define EIGEN_VECTORIZE_AVX2
#endif
#ifdef __FMA__
#define EIGEN_VECTORIZE_FMA
#endif
2016-11-03 04:50:28 -07:00
#if defined(__AVX512F__) && defined(EIGEN_ENABLE_AVX512)
2015-12-10 15:34:57 -08:00
#define EIGEN_VECTORIZE_AVX512
2016-10-06 10:29:48 -07:00
#define EIGEN_VECTORIZE_AVX2
2015-12-10 15:34:57 -08:00
#define EIGEN_VECTORIZE_AVX
#define EIGEN_VECTORIZE_FMA
#ifdef __AVX512DQ__
#define EIGEN_VECTORIZE_AVX512DQ
#endif
2018-04-03 14:36:27 +02:00
#ifdef __AVX512ER__
#define EIGEN_VECTORIZE_AVX512ER
#endif
2015-12-10 15:34:57 -08:00
#endif
2015-01-30 17:44:26 -05:00
2010-02-24 21:43:30 +01:00
// include files
2010-12-03 23:24:06 +01:00
2010-12-07 02:17:15 -05:00
// This extern "C" works around a MINGW-w64 compilation issue
2010-12-03 23:24:06 +01:00
// https://sourceforge.net/tracker/index.php?func=detail&aid=3018394&group_id=202880&atid=983354
// In essence, intrin.h is included by windows.h and also declares intrinsics (just as emmintrin.h etc. below do).
// However, intrin.h uses an extern "C" declaration, and g++ thus complains of duplicate declarations
// with conflicting linkage. The linkage for intrinsics doesn't matter, but at that stage the compiler doesn't know;
// so, to avoid compile errors when windows.h is included after Eigen/Core, ensure intrinsics are extern "C" here too.
2010-12-07 02:17:15 -05:00
// notice that since these are C headers, the extern "C" is theoretically needed anyways.
2010-12-03 23:24:06 +01:00
extern "C" {
2012-09-27 23:35:54 +02:00
// In theory we should only include immintrin.h and not the other *mmintrin.h header files directly.
// Doing so triggers some issues with ICC. However old gcc versions seems to not have this file, thus:
2014-11-04 21:58:52 +01:00
#if EIGEN_COMP_ICC >= 1110
2012-09-27 23:35:54 +02:00
#include <immintrin.h>
#else
2016-05-23 20:43:48 -07:00
#include <mmintrin.h>
2012-09-27 23:35:54 +02:00
#include <emmintrin.h>
#include <xmmintrin.h>
#ifdef EIGEN_VECTORIZE_SSE3
#include <pmmintrin.h>
#endif
#ifdef EIGEN_VECTORIZE_SSSE3
#include <tmmintrin.h>
#endif
#ifdef EIGEN_VECTORIZE_SSE4_1
#include <smmintrin.h>
#endif
#ifdef EIGEN_VECTORIZE_SSE4_2
#include <nmmintrin.h>
#endif
2015-12-10 15:34:57 -08:00
#if defined(EIGEN_VECTORIZE_AVX) || defined(EIGEN_VECTORIZE_AVX512)
2014-01-29 11:43:05 -08:00
#include <immintrin.h>
#endif
2012-09-27 23:35:54 +02:00
#endif
2010-12-03 23:24:06 +01:00
} // end extern "C"
2014-10-22 06:15:18 -04:00
#elif defined __VSX__
2008-08-28 15:28:23 +00:00
#define EIGEN_VECTORIZE
2024-01-23 22:04:55 +00:00
#define EIGEN_VECTORIZE_FMA
2014-10-22 06:15:18 -04:00
#define EIGEN_VECTORIZE_VSX
2008-08-28 15:28:23 +00:00
#include <altivec.h>
2008-12-16 15:17:29 +00:00
// We need to #undef all these ugly tokens defined in <altivec.h>
2008-08-28 15:28:23 +00:00
// => use __vector instead of vector
#undef bool
#undef vector
#undef pixel
2014-10-22 06:15:18 -04:00
#elif defined __ALTIVEC__
2014-08-29 20:03:49 +00:00
#define EIGEN_VECTORIZE
2024-01-23 22:04:55 +00:00
#define EIGEN_VECTORIZE_FMA
2014-10-22 06:15:18 -04:00
#define EIGEN_VECTORIZE_ALTIVEC
2014-08-29 20:03:49 +00:00
#include <altivec.h>
// We need to #undef all these ugly tokens defined in <altivec.h>
// => use __vector instead of vector
#undef bool
#undef vector
#undef pixel
2015-05-12 16:03:43 -07:00
#elif (defined __ARM_NEON) || (defined __ARM_NEON__)
2010-03-03 11:25:41 -06:00
#define EIGEN_VECTORIZE
#define EIGEN_VECTORIZE_NEON
2010-03-03 12:15:34 -06:00
#include <arm_neon.h>
2024-01-23 22:04:55 +00:00
// Enable FMA for ARM.
#if defined(__ARM_FEATURE_FMA)
#define EIGEN_VECTORIZE_FMA
#endif
2016-03-27 18:47:49 -04:00
#elif (defined __s390x__ && defined __VEC__)
#define EIGEN_VECTORIZE
#define EIGEN_VECTORIZE_ZVECTOR
#include <vecintrin.h>
2008-08-28 15:28:23 +00:00
#endif
#endif
2016-04-20 12:10:27 -07:00
#if defined(__F16C__) && !defined(EIGEN_COMP_CLANG)
2016-04-06 17:11:31 -07:00
// We can use the optimized fp16 to float and float to fp16 conversion routines
#define EIGEN_HAS_FP16_C
#endif
2022-02-04 22:24:31 +00:00
#if defined EIGEN_CUDACC
2014-10-03 19:55:35 -07:00
#define EIGEN_VECTORIZE_CUDA
#include <vector_types.h>
2025-03-11 19:20:03 -07:00
#if EIGEN_CUDA_SDK_VER >= 70500
2016-02-18 23:15:23 -08:00
#define EIGEN_HAS_CUDA_FP16
#endif
2014-10-03 19:55:35 -07:00
#endif
2016-04-19 17:44:12 -07:00
#if defined EIGEN_HAS_CUDA_FP16
2025-03-02 07:38:47 -08:00
#include <cuda_runtime_api.h>
2016-04-19 17:44:12 -07:00
#include <cuda_fp16.h>
#endif
2010-04-26 17:08:54 +02:00
#if (defined _OPENMP) && (!defined EIGEN_DONT_PARALLELIZE)
2010-02-22 11:08:37 +01:00
#define EIGEN_HAS_OPENMP
#endif
#ifdef EIGEN_HAS_OPENMP
#include <omp.h>
#endif
2010-10-07 18:09:15 +02:00
// MSVC for windows mobile does not have the errno.h file
2014-11-04 21:58:52 +01:00
#if !(EIGEN_COMP_MSVC && EIGEN_OS_WINCE) && !EIGEN_COMP_ARM
2010-10-07 18:09:15 +02:00
#define EIGEN_HAS_ERRNO
#endif
#ifdef EIGEN_HAS_ERRNO
2010-02-28 14:32:57 +01:00
#include <cerrno>
2010-10-07 18:09:15 +02:00
#endif
2011-04-19 16:34:25 +02:00
#include <cstddef>
2008-08-28 15:28:23 +00:00
#include <cstdlib>
#include <cmath>
#include <cassert>
#include <functional>
2020-02-24 23:09:36 +00:00
#include <sstream>
#ifndef EIGEN_NO_IO
#include <iosfwd>
#endif
2008-08-03 15:44:06 +00:00
#include <cstring>
2008-08-21 13:17:21 +00:00
#include <string>
2009-01-09 00:55:53 +00:00
#include <limits>
2011-02-07 10:55:41 -05:00
#include <climits> // for CHAR_BIT
2009-07-10 16:10:03 +02:00
// for min/max:
#include <algorithm>
2008-05-03 12:21:23 +00:00
2016-06-03 14:28:25 +02:00
// for std::is_nothrow_move_assignable
#ifdef EIGEN_INCLUDE_TYPE_TRAITS
#include <type_traits>
#endif
2010-02-27 19:04:22 -05:00
// for outputting debug info
#ifdef EIGEN_DEBUG_ASSIGN
2011-02-16 08:50:19 -05:00
#include <iostream>
2010-02-27 19:04:22 -05:00
#endif
2010-06-21 18:39:24 +02:00
// required for __cpuid, needs to be included after cmath
2014-11-04 21:58:52 +01:00
#if EIGEN_COMP_MSVC && EIGEN_ARCH_i386_OR_x86_64 && !EIGEN_OS_WINCE
2010-06-21 18:39:24 +02:00
#include <intrin.h>
#endif
2011-05-03 17:08:14 +01:00
/** \brief Namespace containing all symbols from the %Eigen library. */
2007-12-28 16:20:00 +00:00
namespace Eigen {
2010-02-25 06:43:45 -05:00
inline static const char *SimdInstructionSetsInUse(void) {
2015-12-10 15:34:57 -08:00
#if defined(EIGEN_VECTORIZE_AVX512)
2016-10-06 10:29:48 -07:00
return "AVX512, FMA, AVX2, AVX, SSE, SSE2, SSE3, SSSE3, SSE4.1, SSE4.2";
2015-12-10 15:34:57 -08:00
#elif defined(EIGEN_VECTORIZE_AVX)
2014-01-29 11:43:05 -08:00
return "AVX SSE, SSE2, SSE3, SSSE3, SSE4.1, SSE4.2";
#elif defined(EIGEN_VECTORIZE_SSE4_2)
2010-02-25 06:43:45 -05:00
return "SSE, SSE2, SSE3, SSSE3, SSE4.1, SSE4.2";
2010-02-25 05:31:22 +01:00
#elif defined(EIGEN_VECTORIZE_SSE4_1)
2010-02-25 06:43:45 -05:00
return "SSE, SSE2, SSE3, SSSE3, SSE4.1";
2010-02-24 21:52:08 +01:00
#elif defined(EIGEN_VECTORIZE_SSSE3)
2010-02-25 06:43:45 -05:00
return "SSE, SSE2, SSE3, SSSE3";
2010-02-24 21:52:08 +01:00
#elif defined(EIGEN_VECTORIZE_SSE3)
2010-02-25 06:43:45 -05:00
return "SSE, SSE2, SSE3";
2010-02-24 21:52:08 +01:00
#elif defined(EIGEN_VECTORIZE_SSE2)
2010-02-25 06:43:45 -05:00
return "SSE, SSE2";
2010-02-24 21:52:08 +01:00
#elif defined(EIGEN_VECTORIZE_ALTIVEC)
2010-02-25 06:43:45 -05:00
return "AltiVec";
2014-08-29 20:03:49 +00:00
#elif defined(EIGEN_VECTORIZE_VSX)
return "VSX";
2010-03-03 11:25:41 -06:00
#elif defined(EIGEN_VECTORIZE_NEON)
return "ARM NEON";
2016-03-27 18:47:49 -04:00
#elif defined(EIGEN_VECTORIZE_ZVECTOR)
return "S390X ZVECTOR";
2010-02-24 21:52:08 +01:00
#else
return "None";
#endif
}
2012-04-15 11:06:28 +01:00
} // end namespace Eigen
2014-07-01 16:58:11 +02:00
#if defined EIGEN2_SUPPORT_STAGE40_FULL_EIGEN3_STRICTNESS || defined EIGEN2_SUPPORT_STAGE30_FULL_EIGEN3_API || defined EIGEN2_SUPPORT_STAGE20_RESOLVE_API_CONFLICTS || defined EIGEN2_SUPPORT_STAGE10_FULL_EIGEN2_API || defined EIGEN2_SUPPORT
// This will generate an error message:
#error Eigen2-support is only available up to version 3.2. Please go to "http://eigen.tuxfamily.org/index.php?title=Eigen2" for further information
2010-04-22 20:49:01 -04:00
#endif
2017-01-23 22:03:57 +01:00
namespace Eigen {
2010-02-12 09:03:16 -05:00
// we use size_t frequently and we'll never remember to prepend it with std:: everytime just to
// ensure QNX/QCC support
using std::size_t;
2016-04-01 10:27:59 -07:00
// gcc 4.6.0 wants std:: for ptrdiff_t
2011-05-05 18:48:18 +02:00
using std::ptrdiff_t;
2010-02-12 09:03:16 -05:00
2017-01-23 22:03:57 +01:00
}
2008-08-26 19:12:23 +00:00
/** \defgroup Core_Module Core module
2008-08-26 23:07:33 +00:00
* This is the main module of Eigen providing dense matrix and vector support
* (both fixed and dynamic size) with all the features corresponding to a BLAS library
* and much more...
2008-08-26 19:12:23 +00:00
*
* \code
* #include <Eigen/Core>
* \endcode
*/
2008-08-28 15:28:23 +00:00
#include "src/Core/util/Constants.h"
#include "src/Core/util/Meta.h"
2014-02-18 11:03:59 +01:00
#include "src/Core/util/ForwardDeclarations.h"
2008-08-28 15:28:23 +00:00
#include "src/Core/util/StaticAssert.h"
2013-06-10 23:40:56 +02:00
#include "src/Core/util/XprHelper.h"
2008-08-26 19:12:23 +00:00
#include "src/Core/util/Memory.h"
2008-08-28 00:33:58 +00:00
2007-12-28 16:20:00 +00:00
#include "src/Core/NumTraits.h"
#include "src/Core/MathFunctions.h"
2008-08-26 19:12:23 +00:00
#include "src/Core/GenericPacketMath.h"
2016-08-23 14:23:08 +02:00
#include "src/Core/MathFunctionsImpl.h"
2017-06-15 10:16:30 +02:00
#include "src/Core/arch/Default/ConjHelper.h"
2008-05-12 08:30:42 +00:00
2015-12-10 15:34:57 -08:00
#if defined EIGEN_VECTORIZE_AVX512
#include "src/Core/arch/SSE/PacketMath.h"
2020-08-25 17:05:17 +02:00
#include "src/Core/arch/SSE/MathFunctions.h"
2015-12-10 15:34:57 -08:00
#include "src/Core/arch/AVX/PacketMath.h"
2020-08-25 17:05:17 +02:00
#include "src/Core/arch/AVX/MathFunctions.h"
2015-12-10 15:34:57 -08:00
#include "src/Core/arch/AVX512/PacketMath.h"
2016-02-04 10:34:10 -08:00
#include "src/Core/arch/AVX512/MathFunctions.h"
2015-12-10 15:34:57 -08:00
#elif defined EIGEN_VECTORIZE_AVX
2014-01-29 11:43:05 -08:00
// Use AVX for floats and doubles, SSE for integers
2014-03-27 14:47:00 +01:00
#include "src/Core/arch/SSE/PacketMath.h"
#include "src/Core/arch/SSE/Complex.h"
2015-08-07 17:40:39 +02:00
#include "src/Core/arch/SSE/MathFunctions.h"
2014-01-29 11:43:05 -08:00
#include "src/Core/arch/AVX/PacketMath.h"
2015-02-13 16:07:08 -08:00
#include "src/Core/arch/AVX/MathFunctions.h"
2014-01-29 11:43:05 -08:00
#include "src/Core/arch/AVX/Complex.h"
2015-02-27 08:46:04 -08:00
#include "src/Core/arch/AVX/TypeCasting.h"
2018-05-29 20:46:46 +02:00
#include "src/Core/arch/SSE/TypeCasting.h"
2014-01-29 11:43:05 -08:00
#elif defined EIGEN_VECTORIZE_SSE
2008-12-16 15:17:29 +00:00
#include "src/Core/arch/SSE/PacketMath.h"
2009-03-27 14:41:46 +00:00
#include "src/Core/arch/SSE/MathFunctions.h"
2010-07-05 16:18:09 +02:00
#include "src/Core/arch/SSE/Complex.h"
2015-02-27 08:46:04 -08:00
#include "src/Core/arch/SSE/TypeCasting.h"
2014-09-09 16:58:48 +00:00
#elif defined(EIGEN_VECTORIZE_ALTIVEC) || defined(EIGEN_VECTORIZE_VSX)
2014-08-29 20:03:49 +00:00
#include "src/Core/arch/AltiVec/PacketMath.h"
2015-07-30 11:12:42 -07:00
#include "src/Core/arch/AltiVec/MathFunctions.h"
2014-08-29 20:03:49 +00:00
#include "src/Core/arch/AltiVec/Complex.h"
2010-03-03 11:25:41 -06:00
#elif defined EIGEN_VECTORIZE_NEON
#include "src/Core/arch/NEON/PacketMath.h"
2015-02-10 14:02:38 -08:00
#include "src/Core/arch/NEON/MathFunctions.h"
2010-07-10 00:09:29 +03:00
#include "src/Core/arch/NEON/Complex.h"
2016-03-27 18:47:49 -04:00
#elif defined EIGEN_VECTORIZE_ZVECTOR
#include "src/Core/arch/ZVector/PacketMath.h"
2016-04-05 05:59:30 -04:00
#include "src/Core/arch/ZVector/MathFunctions.h"
#include "src/Core/arch/ZVector/Complex.h"
2008-05-05 17:19:47 +00:00
#endif
2016-05-23 15:21:40 -07:00
// Half float support
2016-03-11 17:21:42 -08:00
#include "src/Core/arch/CUDA/Half.h"
2016-05-23 15:21:40 -07:00
#include "src/Core/arch/CUDA/PacketMathHalf.h"
#include "src/Core/arch/CUDA/TypeCasting.h"
2016-03-11 17:21:42 -08:00
2014-10-03 19:45:19 -07:00
#if defined EIGEN_VECTORIZE_CUDA
#include "src/Core/arch/CUDA/PacketMath.h"
#include "src/Core/arch/CUDA/MathFunctions.h"
#endif
2010-03-03 18:47:58 +01:00
#include "src/Core/arch/Default/Settings.h"
2008-05-12 17:34:46 +00:00
2016-06-02 17:04:19 -07:00
#include "src/Core/functors/TernaryFunctors.h"
2013-11-06 10:36:10 +01:00
#include "src/Core/functors/BinaryFunctors.h"
#include "src/Core/functors/UnaryFunctors.h"
#include "src/Core/functors/NullaryFunctors.h"
#include "src/Core/functors/StlFunctors.h"
2013-12-02 15:07:45 +01:00
#include "src/Core/functors/AssignmentFunctors.h"
2013-11-06 10:36:10 +01:00
2016-10-03 11:06:24 -07:00
// Specialized functors to enable the processing of complex numbers
// on CUDA devices
#include "src/Core/arch/CUDA/Complex.h"
2017-02-13 09:46:20 +01:00
#include "src/Core/IO.h"
2010-05-08 16:02:13 -04:00
#include "src/Core/DenseCoeffsBase.h"
2009-12-04 23:17:14 +01:00
#include "src/Core/DenseBase.h"
2007-12-28 16:20:00 +00:00
#include "src/Core/MatrixBase.h"
2010-02-20 15:26:02 +01:00
#include "src/Core/EigenBase.h"
2008-12-16 15:17:29 +00:00
2013-11-07 16:38:14 +01:00
#include "src/Core/Product.h"
#include "src/Core/CoreEvaluators.h"
#include "src/Core/AssignEvaluator.h"
2008-06-02 19:29:23 +00:00
#ifndef EIGEN_PARSED_BY_DOXYGEN // work around Doxygen bug triggered by Assign.h r814874
// at least confirmed with Doxygen 1.5.5 and 1.5.6
2008-12-16 15:17:29 +00:00
#include "src/Core/Assign.h"
2008-06-02 19:29:23 +00:00
#endif
2008-12-16 15:17:29 +00:00
2013-08-19 16:40:50 +02:00
#include "src/Core/ArrayBase.h"
2009-08-15 22:19:29 +02:00
#include "src/Core/util/BlasUtil.h"
2010-10-20 09:34:13 -04:00
#include "src/Core/DenseStorage.h"
2008-05-28 05:14:16 +00:00
#include "src/Core/NestByValue.h"
2014-09-18 15:15:27 +02:00
// #include "src/Core/ForceAlignedAccess.h"
2009-03-04 13:00:00 +00:00
#include "src/Core/ReturnByValue.h"
2009-08-15 18:35:51 +02:00
#include "src/Core/NoAlias.h"
2010-10-20 09:34:13 -04:00
#include "src/Core/PlainObjectBase.h"
2007-12-28 16:20:00 +00:00
#include "src/Core/Matrix.h"
2010-12-15 15:19:51 +01:00
#include "src/Core/Array.h"
2016-06-02 17:04:19 -07:00
#include "src/Core/CwiseTernaryOp.h"
2008-02-29 14:35:14 +00:00
#include "src/Core/CwiseBinaryOp.h"
2008-03-03 10:52:44 +00:00
#include "src/Core/CwiseUnaryOp.h"
2008-04-24 18:35:39 +00:00
#include "src/Core/CwiseNullaryOp.h"
2009-05-20 15:41:23 +02:00
#include "src/Core/CwiseUnaryView.h"
2010-07-19 23:32:13 +02:00
#include "src/Core/SelfCwiseBinaryOp.h"
2008-07-09 22:30:18 +00:00
#include "src/Core/Dot.h"
2009-07-17 16:22:39 +02:00
#include "src/Core/StableNorm.h"
2010-02-18 20:42:38 -05:00
#include "src/Core/Stride.h"
2014-02-18 11:03:59 +01:00
#include "src/Core/MapBase.h"
2008-08-09 18:41:24 +00:00
#include "src/Core/Map.h"
2014-02-18 11:03:59 +01:00
#include "src/Core/Ref.h"
2007-12-28 16:20:00 +00:00
#include "src/Core/Block.h"
2009-07-05 11:33:55 +02:00
#include "src/Core/VectorBlock.h"
2007-12-28 16:20:00 +00:00
#include "src/Core/Transpose.h"
#include "src/Core/DiagonalMatrix.h"
2009-05-10 16:24:39 +00:00
#include "src/Core/Diagonal.h"
2009-06-28 21:27:37 +02:00
#include "src/Core/DiagonalProduct.h"
2008-03-16 14:36:25 +00:00
#include "src/Core/Redux.h"
#include "src/Core/Visitor.h"
2007-12-28 16:20:00 +00:00
#include "src/Core/Fuzzy.h"
2008-01-15 13:55:47 +00:00
#include "src/Core/Swap.h"
2008-03-08 19:02:24 +00:00
#include "src/Core/CommaInitializer.h"
2011-03-23 16:12:21 +01:00
#include "src/Core/GeneralProduct.h"
2014-02-19 11:33:29 +01:00
#include "src/Core/Solve.h"
2014-02-24 11:49:30 +01:00
#include "src/Core/Inverse.h"
2015-12-01 14:38:47 +01:00
#include "src/Core/SolverBase.h"
2015-10-08 18:36:39 +02:00
#include "src/Core/PermutationMatrix.h"
#include "src/Core/Transpositions.h"
2009-07-06 23:43:20 +02:00
#include "src/Core/TriangularMatrix.h"
#include "src/Core/SelfAdjointView.h"
2012-06-14 14:24:15 +02:00
#include "src/Core/products/GeneralBlockPanelKernel.h"
2010-02-22 11:08:37 +01:00
#include "src/Core/products/Parallelizer.h"
2014-02-21 16:43:03 +01:00
#include "src/Core/ProductEvaluators.h"
2009-08-06 12:20:02 +02:00
#include "src/Core/products/GeneralMatrixVector.h"
#include "src/Core/products/GeneralMatrixMatrix.h"
2012-06-12 11:40:33 +02:00
#include "src/Core/SolveTriangular.h"
2010-11-10 18:58:55 +01:00
#include "src/Core/products/GeneralMatrixMatrixTriangular.h"
2009-08-06 12:20:02 +02:00
#include "src/Core/products/SelfadjointMatrixVector.h"
#include "src/Core/products/SelfadjointMatrixMatrix.h"
2009-07-23 19:01:20 +02:00
#include "src/Core/products/SelfadjointProduct.h"
2009-07-11 21:14:59 +02:00
#include "src/Core/products/SelfadjointRank2Update.h"
2009-07-13 13:17:55 +02:00
#include "src/Core/products/TriangularMatrixVector.h"
2009-07-27 10:27:01 +02:00
#include "src/Core/products/TriangularMatrixMatrix.h"
2009-08-06 12:20:02 +02:00
#include "src/Core/products/TriangularSolverMatrix.h"
2010-11-05 12:43:14 +01:00
#include "src/Core/products/TriangularSolverVector.h"
2009-07-14 23:27:37 +02:00
#include "src/Core/BandMatrix.h"
2013-01-15 22:03:54 +01:00
#include "src/Core/CoreIterators.h"
2016-04-01 10:27:59 -07:00
#include "src/Core/ConditionEstimator.h"
2008-05-31 23:21:49 +00:00
2010-06-19 23:36:38 +02:00
#include "src/Core/BooleanRedux.h"
#include "src/Core/Select.h"
#include "src/Core/VectorwiseOp.h"
#include "src/Core/Random.h"
#include "src/Core/Replicate.h"
#include "src/Core/Reverse.h"
#include "src/Core/ArrayWrapper.h"
2010-01-20 20:51:01 +01:00
2011-12-09 10:06:49 +01:00
#ifdef EIGEN_USE_BLAS
2016-04-11 16:04:09 +02:00
#include "src/Core/products/GeneralMatrixMatrix_BLAS.h"
#include "src/Core/products/GeneralMatrixVector_BLAS.h"
#include "src/Core/products/GeneralMatrixMatrixTriangular_BLAS.h"
#include "src/Core/products/SelfadjointMatrixMatrix_BLAS.h"
#include "src/Core/products/SelfadjointMatrixVector_BLAS.h"
#include "src/Core/products/TriangularMatrixMatrix_BLAS.h"
#include "src/Core/products/TriangularMatrixVector_BLAS.h"
#include "src/Core/products/TriangularSolverMatrix_BLAS.h"
2011-12-09 10:06:49 +01:00
#endif // EIGEN_USE_BLAS
#ifdef EIGEN_USE_MKL_VML
2011-12-05 14:52:21 +07:00
#include "src/Core/Assign_MKL.h"
#endif
2011-03-23 11:54:00 +01:00
2010-06-19 23:36:38 +02:00
#include "src/Core/GlobalFunctions.h"
2010-01-27 23:23:59 +01:00
2011-02-22 09:31:22 -05:00
#include "src/Core/util/ReenableStupidWarnings.h"
2008-12-18 20:48:02 +00:00
2008-03-26 09:13:11 +00:00
#endif // EIGEN_CORE_H