xref: /aosp_15_r20/external/eigen/Eigen/Core (revision bf2c37156dfe67e5dfebd6d394bad8b2ab5804d4)
1*bf2c3715SXin Li// This file is part of Eigen, a lightweight C++ template library
2*bf2c3715SXin Li// for linear algebra.
3*bf2c3715SXin Li//
4*bf2c3715SXin Li// Copyright (C) 2008 Gael Guennebaud <[email protected]>
5*bf2c3715SXin Li// Copyright (C) 2007-2011 Benoit Jacob <[email protected]>
6*bf2c3715SXin Li//
7*bf2c3715SXin Li// This Source Code Form is subject to the terms of the Mozilla
8*bf2c3715SXin Li// Public License v. 2.0. If a copy of the MPL was not distributed
9*bf2c3715SXin Li// with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
10*bf2c3715SXin Li
11*bf2c3715SXin Li#ifndef EIGEN_CORE_H
12*bf2c3715SXin Li#define EIGEN_CORE_H
13*bf2c3715SXin Li
14*bf2c3715SXin Li// first thing Eigen does: stop the compiler from reporting useless warnings.
15*bf2c3715SXin Li#include "src/Core/util/DisableStupidWarnings.h"
16*bf2c3715SXin Li
17*bf2c3715SXin Li// then include this file where all our macros are defined. It's really important to do it first because
18*bf2c3715SXin Li// it's where we do all the compiler/OS/arch detections and define most defaults.
19*bf2c3715SXin Li#include "src/Core/util/Macros.h"
20*bf2c3715SXin Li
21*bf2c3715SXin Li// This detects SSE/AVX/NEON/etc. and configure alignment settings
22*bf2c3715SXin Li#include "src/Core/util/ConfigureVectorization.h"
23*bf2c3715SXin Li
24*bf2c3715SXin Li// We need cuda_runtime.h/hip_runtime.h to ensure that
25*bf2c3715SXin Li// the EIGEN_USING_STD macro works properly on the device side
26*bf2c3715SXin Li#if defined(EIGEN_CUDACC)
27*bf2c3715SXin Li  #include <cuda_runtime.h>
28*bf2c3715SXin Li#elif defined(EIGEN_HIPCC)
29*bf2c3715SXin Li  #include <hip/hip_runtime.h>
30*bf2c3715SXin Li#endif
31*bf2c3715SXin Li
32*bf2c3715SXin Li
33*bf2c3715SXin Li#ifdef EIGEN_EXCEPTIONS
34*bf2c3715SXin Li  #include <new>
35*bf2c3715SXin Li#endif
36*bf2c3715SXin Li
37*bf2c3715SXin Li// Disable the ipa-cp-clone optimization flag with MinGW 6.x or newer (enabled by default with -O3)
38*bf2c3715SXin Li// See http://eigen.tuxfamily.org/bz/show_bug.cgi?id=556 for details.
39*bf2c3715SXin Li#if EIGEN_COMP_MINGW && EIGEN_GNUC_AT_LEAST(4,6) && EIGEN_GNUC_AT_MOST(5,5)
40*bf2c3715SXin Li  #pragma GCC optimize ("-fno-ipa-cp-clone")
41*bf2c3715SXin Li#endif
42*bf2c3715SXin Li
43*bf2c3715SXin Li// Prevent ICC from specializing std::complex operators that silently fail
44*bf2c3715SXin Li// on device. This allows us to use our own device-compatible specializations
45*bf2c3715SXin Li// instead.
46*bf2c3715SXin Li#if defined(EIGEN_COMP_ICC) && defined(EIGEN_GPU_COMPILE_PHASE) \
47*bf2c3715SXin Li    && !defined(_OVERRIDE_COMPLEX_SPECIALIZATION_)
48*bf2c3715SXin Li#define _OVERRIDE_COMPLEX_SPECIALIZATION_ 1
49*bf2c3715SXin Li#endif
50*bf2c3715SXin Li#include <complex>
51*bf2c3715SXin Li
52*bf2c3715SXin Li// this include file manages BLAS and MKL related macros
53*bf2c3715SXin Li// and inclusion of their respective header files
54*bf2c3715SXin Li#include "src/Core/util/MKL_support.h"
55*bf2c3715SXin Li
56*bf2c3715SXin Li
57*bf2c3715SXin Li#if defined(EIGEN_HAS_CUDA_FP16) || defined(EIGEN_HAS_HIP_FP16)
58*bf2c3715SXin Li  #define EIGEN_HAS_GPU_FP16
59*bf2c3715SXin Li#endif
60*bf2c3715SXin Li
61*bf2c3715SXin Li#if defined(EIGEN_HAS_CUDA_BF16) || defined(EIGEN_HAS_HIP_BF16)
62*bf2c3715SXin Li  #define EIGEN_HAS_GPU_BF16
63*bf2c3715SXin Li#endif
64*bf2c3715SXin Li
65*bf2c3715SXin Li#if (defined _OPENMP) && (!defined EIGEN_DONT_PARALLELIZE)
66*bf2c3715SXin Li  #define EIGEN_HAS_OPENMP
67*bf2c3715SXin Li#endif
68*bf2c3715SXin Li
69*bf2c3715SXin Li#ifdef EIGEN_HAS_OPENMP
70*bf2c3715SXin Li#include <omp.h>
71*bf2c3715SXin Li#endif
72*bf2c3715SXin Li
73*bf2c3715SXin Li// MSVC for windows mobile does not have the errno.h file
74*bf2c3715SXin Li#if !(EIGEN_COMP_MSVC && EIGEN_OS_WINCE) && !EIGEN_COMP_ARM
75*bf2c3715SXin Li#define EIGEN_HAS_ERRNO
76*bf2c3715SXin Li#endif
77*bf2c3715SXin Li
78*bf2c3715SXin Li#ifdef EIGEN_HAS_ERRNO
79*bf2c3715SXin Li#include <cerrno>
80*bf2c3715SXin Li#endif
81*bf2c3715SXin Li#include <cstddef>
82*bf2c3715SXin Li#include <cstdlib>
83*bf2c3715SXin Li#include <cmath>
84*bf2c3715SXin Li#include <cassert>
85*bf2c3715SXin Li#include <functional>
86*bf2c3715SXin Li#include <sstream>
87*bf2c3715SXin Li#ifndef EIGEN_NO_IO
88*bf2c3715SXin Li  #include <iosfwd>
89*bf2c3715SXin Li#endif
90*bf2c3715SXin Li#include <cstring>
91*bf2c3715SXin Li#include <string>
92*bf2c3715SXin Li#include <limits>
93*bf2c3715SXin Li#include <climits> // for CHAR_BIT
94*bf2c3715SXin Li// for min/max:
95*bf2c3715SXin Li#include <algorithm>
96*bf2c3715SXin Li
97*bf2c3715SXin Li#if EIGEN_HAS_CXX11
98*bf2c3715SXin Li#include <array>
99*bf2c3715SXin Li#endif
100*bf2c3715SXin Li
101*bf2c3715SXin Li// for std::is_nothrow_move_assignable
102*bf2c3715SXin Li#ifdef EIGEN_INCLUDE_TYPE_TRAITS
103*bf2c3715SXin Li#include <type_traits>
104*bf2c3715SXin Li#endif
105*bf2c3715SXin Li
106*bf2c3715SXin Li// for outputting debug info
107*bf2c3715SXin Li#ifdef EIGEN_DEBUG_ASSIGN
108*bf2c3715SXin Li#include <iostream>
109*bf2c3715SXin Li#endif
110*bf2c3715SXin Li
111*bf2c3715SXin Li// required for __cpuid, needs to be included after cmath
112*bf2c3715SXin Li#if EIGEN_COMP_MSVC && EIGEN_ARCH_i386_OR_x86_64 && !EIGEN_OS_WINCE
113*bf2c3715SXin Li  #include <intrin.h>
114*bf2c3715SXin Li#endif
115*bf2c3715SXin Li
116*bf2c3715SXin Li#if defined(EIGEN_USE_SYCL)
117*bf2c3715SXin Li  #undef min
118*bf2c3715SXin Li  #undef max
119*bf2c3715SXin Li  #undef isnan
120*bf2c3715SXin Li  #undef isinf
121*bf2c3715SXin Li  #undef isfinite
122*bf2c3715SXin Li  #include <CL/sycl.hpp>
123*bf2c3715SXin Li  #include <map>
124*bf2c3715SXin Li  #include <memory>
125*bf2c3715SXin Li  #include <utility>
126*bf2c3715SXin Li  #include <thread>
127*bf2c3715SXin Li  #ifndef EIGEN_SYCL_LOCAL_THREAD_DIM0
128*bf2c3715SXin Li  #define EIGEN_SYCL_LOCAL_THREAD_DIM0 16
129*bf2c3715SXin Li  #endif
130*bf2c3715SXin Li  #ifndef EIGEN_SYCL_LOCAL_THREAD_DIM1
131*bf2c3715SXin Li  #define EIGEN_SYCL_LOCAL_THREAD_DIM1 16
132*bf2c3715SXin Li  #endif
133*bf2c3715SXin Li#endif
134*bf2c3715SXin Li
135*bf2c3715SXin Li
136*bf2c3715SXin Li#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
137*bf2c3715SXin Li// This will generate an error message:
138*bf2c3715SXin Li#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
139*bf2c3715SXin Li#endif
140*bf2c3715SXin Li
141*bf2c3715SXin Linamespace Eigen {
142*bf2c3715SXin Li
143*bf2c3715SXin Li// we use size_t frequently and we'll never remember to prepend it with std:: every time just to
144*bf2c3715SXin Li// ensure QNX/QCC support
145*bf2c3715SXin Liusing std::size_t;
146*bf2c3715SXin Li// gcc 4.6.0 wants std:: for ptrdiff_t
147*bf2c3715SXin Liusing std::ptrdiff_t;
148*bf2c3715SXin Li
149*bf2c3715SXin Li}
150*bf2c3715SXin Li
151*bf2c3715SXin Li/** \defgroup Core_Module Core module
152*bf2c3715SXin Li  * This is the main module of Eigen providing dense matrix and vector support
153*bf2c3715SXin Li  * (both fixed and dynamic size) with all the features corresponding to a BLAS library
154*bf2c3715SXin Li  * and much more...
155*bf2c3715SXin Li  *
156*bf2c3715SXin Li  * \code
157*bf2c3715SXin Li  * #include <Eigen/Core>
158*bf2c3715SXin Li  * \endcode
159*bf2c3715SXin Li  */
160*bf2c3715SXin Li
161*bf2c3715SXin Li#include "src/Core/util/Constants.h"
162*bf2c3715SXin Li#include "src/Core/util/Meta.h"
163*bf2c3715SXin Li#include "src/Core/util/ForwardDeclarations.h"
164*bf2c3715SXin Li#include "src/Core/util/StaticAssert.h"
165*bf2c3715SXin Li#include "src/Core/util/XprHelper.h"
166*bf2c3715SXin Li#include "src/Core/util/Memory.h"
167*bf2c3715SXin Li#include "src/Core/util/IntegralConstant.h"
168*bf2c3715SXin Li#include "src/Core/util/SymbolicIndex.h"
169*bf2c3715SXin Li
170*bf2c3715SXin Li#include "src/Core/NumTraits.h"
171*bf2c3715SXin Li#include "src/Core/MathFunctions.h"
172*bf2c3715SXin Li#include "src/Core/GenericPacketMath.h"
173*bf2c3715SXin Li#include "src/Core/MathFunctionsImpl.h"
174*bf2c3715SXin Li#include "src/Core/arch/Default/ConjHelper.h"
175*bf2c3715SXin Li// Generic half float support
176*bf2c3715SXin Li#include "src/Core/arch/Default/Half.h"
177*bf2c3715SXin Li#include "src/Core/arch/Default/BFloat16.h"
178*bf2c3715SXin Li#include "src/Core/arch/Default/TypeCasting.h"
179*bf2c3715SXin Li#include "src/Core/arch/Default/GenericPacketMathFunctionsFwd.h"
180*bf2c3715SXin Li
181*bf2c3715SXin Li#if defined EIGEN_VECTORIZE_AVX512
182*bf2c3715SXin Li  #include "src/Core/arch/SSE/PacketMath.h"
183*bf2c3715SXin Li  #include "src/Core/arch/SSE/TypeCasting.h"
184*bf2c3715SXin Li  #include "src/Core/arch/SSE/Complex.h"
185*bf2c3715SXin Li  #include "src/Core/arch/AVX/PacketMath.h"
186*bf2c3715SXin Li  #include "src/Core/arch/AVX/TypeCasting.h"
187*bf2c3715SXin Li  #include "src/Core/arch/AVX/Complex.h"
188*bf2c3715SXin Li  #include "src/Core/arch/AVX512/PacketMath.h"
189*bf2c3715SXin Li  #include "src/Core/arch/AVX512/TypeCasting.h"
190*bf2c3715SXin Li  #include "src/Core/arch/AVX512/Complex.h"
191*bf2c3715SXin Li  #include "src/Core/arch/SSE/MathFunctions.h"
192*bf2c3715SXin Li  #include "src/Core/arch/AVX/MathFunctions.h"
193*bf2c3715SXin Li  #include "src/Core/arch/AVX512/MathFunctions.h"
194*bf2c3715SXin Li#elif defined EIGEN_VECTORIZE_AVX
195*bf2c3715SXin Li  // Use AVX for floats and doubles, SSE for integers
196*bf2c3715SXin Li  #include "src/Core/arch/SSE/PacketMath.h"
197*bf2c3715SXin Li  #include "src/Core/arch/SSE/TypeCasting.h"
198*bf2c3715SXin Li  #include "src/Core/arch/SSE/Complex.h"
199*bf2c3715SXin Li  #include "src/Core/arch/AVX/PacketMath.h"
200*bf2c3715SXin Li  #include "src/Core/arch/AVX/TypeCasting.h"
201*bf2c3715SXin Li  #include "src/Core/arch/AVX/Complex.h"
202*bf2c3715SXin Li  #include "src/Core/arch/SSE/MathFunctions.h"
203*bf2c3715SXin Li  #include "src/Core/arch/AVX/MathFunctions.h"
204*bf2c3715SXin Li#elif defined EIGEN_VECTORIZE_SSE
205*bf2c3715SXin Li  #include "src/Core/arch/SSE/PacketMath.h"
206*bf2c3715SXin Li  #include "src/Core/arch/SSE/TypeCasting.h"
207*bf2c3715SXin Li  #include "src/Core/arch/SSE/MathFunctions.h"
208*bf2c3715SXin Li  #include "src/Core/arch/SSE/Complex.h"
209*bf2c3715SXin Li#elif defined(EIGEN_VECTORIZE_ALTIVEC) || defined(EIGEN_VECTORIZE_VSX)
210*bf2c3715SXin Li  #include "src/Core/arch/AltiVec/PacketMath.h"
211*bf2c3715SXin Li  #include "src/Core/arch/AltiVec/MathFunctions.h"
212*bf2c3715SXin Li  #include "src/Core/arch/AltiVec/Complex.h"
213*bf2c3715SXin Li#elif defined EIGEN_VECTORIZE_NEON
214*bf2c3715SXin Li  #include "src/Core/arch/NEON/PacketMath.h"
215*bf2c3715SXin Li  #include "src/Core/arch/NEON/TypeCasting.h"
216*bf2c3715SXin Li  #include "src/Core/arch/NEON/MathFunctions.h"
217*bf2c3715SXin Li  #include "src/Core/arch/NEON/Complex.h"
218*bf2c3715SXin Li#elif defined EIGEN_VECTORIZE_SVE
219*bf2c3715SXin Li  #include "src/Core/arch/SVE/PacketMath.h"
220*bf2c3715SXin Li  #include "src/Core/arch/SVE/TypeCasting.h"
221*bf2c3715SXin Li  #include "src/Core/arch/SVE/MathFunctions.h"
222*bf2c3715SXin Li#elif defined EIGEN_VECTORIZE_ZVECTOR
223*bf2c3715SXin Li  #include "src/Core/arch/ZVector/PacketMath.h"
224*bf2c3715SXin Li  #include "src/Core/arch/ZVector/MathFunctions.h"
225*bf2c3715SXin Li  #include "src/Core/arch/ZVector/Complex.h"
226*bf2c3715SXin Li#elif defined EIGEN_VECTORIZE_MSA
227*bf2c3715SXin Li  #include "src/Core/arch/MSA/PacketMath.h"
228*bf2c3715SXin Li  #include "src/Core/arch/MSA/MathFunctions.h"
229*bf2c3715SXin Li  #include "src/Core/arch/MSA/Complex.h"
230*bf2c3715SXin Li#endif
231*bf2c3715SXin Li
232*bf2c3715SXin Li#if defined EIGEN_VECTORIZE_GPU
233*bf2c3715SXin Li  #include "src/Core/arch/GPU/PacketMath.h"
234*bf2c3715SXin Li  #include "src/Core/arch/GPU/MathFunctions.h"
235*bf2c3715SXin Li  #include "src/Core/arch/GPU/TypeCasting.h"
236*bf2c3715SXin Li#endif
237*bf2c3715SXin Li
238*bf2c3715SXin Li#if defined(EIGEN_USE_SYCL)
239*bf2c3715SXin Li  #include "src/Core/arch/SYCL/SyclMemoryModel.h"
240*bf2c3715SXin Li  #include "src/Core/arch/SYCL/InteropHeaders.h"
241*bf2c3715SXin Li#if !defined(EIGEN_DONT_VECTORIZE_SYCL)
242*bf2c3715SXin Li  #include "src/Core/arch/SYCL/PacketMath.h"
243*bf2c3715SXin Li  #include "src/Core/arch/SYCL/MathFunctions.h"
244*bf2c3715SXin Li  #include "src/Core/arch/SYCL/TypeCasting.h"
245*bf2c3715SXin Li#endif
246*bf2c3715SXin Li#endif
247*bf2c3715SXin Li
248*bf2c3715SXin Li#include "src/Core/arch/Default/Settings.h"
249*bf2c3715SXin Li// This file provides generic implementations valid for scalar as well
250*bf2c3715SXin Li#include "src/Core/arch/Default/GenericPacketMathFunctions.h"
251*bf2c3715SXin Li
252*bf2c3715SXin Li#include "src/Core/functors/TernaryFunctors.h"
253*bf2c3715SXin Li#include "src/Core/functors/BinaryFunctors.h"
254*bf2c3715SXin Li#include "src/Core/functors/UnaryFunctors.h"
255*bf2c3715SXin Li#include "src/Core/functors/NullaryFunctors.h"
256*bf2c3715SXin Li#include "src/Core/functors/StlFunctors.h"
257*bf2c3715SXin Li#include "src/Core/functors/AssignmentFunctors.h"
258*bf2c3715SXin Li
259*bf2c3715SXin Li// Specialized functors to enable the processing of complex numbers
260*bf2c3715SXin Li// on CUDA devices
261*bf2c3715SXin Li#ifdef EIGEN_CUDACC
262*bf2c3715SXin Li#include "src/Core/arch/CUDA/Complex.h"
263*bf2c3715SXin Li#endif
264*bf2c3715SXin Li
265*bf2c3715SXin Li#include "src/Core/util/IndexedViewHelper.h"
266*bf2c3715SXin Li#include "src/Core/util/ReshapedHelper.h"
267*bf2c3715SXin Li#include "src/Core/ArithmeticSequence.h"
268*bf2c3715SXin Li#ifndef EIGEN_NO_IO
269*bf2c3715SXin Li  #include "src/Core/IO.h"
270*bf2c3715SXin Li#endif
271*bf2c3715SXin Li#include "src/Core/DenseCoeffsBase.h"
272*bf2c3715SXin Li#include "src/Core/DenseBase.h"
273*bf2c3715SXin Li#include "src/Core/MatrixBase.h"
274*bf2c3715SXin Li#include "src/Core/EigenBase.h"
275*bf2c3715SXin Li
276*bf2c3715SXin Li#include "src/Core/Product.h"
277*bf2c3715SXin Li#include "src/Core/CoreEvaluators.h"
278*bf2c3715SXin Li#include "src/Core/AssignEvaluator.h"
279*bf2c3715SXin Li
280*bf2c3715SXin Li#ifndef EIGEN_PARSED_BY_DOXYGEN // work around Doxygen bug triggered by Assign.h r814874
281*bf2c3715SXin Li                                // at least confirmed with Doxygen 1.5.5 and 1.5.6
282*bf2c3715SXin Li  #include "src/Core/Assign.h"
283*bf2c3715SXin Li#endif
284*bf2c3715SXin Li
285*bf2c3715SXin Li#include "src/Core/ArrayBase.h"
286*bf2c3715SXin Li#include "src/Core/util/BlasUtil.h"
287*bf2c3715SXin Li#include "src/Core/DenseStorage.h"
288*bf2c3715SXin Li#include "src/Core/NestByValue.h"
289*bf2c3715SXin Li
290*bf2c3715SXin Li// #include "src/Core/ForceAlignedAccess.h"
291*bf2c3715SXin Li
292*bf2c3715SXin Li#include "src/Core/ReturnByValue.h"
293*bf2c3715SXin Li#include "src/Core/NoAlias.h"
294*bf2c3715SXin Li#include "src/Core/PlainObjectBase.h"
295*bf2c3715SXin Li#include "src/Core/Matrix.h"
296*bf2c3715SXin Li#include "src/Core/Array.h"
297*bf2c3715SXin Li#include "src/Core/CwiseTernaryOp.h"
298*bf2c3715SXin Li#include "src/Core/CwiseBinaryOp.h"
299*bf2c3715SXin Li#include "src/Core/CwiseUnaryOp.h"
300*bf2c3715SXin Li#include "src/Core/CwiseNullaryOp.h"
301*bf2c3715SXin Li#include "src/Core/CwiseUnaryView.h"
302*bf2c3715SXin Li#include "src/Core/SelfCwiseBinaryOp.h"
303*bf2c3715SXin Li#include "src/Core/Dot.h"
304*bf2c3715SXin Li#include "src/Core/StableNorm.h"
305*bf2c3715SXin Li#include "src/Core/Stride.h"
306*bf2c3715SXin Li#include "src/Core/MapBase.h"
307*bf2c3715SXin Li#include "src/Core/Map.h"
308*bf2c3715SXin Li#include "src/Core/Ref.h"
309*bf2c3715SXin Li#include "src/Core/Block.h"
310*bf2c3715SXin Li#include "src/Core/VectorBlock.h"
311*bf2c3715SXin Li#include "src/Core/IndexedView.h"
312*bf2c3715SXin Li#include "src/Core/Reshaped.h"
313*bf2c3715SXin Li#include "src/Core/Transpose.h"
314*bf2c3715SXin Li#include "src/Core/DiagonalMatrix.h"
315*bf2c3715SXin Li#include "src/Core/Diagonal.h"
316*bf2c3715SXin Li#include "src/Core/DiagonalProduct.h"
317*bf2c3715SXin Li#include "src/Core/Redux.h"
318*bf2c3715SXin Li#include "src/Core/Visitor.h"
319*bf2c3715SXin Li#include "src/Core/Fuzzy.h"
320*bf2c3715SXin Li#include "src/Core/Swap.h"
321*bf2c3715SXin Li#include "src/Core/CommaInitializer.h"
322*bf2c3715SXin Li#include "src/Core/GeneralProduct.h"
323*bf2c3715SXin Li#include "src/Core/Solve.h"
324*bf2c3715SXin Li#include "src/Core/Inverse.h"
325*bf2c3715SXin Li#include "src/Core/SolverBase.h"
326*bf2c3715SXin Li#include "src/Core/PermutationMatrix.h"
327*bf2c3715SXin Li#include "src/Core/Transpositions.h"
328*bf2c3715SXin Li#include "src/Core/TriangularMatrix.h"
329*bf2c3715SXin Li#include "src/Core/SelfAdjointView.h"
330*bf2c3715SXin Li#include "src/Core/products/GeneralBlockPanelKernel.h"
331*bf2c3715SXin Li#include "src/Core/products/Parallelizer.h"
332*bf2c3715SXin Li#include "src/Core/ProductEvaluators.h"
333*bf2c3715SXin Li#include "src/Core/products/GeneralMatrixVector.h"
334*bf2c3715SXin Li#include "src/Core/products/GeneralMatrixMatrix.h"
335*bf2c3715SXin Li#include "src/Core/SolveTriangular.h"
336*bf2c3715SXin Li#include "src/Core/products/GeneralMatrixMatrixTriangular.h"
337*bf2c3715SXin Li#include "src/Core/products/SelfadjointMatrixVector.h"
338*bf2c3715SXin Li#include "src/Core/products/SelfadjointMatrixMatrix.h"
339*bf2c3715SXin Li#include "src/Core/products/SelfadjointProduct.h"
340*bf2c3715SXin Li#include "src/Core/products/SelfadjointRank2Update.h"
341*bf2c3715SXin Li#include "src/Core/products/TriangularMatrixVector.h"
342*bf2c3715SXin Li#include "src/Core/products/TriangularMatrixMatrix.h"
343*bf2c3715SXin Li#include "src/Core/products/TriangularSolverMatrix.h"
344*bf2c3715SXin Li#include "src/Core/products/TriangularSolverVector.h"
345*bf2c3715SXin Li#include "src/Core/BandMatrix.h"
346*bf2c3715SXin Li#include "src/Core/CoreIterators.h"
347*bf2c3715SXin Li#include "src/Core/ConditionEstimator.h"
348*bf2c3715SXin Li
349*bf2c3715SXin Li#if defined(EIGEN_VECTORIZE_ALTIVEC) || defined(EIGEN_VECTORIZE_VSX)
350*bf2c3715SXin Li  #include "src/Core/arch/AltiVec/MatrixProduct.h"
351*bf2c3715SXin Li#elif defined EIGEN_VECTORIZE_NEON
352*bf2c3715SXin Li  #include "src/Core/arch/NEON/GeneralBlockPanelKernel.h"
353*bf2c3715SXin Li#endif
354*bf2c3715SXin Li
355*bf2c3715SXin Li#include "src/Core/BooleanRedux.h"
356*bf2c3715SXin Li#include "src/Core/Select.h"
357*bf2c3715SXin Li#include "src/Core/VectorwiseOp.h"
358*bf2c3715SXin Li#include "src/Core/PartialReduxEvaluator.h"
359*bf2c3715SXin Li#include "src/Core/Random.h"
360*bf2c3715SXin Li#include "src/Core/Replicate.h"
361*bf2c3715SXin Li#include "src/Core/Reverse.h"
362*bf2c3715SXin Li#include "src/Core/ArrayWrapper.h"
363*bf2c3715SXin Li#include "src/Core/StlIterators.h"
364*bf2c3715SXin Li
365*bf2c3715SXin Li#ifdef EIGEN_USE_BLAS
366*bf2c3715SXin Li#include "src/Core/products/GeneralMatrixMatrix_BLAS.h"
367*bf2c3715SXin Li#include "src/Core/products/GeneralMatrixVector_BLAS.h"
368*bf2c3715SXin Li#include "src/Core/products/GeneralMatrixMatrixTriangular_BLAS.h"
369*bf2c3715SXin Li#include "src/Core/products/SelfadjointMatrixMatrix_BLAS.h"
370*bf2c3715SXin Li#include "src/Core/products/SelfadjointMatrixVector_BLAS.h"
371*bf2c3715SXin Li#include "src/Core/products/TriangularMatrixMatrix_BLAS.h"
372*bf2c3715SXin Li#include "src/Core/products/TriangularMatrixVector_BLAS.h"
373*bf2c3715SXin Li#include "src/Core/products/TriangularSolverMatrix_BLAS.h"
374*bf2c3715SXin Li#endif // EIGEN_USE_BLAS
375*bf2c3715SXin Li
376*bf2c3715SXin Li#ifdef EIGEN_USE_MKL_VML
377*bf2c3715SXin Li#include "src/Core/Assign_MKL.h"
378*bf2c3715SXin Li#endif
379*bf2c3715SXin Li
380*bf2c3715SXin Li#include "src/Core/GlobalFunctions.h"
381*bf2c3715SXin Li
382*bf2c3715SXin Li#include "src/Core/util/ReenableStupidWarnings.h"
383*bf2c3715SXin Li
384*bf2c3715SXin Li#endif // EIGEN_CORE_H
385