On Tue, Oct 21, 2014 at 4:13 PM, David van Leeuwen <
[email protected]> wrote:

> Does anybody know if `a' * b` is translated to a single BLAS call with the
> correct transposition options set, or that this is translated to a
> transposition followed by a BLAS call?


Yes, `a' * b` is parsed specially and calls the wonderfully named Ac_mul_B
function, which calls BLAS without doing an explicit conjugate transpose.
We would like to change this by making (conjugate) transpose lazy so that
both version use the same BLAS call.

Reply via email to