Home
last modified time | relevance | path

Searched refs:LAPACK (Results 1 – 20 of 20) 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.cc69 LinearSolverTerminationType LAPACK::SolveInPlaceUsingCholesky( in SolveInPlaceUsingCholesky()
115 int LAPACK::EstimateWorkSizeForQR(int num_rows, int num_cols) { in EstimateWorkSizeForQR()
147 LinearSolverTerminationType LAPACK::SolveInPlaceUsingQR( in SolveInPlaceUsingQR()
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.cc119 CASESTR(LAPACK); in DenseLinearAlgebraLibraryTypeToString()
130 STRENUM(LAPACK); in StringToDenseLinearAlgebraLibraryType()
350 if (type == LAPACK) { in IsDenseLinearAlgebraLibraryTypeAvailable()
Ddense_qr_solver.cc98 LAPACK::EstimateWorkSizeForQR(lhs_.rows(), lhs_.cols()); in SolveUsingLAPACK()
106 summary.termination_type = LAPACK::SolveInPlaceUsingQR(lhs_.rows(), in SolveUsingLAPACK()
Dlapack.h41 class LAPACK {
Dunsymmetric_linear_solver_test.cc151 options.dense_linear_algebra_library_type = LAPACK; in TEST_F()
157 options.dense_linear_algebra_library_type = LAPACK; in TEST_F()
Ddense_normal_cholesky_solver.cc158 LAPACK::SolveInPlaceUsingCholesky(num_cols, in SolveUsingLAPACK()
Dsolver_impl.cc778 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()
Dsolver.cc138 if (options.dense_linear_algebra_library_type == LAPACK) { in TrustRegionOptionsAreValid()
Dschur_complement_solver.cc152 LAPACK::SolveInPlaceUsingCholesky(num_rows, in SolveReducedLinearSystem()
/external/ceres-solver/docs/source/
Dbuilding.rst65 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 …]
Dfeatures.rst51 `Eigen`_ or `LAPACK`_) for dense problems, sparse Cholesky
Dversion_history.rst68 LAPACK).
236 optimized ``BLAS`` and ``LAPACK`` implementations (e.g., Intel MKL,
Dsolving.rst1203 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/
DCMakeLists.txt100 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/
Dtypes.h165 LAPACK enumerator
/external/eigen/lapack/
DCMakeLists.txt62 … 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/
Dconfig.h.in47 // If defined, Ceres was compiled without LAPACK.
DFindSuiteSparse.cmake180 # LAPACK.
181 FIND_PACKAGE(LAPACK QUIET)
184 "Did not find LAPACK library (required for SuiteSparse).")