OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:MatrixL
(Results
1 - 4
of
4
) sorted by null
/external/eigen/Eigen/src/SparseCholesky/
SimplicialCholesky.h
170
derived().
matrixL
().solveInPlace(dest);
280
typedef TriangularView<const CholMatrixType, Eigen::Lower>
MatrixL
;
282
static inline
MatrixL
getL(const MatrixType& m) { return
MatrixL
(m); }
294
typedef TriangularView<const CholMatrixType, Eigen::UnitLower>
MatrixL
;
296
static inline
MatrixL
getL(const MatrixType& m) { return
MatrixL
(m); }
342
typedef typename Traits::
MatrixL
MatrixL
;
352
inline const
MatrixL
matrixL() const
[
all
...]
/external/eigen/Eigen/src/Cholesky/
LDLT.h
148
inline typename Traits::
MatrixL
matrixL
() const
470
typedef const TriangularView<const MatrixType, UnitLower>
MatrixL
;
472
static inline
MatrixL
getL(const MatrixType& m) { return
MatrixL
(m); }
478
typedef const TriangularView<const typename MatrixType::AdjointReturnType, UnitLower>
MatrixL
;
480
static inline
MatrixL
getL(const MatrixType& m) { return
MatrixL
(m.adjoint()); }
565
matrixL
().solveInPlace(dst);
638
res =
matrixL
() * res
[
all
...]
LLT.h
122
inline typename Traits::
MatrixL
matrixL
() const
392
typedef const TriangularView<const MatrixType, Lower>
MatrixL
;
394
static inline
MatrixL
getL(const MatrixType& m) { return
MatrixL
(m); }
402
typedef const TriangularView<const typename MatrixType::AdjointReturnType, Lower>
MatrixL
;
404
static inline
MatrixL
getL(const MatrixType& m) { return
MatrixL
(m.adjoint()); }
496
matrixL
().solveInPlace(bAndX);
507
return
matrixL
() * matrixL().adjoint().toDenseMatrix()
[
all
...]
/external/tensorflow/tensorflow/core/kernels/
sparse_matmul_op.cc
781
using
MatrixL
= BasicMatrix<TL>;
862
using
MatrixL
= BasicMatrix<TL>;
[
all
...]
Completed in 952 milliseconds