Searched refs:LAPACK (Results 1 – 15 of 15) sorted by relevance
/external/eigen/cmake/ |
D | FindLAPACK.cmake | 1 # 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/ |
D | lapack.cc | 66 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()
|
D | schur_complement_solver_test.cc | 150 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()
|
D | types.cc | 117 CASESTR(LAPACK); in DenseLinearAlgebraLibraryTypeToString() 128 STRENUM(LAPACK); in StringToDenseLinearAlgebraLibraryType() 344 if (type == LAPACK) { in IsDenseLinearAlgebraLibraryTypeAvailable()
|
D | dense_qr_solver.cc | 97 LAPACK::EstimateWorkSizeForQR(lhs_.rows(), lhs_.cols()); in SolveUsingLAPACK() 103 const int info = LAPACK::SolveUsingQR(lhs_.rows(), in SolveUsingLAPACK()
|
D | lapack.h | 37 class LAPACK {
|
D | unsymmetric_linear_solver_test.cc | 139 options.dense_linear_algebra_library_type = LAPACK; in TEST_F() 145 options.dense_linear_algebra_library_type = LAPACK; in TEST_F()
|
D | dense_normal_cholesky_solver.cc | 145 const int info = LAPACK::SolveInPlaceUsingCholesky(num_cols, lhs.data(), x); in SolveUsingLAPACK()
|
D | schur_complement_solver.cc | 143 const int info = LAPACK::SolveInPlaceUsingCholesky(num_rows, in SolveReducedLinearSystem()
|
D | solver_impl.cc | 1161 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/ |
D | building.rst | 47 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
|
D | version_history.rst | 27 optimized ``BLAS`` and ``LAPACK`` implementations (e.g., Intel MKL,
|
D | solving.rst | 1155 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/ |
D | CMakeLists.txt | 145 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/ |
D | types.h | 131 LAPACK enumerator
|