Home
last modified time | relevance | path

Searched refs:LAPACK (Results 1 – 15 of 15) sorted by relevance

/external/eigen/cmake/
DFindLAPACK.cmake1 # Find LAPACK library
3 # This module finds an installed library that implements the LAPACK
9 # LAPACK_FOUND - set to true if a library implementing the LAPACK interface
11 # LAPACK_INCLUDE_DIR - Directories containing the LAPACK header files
12 # LAPACK_DEFINITIONS - Compilation options to use LAPACK
13 # LAPACK_LINKER_FLAGS - Linker flags to use LAPACK (excluding -l
15 # LAPACK_LIBRARIES_DIR - Directories containing the LAPACK libraries.
17 # LAPACK_LIBRARIES - List of libraries to link against LAPACK interface.
20 # applications or libraries using LAPACK.
136 # LAPACK requires BLAS
[all …]
/external/ceres-solver/internal/ceres/
Dlapack.cc66 int LAPACK::SolveInPlaceUsingCholesky(int num_rows, in SolveInPlaceUsingCholesky()
94 int LAPACK::EstimateWorkSizeForQR(int num_rows, int num_cols) { in EstimateWorkSizeForQR()
121 int LAPACK::SolveUsingQR(int num_rows, in SolveUsingQR()
Dschur_complement_solver_test.cc150 ComputeAndCompareSolutions(2, false, DENSE_SCHUR, LAPACK, SUITE_SPARSE, true); in TEST_F()
151 ComputeAndCompareSolutions(2, true, DENSE_SCHUR, LAPACK, SUITE_SPARSE, true); in TEST_F()
155 ComputeAndCompareSolutions(3, false, DENSE_SCHUR, LAPACK, SUITE_SPARSE, true); in TEST_F()
156 ComputeAndCompareSolutions(3, true, DENSE_SCHUR, LAPACK, SUITE_SPARSE, true); in TEST_F()
Dtypes.cc117 CASESTR(LAPACK); in DenseLinearAlgebraLibraryTypeToString()
128 STRENUM(LAPACK); in StringToDenseLinearAlgebraLibraryType()
344 if (type == LAPACK) { in IsDenseLinearAlgebraLibraryTypeAvailable()
Ddense_qr_solver.cc97 LAPACK::EstimateWorkSizeForQR(lhs_.rows(), lhs_.cols()); in SolveUsingLAPACK()
103 const int info = LAPACK::SolveUsingQR(lhs_.rows(), in SolveUsingLAPACK()
Dlapack.h37 class LAPACK {
Dunsymmetric_linear_solver_test.cc139 options.dense_linear_algebra_library_type = LAPACK; in TEST_F()
145 options.dense_linear_algebra_library_type = LAPACK; in TEST_F()
Ddense_normal_cholesky_solver.cc145 const int info = LAPACK::SolveInPlaceUsingCholesky(num_cols, lhs.data(), x); in SolveUsingLAPACK()
Dschur_complement_solver.cc143 const int info = LAPACK::SolveInPlaceUsingCholesky(num_rows, in SolveReducedLinearSystem()
Dsolver_impl.cc1161 options->dense_linear_algebra_library_type == LAPACK) { in CreateLinearSolver()
1168 options->dense_linear_algebra_library_type == LAPACK) { in CreateLinearSolver()
1175 options->dense_linear_algebra_library_type == LAPACK) { in CreateLinearSolver()
/external/ceres-solver/docs/source/
Dbuilding.rst47 no dependencies on ``LAPACK`` and ``BLAS``. This makes for a simpler
52 7. `BLAS <http://www.netlib.org/blas/>`_ and `LAPACK
55 <http://math-atlas.sourceforge.net/>`_, which includes BLAS and LAPACK
85 # BLAS & LAPACK
171 dependencies. There is no need to install ``BLAS`` or ``LAPACK``
172 separately as OS X ships with optimized ``BLAS`` and ``LAPACK``
295 dependency checking for ``LAPACK`` and ``BLAS``. This will reduce
Dversion_history.rst27 optimized ``BLAS`` and ``LAPACK`` implementations (e.g., Intel MKL,
Dsolving.rst1155 dense matrix factorizations. Currently ``EIGEN`` and ``LAPACK`` are
1156 the valid choices. ``EIGEN`` is always available, ``LAPACK`` refers
1157 to the system ``BLAS + LAPACK`` library which may or may not be
1163 ``LAPACK + BLAS`` implementation can make a substantial difference
/external/ceres-solver/
DCMakeLists.txt145 IF ((NOT DEFINED LAPACK) OR (DEFINED LAPACK AND LAPACK))
146 FIND_PACKAGE(LAPACK)
148 MESSAGE("-- Found LAPACK library: ${LAPACK_LIBRARIES}")
150 MESSAGE("-- Did not find LAPACK library")
162 ELSE ((NOT DEFINED LAPACK) OR (DEFINED LAPACK AND LAPACK))
164 ENDIF ((NOT DEFINED LAPACK) OR (DEFINED LAPACK AND LAPACK))
/external/ceres-solver/include/ceres/
Dtypes.h131 LAPACK enumerator