I want to perform a string of matrix multiplies, and would prefer not allocate a fresh matrix if I can avoid it. For example, I want to compute C = C * B (so I pass in C as A
and C
)
Can I do this (due to dgemm
having marked both A
and B
as in
variables)?