Closed japaric closed 9 years ago
For instance A * B where A has size (0, k) and B has size (k, n) should immediately return a zero-sized matrix without calling gemm.
A * B
A
(0, k)
B
(k, n)
gemm
For instance
A * B
whereA
has size(0, k)
andB
has size(k, n)
should immediately return a zero-sized matrix without callinggemm
.