| 60 | } |
| 61 | |
| 62 | array dot(const array &lhs, const array &rhs, const matProp optLhs, |
| 63 | const matProp optRhs) { |
| 64 | af_array out = 0; |
| 65 | AF_THROW(af_dot(&out, lhs.get(), rhs.get(), optLhs, optRhs)); |
| 66 | return array(out); |
| 67 | } |
| 68 | |
| 69 | #define INSTANTIATE_REAL(TYPE) \ |
| 70 | template<> \ |