Closed japaric closed 9 years ago
Namely: A += alpha * B * C should reduce to a single gemm call.
A += alpha * B * C
gemm
(Right now B * C gets eagerly evaluated, creating a temporary)
B * C
Namely:
A += alpha * B * C
should reduce to a singlegemm
call.(Right now
B * C
gets eagerly evaluated, creating a temporary)