Home
last modified time | relevance | path

Searched refs:ScalarVector (Results 1 – 13 of 13) sorted by relevance

/external/eigen/Eigen/src/SparseLU/
DSparseLU_kernel_bmod.h33 template <typename BlockScalarVector, typename ScalarVector, typename IndexVector, typename Index>
34 …NLINE void run(const int segsize, BlockScalarVector& dense, ScalarVector& tempv, ScalarVector& lus…
39 template <typename BlockScalarVector, typename ScalarVector, typename IndexVector, typename Index>
40 …pileTime>::run(const int segsize, BlockScalarVector& dense, ScalarVector& tempv, ScalarVector& lus… in run()
43 typedef typename ScalarVector::Scalar Scalar; in run()
94 template <typename BlockScalarVector, typename ScalarVector, typename IndexVector, typename Index>
95 …void run(const int /*segsize*/, BlockScalarVector& dense, ScalarVector& /*tempv*/, ScalarVector& l…
100 template <typename BlockScalarVector, typename ScalarVector, typename IndexVector, typename Index>
101 …<1>::run(const int /*segsize*/, BlockScalarVector& dense, ScalarVector& /*tempv*/, ScalarVector& l…
104 typedef typename ScalarVector::Scalar Scalar;
DSparseLUImpl.h23 typedef Matrix<Scalar,Dynamic,1> ScalarVector; typedef
25 typedef typename ScalarVector::RealScalar RealScalar;
28 typedef LU_GlobalLU_t<IndexVector, ScalarVector> GlobalLU_t;
40 Index snode_bmod (const Index jcol, const Index fsupc, ScalarVector& dense, GlobalLU_t& glu);
47 …w, const Index jcol, MatrixType& A, IndexVector& perm_r, Index& nseg, ScalarVector& dense, IndexVe…
49 …Index m, const Index w, const Index jcol, const Index nseg, ScalarVector& dense, ScalarVector& tem…
51 …Index column_bmod(const Index jcol, const Index nseg, BlockScalarVector dense, ScalarVector& tempv…
DSparseLU_Structs.h76 template <typename IndexVector, typename ScalarVector>
81 ScalarVector lusup; // nonzero values of L ordered by columns
87 ScalarVector ucol; // nonzero values of U ordered by columns
DSparseLU_column_bmod.h53 …umn_bmod(const Index jcol, const Index nseg, BlockScalarVector dense, ScalarVector& tempv, BlockIn… in column_bmod()
123 mem = memXpand<ScalarVector>(glu.lusup, glu.nzlumax, nextlu, LUSUP, glu.num_expansions); in column_bmod()
166 VectorBlock<ScalarVector> u(glu.lusup, ufirst, nsupc); in column_bmod()
170 VectorBlock<ScalarVector> l(glu.lusup, ufirst+nsupc, nrow); in column_bmod()
DSparseLU_panel_bmod.h57 … const Index nseg, ScalarVector& dense, ScalarVector& tempv, in panel_bmod()
113 …VectorBlock<ScalarVector> dense_col(dense, nextl_col, m); // Scatter/gather entire matrix column f… in panel_bmod()
160 …VectorBlock<ScalarVector> dense_col(dense, nextl_col, m); // Scatter/gather entire matrix column f… in panel_bmod()
195 …VectorBlock<ScalarVector> dense_col(dense, nextl_col, m); // Scatter/gather entire matrix column f… in panel_bmod()
DSparseLU_column_dfs.h38 template<typename IndexVector, typename ScalarVector>
41 typedef typename ScalarVector::Scalar Scalar;
101 column_dfs_traits<IndexVector, ScalarVector> traits(jcol, jsuper, glu, *this); in column_dfs()
DSparseLU_SupernodalMatrix.h39 typedef Matrix<Scalar,Dynamic,1> ScalarVector; typedef
45 …MappedSuperNodalMatrix(Index m, Index n, ScalarVector& nzval, IndexVector& nzval_colptr, IndexVec… in MappedSuperNodalMatrix()
61 …void setInfos(Index m, Index n, ScalarVector& nzval, IndexVector& nzval_colptr, IndexVector& rowin… in setInfos()
DSparseLU_Memory.h181 if( (expand<ScalarVector>(glu.lusup, glu.nzlumax, 0, 0, num_expansions)<0) in memInit()
182 || (expand<ScalarVector>(glu.ucol, glu.nzumax, 0, 0, num_expansions)<0) in memInit()
DSparseLU_panel_dfs.h219 …w, const Index jcol, MatrixType& A, IndexVector& perm_r, Index& nseg, ScalarVector& dense, IndexVe… in panel_dfs()
235 VectorBlock<ScalarVector> dense_col(dense,nextl_col, m); // Accumulate a column vector here in panel_dfs()
DSparseLU.h83 typedef Matrix<Scalar,Dynamic,1> ScalarVector; typedef
562 ScalarVector dense; in factorize()
564 ScalarVector tempv; in factorize()
635 VectorBlock<ScalarVector> dense_k(dense, k, m); in factorize()
DSparseLU_copy_to_ucol.h77 mem = memXpand<ScalarVector>(glu.ucol, glu.nzumax, nextu, UCOL, glu.num_expansions); in copy_to_ucol()
/external/eigen/unsupported/test/
DFFTW.cpp82 typedef typename VectorType<Container,Scalar>::type ScalarVector; in test_scalar_generic() typedef
86 ScalarVector tbuf(nfft); in test_scalar_generic()
106 ScalarVector tbuf2; in test_scalar_generic()
112 ScalarVector tbuf3; in test_scalar_generic()
/external/eigen/Eigen/src/SparseQR/
DSparseQR.h75 typedef Matrix<Scalar, Dynamic, 1> ScalarVector;
255 ScalarVector m_hcoeffs; // The Householder coefficients
335ScalarVector tval(m); // The dense vector used to compute the …