HomeSort by relevance Sort by last modified time
    Searched refs:m_V (Results 1 - 3 of 3) sorted by null

  /external/eigen/unsupported/Eigen/src/MatrixFunctions/
MatrixExponential.h 108 * Computes \c m_U, \c m_V and \c m_squarings such that
144 MatrixType m_V;
166 m_V(M.rows(),M.cols()),
187 m_tmp1 = m_U + m_V; // numerator of Pade approximant
188 m_tmp2 = -m_U + m_V; // denominator of Pade approximant
201 m_V = b[2]*m_tmp1 + b[0]*m_Id;
212 m_V = b[4]*m_tmp1 + b[2]*A2 + b[0]*m_Id;
224 m_V = b[6]*m_tmp1 + b[4]*A4 + b[2]*A2 + b[0]*m_Id;
238 m_V = b[8]*m_tmp1 + b[6]*A6 + b[4]*A4 + b[2]*A2 + b[0]*m_Id;
250 m_V = b[13]*m_tmp1 + b[11]*A4 + b[9]*A2; // used for temporary storag
    [all...]
  /external/eigen/unsupported/Eigen/src/IterativeSolvers/
DGMRES.h 228 mutable DenseMatrix m_V; // Krylov basis vectors
265 m_V.resize(n,m_restart+1);
306 m_V.col(0) = r0/beta;
317 dgmresApplyDeflation(m_V.col(it), tv1); // Deflation
322 tv2 = precond.solve(m_V.col(it)); // User's selected preconditioner
330 coef = tv1.dot(m_V.col(i));
331 tv1 = tv1 - coef * m_V.col(i);
337 m_V.col(it+1) = tv1/coef;
376 tv1 = m_V.leftCols(it) * nrs;
381 x = x + precond.solve(m_V.leftCols(it) * nrs);
    [all...]
  /external/llvm/lib/Analysis/
ValueTracking.cpp 767 auto m_V = m_CombineOr(m_Specific(V),
774 if (match(Arg, m_c_ICmp(Pred, m_V, m_Value(A))) &&
782 m_c_ICmp(Pred, m_c_And(m_V, m_Value(B)), m_Value(A))) &&
    [all...]

Completed in 102 milliseconds