| 19 | |
| 20 | template<typename T, af_op_t op> |
| 21 | Array<T> arithOp(const Array<T> &&lhs, const Array<T> &&rhs, |
| 22 | const af::dim4 &odims) { |
| 23 | return common::createBinaryNode<T, T, op>(lhs, rhs, odims); |
| 24 | } |
| 25 | |
| 26 | template<typename T, af_op_t op> |
| 27 | Array<T> arithOp(const Array<T> &lhs, const Array<T> &rhs, |