MCPcopy Create free account
hub / github.com/Meshcapade/difflocks / _solve_impl

Function _solve_impl

extensions/include/cuMat/src/ConjugateGradient.h:115–121  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

113
114 template<typename _RHS, typename _Target>
115 void _solve_impl(const MatrixBase<_RHS>& rhs, MatrixBase<_Target>& target) const
116 {
117 typedef Matrix<typename _Target::Scalar, Dynamic, 1, _Target::Batches, _Target::Flags> GuessType;
118 GuessType guess(target.rows(), 1, target.batches());
119 guess.setZero();
120 _solve_with_guess_impl(rhs.derived(), target.derived(), guess);
121 }
122
123 template<typename _RHS, typename _Target, typename _Guess>
124 void _solve_with_guess_impl(_RHS& rhs, _Target& target, _Guess& guess) const

Callers

nothing calls this directly

Calls 3

_solve_with_guess_implFunction · 0.85
rowsMethod · 0.45
batchesMethod · 0.45

Tested by

no test coverage detected