xref: /aosp_15_r20/external/eigen/lapack/single.cpp (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) 2009-2014 Gael Guennebaud <[email protected]>
5*bf2c3715SXin Li //
6*bf2c3715SXin Li // This Source Code Form is subject to the terms of the Mozilla
7*bf2c3715SXin Li // Public License v. 2.0. If a copy of the MPL was not distributed
8*bf2c3715SXin Li // with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
9*bf2c3715SXin Li 
10*bf2c3715SXin Li #define SCALAR        float
11*bf2c3715SXin Li #define SCALAR_SUFFIX s
12*bf2c3715SXin Li #define SCALAR_SUFFIX_UP "S"
13*bf2c3715SXin Li #define ISCOMPLEX     0
14*bf2c3715SXin Li 
15*bf2c3715SXin Li #include "cholesky.cpp"
16*bf2c3715SXin Li #include "lu.cpp"
17*bf2c3715SXin Li #include "eigenvalues.cpp"
18*bf2c3715SXin Li #include "svd.cpp"
19