Home | History | Annotate | Download | only in bench

Lines Matching refs:ar

93 void matlab_cplx_cplx(const M& ar, const M& ai, const M& br, const M& bi, M& cr, M& ci)
95 cr.noalias() += ar * br;
97 ci.noalias() += ar * bi;
107 void matlab_cplx_real(const M& ar, const M& ai, const M& b, M& cr, M& ci)
109 cr.noalias() += ar * b;
229 M ar(m,p); ar.setRandom();
237 BENCH(t, tries, rep, matlab_cplx_cplx(ar,ai,br,bi,cr,ci));
256 M ar(m,p); ar.setRandom();
263 BENCH(t, tries, rep, matlab_cplx_real(ar,ai,b,cr,ci));