| 25 | } |
| 26 | |
| 27 | array scanByKey(const array& key, const array& in, const int dim, binaryOp op, |
| 28 | bool inclusive_scan) { |
| 29 | af_array out = 0; |
| 30 | AF_THROW( |
| 31 | af_scan_by_key(&out, key.get(), in.get(), dim, op, inclusive_scan)); |
| 32 | return array(out); |
| 33 | } |
| 34 | } // namespace af |
no test coverage detected