| 85 | } |
| 86 | |
| 87 | af_err af_wrap(af_array* out, const af_array in, const dim_t ox, const dim_t oy, |
| 88 | const dim_t wx, const dim_t wy, const dim_t sx, const dim_t sy, |
| 89 | const dim_t px, const dim_t py, const bool is_column) { |
| 90 | try { |
| 91 | af_wrap_common(out, in, ox, oy, wx, wy, sx, sy, px, py, is_column, |
| 92 | true); |
| 93 | } |
| 94 | CATCHALL; |
| 95 | |
| 96 | return AF_SUCCESS; |
| 97 | } |
| 98 | |
| 99 | af_err af_wrap_v2(af_array* out, const af_array in, const dim_t ox, |
| 100 | const dim_t oy, const dim_t wx, const dim_t wy, |
no test coverage detected