| 53 | |
| 54 | template<typename T> |
| 55 | static inline af_array dot(const af_array lhs, const af_array rhs, |
| 56 | af_mat_prop optLhs, af_mat_prop optRhs) { |
| 57 | return getHandle( |
| 58 | dot<T>(getArray<T>(lhs), getArray<T>(rhs), optLhs, optRhs)); |
| 59 | } |
| 60 | |
| 61 | template<typename T> |
| 62 | static inline T dotAll(af_array out) { |
no test coverage detected