| 17 | namespace cuda { |
| 18 | template<typename Ty, typename Tp> |
| 19 | void approx1(Array<Ty> &yo, const Array<Ty> &yi, const Array<Tp> &xo, |
| 20 | const int xdim, const Tp &xi_beg, const Tp &xi_step, |
| 21 | const af_interp_type method, const float offGrid) { |
| 22 | kernel::approx1<Ty, Tp>(yo, yi, xo, xdim, xi_beg, xi_step, offGrid, method, |
| 23 | interpOrder(method)); |
| 24 | } |
| 25 | |
| 26 | template<typename Ty, typename Tp> |
| 27 | void approx2(Array<Ty> &zo, const Array<Ty> &zi, const Array<Tp> &xo, |
nothing calls this directly
no test coverage detected