Home
last modified time | relevance | path

Searched refs:MatrixL (Results 1 – 4 of 4) sorted by relevance

/external/eigen/Eigen/src/SparseCholesky/
DSimplicialCholesky.h280 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 {
433 typedef typename Traits::MatrixL MatrixL;
449 inline const MatrixL matrixL() const {
/external/eigen/Eigen/src/Cholesky/
DLLT.h122 inline typename Traits::MatrixL matrixL() const in matrixL()
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()); }
DLDLT.h148 inline typename Traits::MatrixL matrixL() const in matrixL()
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()); }
/external/tensorflow/tensorflow/core/kernels/
Dsparse_matmul_op.cc780 using MatrixL = BasicMatrix<TL>; typedef in tensorflow::SparseMatMul
861 using MatrixL = BasicMatrix<TL>; typedef in tensorflow::LibxsmmSparseMatMul