Searched refs:LAPACK (Results 1 – 20 of 20) 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 | 69 LinearSolverTerminationType LAPACK::SolveInPlaceUsingCholesky( in SolveInPlaceUsingCholesky() 115 int LAPACK::EstimateWorkSizeForQR(int num_rows, int num_cols) { in EstimateWorkSizeForQR() 147 LinearSolverTerminationType LAPACK::SolveInPlaceUsingQR( in SolveInPlaceUsingQR()
|
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 | 119 CASESTR(LAPACK); in DenseLinearAlgebraLibraryTypeToString() 130 STRENUM(LAPACK); in StringToDenseLinearAlgebraLibraryType() 350 if (type == LAPACK) { in IsDenseLinearAlgebraLibraryTypeAvailable()
|
D | dense_qr_solver.cc | 98 LAPACK::EstimateWorkSizeForQR(lhs_.rows(), lhs_.cols()); in SolveUsingLAPACK() 106 summary.termination_type = LAPACK::SolveInPlaceUsingQR(lhs_.rows(), in SolveUsingLAPACK()
|
D | lapack.h | 41 class LAPACK {
|
D | unsymmetric_linear_solver_test.cc | 151 options.dense_linear_algebra_library_type = LAPACK; in TEST_F() 157 options.dense_linear_algebra_library_type = LAPACK; in TEST_F()
|
D | dense_normal_cholesky_solver.cc | 158 LAPACK::SolveInPlaceUsingCholesky(num_cols, in SolveUsingLAPACK()
|
D | solver_impl.cc | 778 options->dense_linear_algebra_library_type == LAPACK) { in CreateLinearSolver() 785 options->dense_linear_algebra_library_type == LAPACK) { in CreateLinearSolver() 792 options->dense_linear_algebra_library_type == LAPACK) { in CreateLinearSolver()
|
D | solver.cc | 138 if (options.dense_linear_algebra_library_type == LAPACK) { in TrustRegionOptionsAreValid()
|
D | schur_complement_solver.cc | 152 LAPACK::SolveInPlaceUsingCholesky(num_rows, in SolveReducedLinearSystem()
|
/external/ceres-solver/docs/source/ |
D | building.rst | 65 no dependencies on ``LAPACK`` and ``BLAS``. This makes for a simpler 68 - `BLAS <http://www.netlib.org/blas/>`_ and `LAPACK 75 ``LAPACK`` routines. It is also possible to use `OpenBLAS 81 MAC OS X ships with an optimized ``LAPACK`` and ``BLAS`` 85 For Windows things are much more complicated. `LAPACK For 127 # BLAS & LAPACK 245 ``BLAS`` or ``LAPACK`` separately as OS X ships with optimized 246 ``BLAS`` and ``LAPACK`` routines as part of the `vecLib 430 If you decide to use ``LAPACK`` and ``BLAS``, then you also need to add 466 #. ``LAPACK [Default: ON]``: By default Ceres will use ``LAPACK`` (& [all …]
|
D | features.rst | 51 `Eigen`_ or `LAPACK`_) for dense problems, sparse Cholesky
|
D | version_history.rst | 68 LAPACK). 236 optimized ``BLAS`` and ``LAPACK`` implementations (e.g., Intel MKL,
|
D | solving.rst | 1203 dense matrix factorizations. Currently ``EIGEN`` and ``LAPACK`` are 1204 the valid choices. ``EIGEN`` is always available, ``LAPACK`` refers 1205 to the system ``BLAS + LAPACK`` library which may or may not be 1211 ``LAPACK + BLAS`` implementation can make a substantial difference
|
/external/ceres-solver/ |
D | CMakeLists.txt | 100 OPTION(LAPACK "Enable use of LAPACK." ON) option 264 # LAPACK (& BLAS). 265 IF (LAPACK) 266 FIND_PACKAGE(LAPACK QUIET) 268 MESSAGE("-- Found LAPACK library: ${LAPACK_LIBRARIES}") 270 MESSAGE("-- Did not find LAPACK library, disabling LAPACK support.") 277 MESSAGE("-- Did not find BLAS library, disabling LAPACK support.") 281 UPDATE_CACHE_VARIABLE(LAPACK OFF) 284 ELSE (LAPACK) 285 MESSAGE("-- Building without LAPACK.") [all …]
|
/external/ceres-solver/include/ceres/ |
D | types.h | 165 LAPACK enumerator
|
/external/eigen/lapack/ |
D | CMakeLists.txt | 62 … message(STATUS "Download of lapack_addons_3.4.1.tgz failed, LAPACK unit tests wont be enabled") 146 add_test(LAPACK-${testName} "${CMAKE_COMMAND}"
|
/external/ceres-solver/cmake/ |
D | config.h.in | 47 // If defined, Ceres was compiled without LAPACK.
|
D | FindSuiteSparse.cmake | 180 # LAPACK. 181 FIND_PACKAGE(LAPACK QUIET) 184 "Did not find LAPACK library (required for SuiteSparse).")
|