Home | History | Annotate | Download | only in bench

Lines Matching refs:ci

109 void matlab_cplx_cplx(const M& ar, const M& ai, const M& br, const M& bi, M& cr, M& ci)
113 ci.noalias() += ar * bi;
114 ci.noalias() += ai * br;
117 void matlab_real_cplx(const M& a, const M& br, const M& bi, M& cr, M& ci)
120 ci.noalias() += a * bi;
123 void matlab_cplx_real(const M& ar, const M& ai, const M& b, M& cr, M& ci)
126 ci.noalias() += ai * b;
303 M ci(m,n); ci.setRandom();
306 BENCH(t, tries, rep, matlab_cplx_cplx(ar,ai,br,bi,cr,ci));
316 M ci(m,n); ci.setRandom();
319 BENCH(t, tries, rep, matlab_real_cplx(a,br,bi,cr,ci));
329 M ci(m,n); ci.setRandom();
332 BENCH(t, tries, rep, matlab_cplx_real(ar,ai,b,cr,ci));