| 416 | |
| 417 | template<typename T> |
| 418 | inline af_array pad(const af_array in, const dim4 &lPad, const dim4 &uPad, |
| 419 | const af::borderType ptype) { |
| 420 | return getHandle(padArrayBorders<T>(getArray<T>(in), lPad, uPad, ptype)); |
| 421 | } |
| 422 | |
| 423 | af_err af_pad(af_array *out, const af_array in, const unsigned begin_ndims, |
| 424 | const dim_t *const begin_dims, const unsigned end_ndims, |
no test coverage detected