| 13 | |
| 14 | namespace af { |
| 15 | array matmul(const array &lhs, const array &rhs, const matProp optLhs, |
| 16 | const matProp optRhs) { |
| 17 | af_array out = 0; |
| 18 | AF_THROW(af_matmul(&out, lhs.get(), rhs.get(), optLhs, optRhs)); |
| 19 | return array(out); |
| 20 | } |
| 21 | |
| 22 | array matmulNT(const array &lhs, const array &rhs) { |
| 23 | af_array out = 0; |
no test coverage detected