| 22 | namespace af { |
| 23 | |
| 24 | array mean(const array& in, const dim_t dim) { |
| 25 | af_array temp = 0; |
| 26 | AF_THROW(af_mean(&temp, in.get(), getFNSD(dim, in.dims()))); |
| 27 | return array(temp); |
| 28 | } |
| 29 | |
| 30 | array mean(const array& in, const array& weights, const dim_t dim) { |
| 31 | af_array temp = 0; |
nothing calls this directly
no test coverage detected