Lines Matching refs:mb
171 inline typename OutputMatrix<MA,MB>::type dot(const MA&ma,const MB&mb) in dot() argument
175 auto BT = mb.transpose(); in dot()
178 _dot_m_m(ma,mb,res,BT,CURRENT_ARCH); in dot()
186 inline typename OutputMatrix<MA,MB>::type dot(const MA&ma,const MB&mb) in dot() argument
192 _dot_m_m(ma,mb,res,CURRENT_ARCH); in dot()
200 inline typename OutputMatrix<MA,MB>::type dot(const MA&ma,const MB&mb) in dot() argument
202 typename OutputMatrix<MA,MB>::type res(ma.rows(),mb.columns()); in dot()
203 auto BT = mb.transpose(); in dot()
206 _dot_m_m(ma,mb,res,BT,CURRENT_ARCH); in dot()
214 inline typename OutputMatrix<MA,MB>::type dot(const MA&ma,const MB&mb) in dot() argument
216 typename OutputMatrix<MA,MB>::type res(ma.rows(),mb.columns()); in dot()
219 _dot_m_m(ma,mb,res,CURRENT_ARCH); in dot()
243 inline void dot(RES &&res,const MA&ma,const MB&mb) in dot() argument
248 _dot_m_m(ma,mb,std::forward<RES>(res),CURRENT_ARCH); in dot()
256 inline typename OutputMatrix<MA,MB>::type dot(const MA&ma,const MB&mb) in dot() argument
258 typename OutputMatrix<MA,MB>::type res(ma.rows(),mb.columns()); in dot()
261 _dot_m_m(ma,mb,res,CURRENT_ARCH); in dot()
270 inline typename OutputMatrix<MA,MB>::type dot(const MA&ma,const MB&mb,const TMP &mbt) in dot() argument
272 typename OutputMatrix<MA,MB>::type res(ma.rows(),mb.columns()); in dot()
275 _dot_m_m(ma,mb,res,mbt,CURRENT_ARCH); in dot()