| 28 | |
| 29 | template<typename T> |
| 30 | static inline af_array unwrap(const af_array in, const dim_t wx, const dim_t wy, |
| 31 | const dim_t sx, const dim_t sy, const dim_t px, |
| 32 | const dim_t py, const bool is_column) { |
| 33 | return getHandle( |
| 34 | unwrap<T>(getArray<T>(in), wx, wy, sx, sy, px, py, 1, 1, is_column)); |
| 35 | } |
| 36 | |
| 37 | af_err af_unwrap(af_array* out, const af_array in, const dim_t wx, |
| 38 | const dim_t wy, const dim_t sx, const dim_t sy, const dim_t px, |