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
2011-02-22 09:31:22 -05:00
// first thing Eigen does: stop the compiler from committing suicide
#include "src/Core/util/DisableStupidWarnings.h"
2009-01-10 14:10:40 +00:00
2013-02-21 19:05:23 +01:00
// Handle NVCC/CUDA
#ifdef __CUDACC__
2013-04-19 11:14:17 +02:00
// Do not try asserts on CUDA!
2013-11-05 15:41:45 +01:00
#ifndef EIGEN_NO_DEBUG
2013-04-19 11:14:17 +02:00
#define EIGEN_NO_DEBUG
2013-11-05 15:41:45 +01:00
#endif
#ifdef EIGEN_INTERNAL_DEBUGGING
#undef EIGEN_INTERNAL_DEBUGGING
#endif
2013-02-21 19:05:23 +01:00
// Do not try to vectorize on CUDA!
#define EIGEN_DONT_VECTORIZE
2013-04-05 16:35:49 +02:00
2013-02-21 19:05:23 +01:00
// All functions callable from CUDA code must be qualified with __device__
#define EIGEN_DEVICE_FUNC __host__ __device__
2013-04-05 16:35:49 +02:00
2013-02-21 19:05:23 +01:00
#else
#define EIGEN_DEVICE_FUNC
2013-04-05 16:35:49 +02:00
#endif
#if defined(__CUDA_ARCH__)
2013-08-01 16:26:57 +02:00
#define EIGEN_USING_STD_MATH(FUNC) using ::FUNC;
2013-04-05 16:35:49 +02:00
#else
#define EIGEN_USING_STD_MATH(FUNC) using std::FUNC;
2013-02-21 19:05:23 +01:00
#endif
2014-08-20 16:39:25 +02:00
#if (defined(_CPPUNWIND) || defined(__EXCEPTIONS)) && !defined(__CUDA_ARCH__) && !defined(EIGEN_EXCEPTIONS)
2014-07-22 13:16:44 +02:00
#define EIGEN_EXCEPTIONS
#endif
#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.
#if defined(__MINGW32__) && EIGEN_GNUC_AT_LEAST(4,6)
#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"
2010-03-06 09:05:15 -05:00
// if alignment is disabled, then disable vectorization. Note: EIGEN_ALIGN is the proper check, it takes into
// account both the user's will (EIGEN_DONT_ALIGN) and our own platform checks
#if !EIGEN_ALIGN
#ifndef EIGEN_DONT_VECTORIZE
#define EIGEN_DONT_VECTORIZE
#endif
#endif
2008-08-28 15:28:23 +00:00
#ifdef _MSC_VER
2009-01-10 14:10:40 +00:00
#include <malloc.h> // for _aligned_malloc -- need it regardless of whether vectorization is enabled
2008-12-16 15:17:29 +00:00
#if (_MSC_VER >= 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.
#if (defined(_M_IX86_FP) && (_M_IX86_FP >= 2)) || defined(_M_X64)
#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
2013-04-11 19:48:34 +02:00
#if (defined __SSE2__) && ( (!defined __GNUC__) || (defined __INTEL_COMPILER) || 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
2008-12-16 15:17:29 +00:00
#ifndef EIGEN_DONT_VECTORIZE
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
2014-02-24 13:45:32 -08:00
#ifdef __FMA__
#define EIGEN_VECTORIZE_FMA
#endif
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-03-26 22:26:07 -04:00
#if defined(__INTEL_COMPILER) && __INTEL_COMPILER >= 1110
2012-09-27 23:35:54 +02:00
#include <immintrin.h>
#else
#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
2014-01-29 11:43:05 -08:00
#ifdef EIGEN_VECTORIZE_AVX
#include <immintrin.h>
#endif
2012-09-27 23:35:54 +02:00
#endif
2010-12-03 23:24:06 +01:00
} // end extern "C"
2008-12-16 15:17:29 +00:00
#elif defined __ALTIVEC__
2008-08-28 15:28:23 +00:00
#define EIGEN_VECTORIZE
#define EIGEN_VECTORIZE_ALTIVEC
#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
2010-03-03 11:25:41 -06:00
#elif defined __ARM_NEON__
#define EIGEN_VECTORIZE
#define EIGEN_VECTORIZE_NEON
2010-03-03 12:15:34 -06:00
#include <arm_neon.h>
2008-08-28 15:28:23 +00:00
#endif
#endif
2014-10-03 19:55:35 -07:00
#if defined __CUDACC__
#define EIGEN_VECTORIZE_CUDA
#include <vector_types.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
2012-06-04 10:21:16 -05:00
#if !(defined(_MSC_VER) && defined(_WIN32_WCE)) && !defined(__ARMCC_VERSION)
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>
2010-02-27 19:04:22 -05:00
#include <iosfwd>
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
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-07-02 16:13:05 +02:00
#if defined(_MSC_VER) && (defined(_M_IX86)||defined(_M_X64)) && (!defined(_WIN32_WCE))
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) {
2014-01-29 11:43:05 -08:00
#if defined(EIGEN_VECTORIZE_AVX)
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";
2010-03-03 11:25:41 -06:00
#elif defined(EIGEN_VECTORIZE_NEON)
return "ARM NEON";
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
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;
2011-05-05 18:48:18 +02:00
// gcc 4.6.0 wants std:: for ptrdiff_t
using std::ptrdiff_t;
2010-02-12 09:03:16 -05: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/ForwardDeclarations.h"
#include "src/Core/util/Meta.h"
#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"
2008-05-12 08:30:42 +00:00
2014-01-29 11:43:05 -08:00
#if defined EIGEN_VECTORIZE_AVX
// 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"
2014-01-29 11:43:05 -08:00
#include "src/Core/arch/AVX/PacketMath.h"
#include "src/Core/arch/AVX/Complex.h"
#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"
2008-05-05 17:19:47 +00:00
#elif defined EIGEN_VECTORIZE_ALTIVEC
2008-12-16 15:17:29 +00:00
#include "src/Core/arch/AltiVec/PacketMath.h"
2010-07-09 17:56:53 +03: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"
2010-07-10 00:09:29 +03:00
#include "src/Core/arch/NEON/Complex.h"
2008-05-05 17:19:47 +00:00
#endif
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
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"
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
#ifdef EIGEN_ENABLE_EVALUATORS
#include "src/Core/functors/AssignmentFunctors.h"
#include "src/Core/Product.h"
#include "src/Core/CoreEvaluators.h"
#include "src/Core/AssignEvaluator.h"
#include "src/Core/ProductEvaluators.h"
#endif
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"
2009-11-20 16:30:14 +01: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"
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"
2008-08-09 18:41:24 +00:00
#include "src/Core/MapBase.h"
2010-02-18 20:42:38 -05:00
#include "src/Core/Stride.h"
2008-08-09 18:41:24 +00:00
#include "src/Core/Map.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"
2012-07-05 17:00:28 +02:00
#include "src/Core/Ref.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"
2009-11-15 21:12:15 -05:00
#include "src/Core/PermutationMatrix.h"
2010-06-04 23:17:57 +02:00
#include "src/Core/Transpositions.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"
#include "src/Core/IO.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"
2010-02-04 18:28:09 +01:00
#include "src/Core/Flagged.h"
2009-08-04 16:54:17 +02:00
#include "src/Core/ProductBase.h"
2011-03-23 16:12:21 +01:00
#include "src/Core/GeneralProduct.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"
2010-02-09 11:05:39 +01:00
#include "src/Core/products/CoeffBasedProduct.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"
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
#include "src/Core/products/GeneralMatrixMatrix_MKL.h"
#include "src/Core/products/GeneralMatrixVector_MKL.h"
#include "src/Core/products/GeneralMatrixMatrixTriangular_MKL.h"
#include "src/Core/products/SelfadjointMatrixMatrix_MKL.h"
#include "src/Core/products/SelfadjointMatrixVector_MKL.h"
#include "src/Core/products/TriangularMatrixMatrix_MKL.h"
#include "src/Core/products/TriangularMatrixVector_MKL.h"
#include "src/Core/products/TriangularSolverMatrix_MKL.h"
#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