MCPcopy Create free account
hub / github.com/arrayfire/arrayfire / approx2

Function approx2

src/backend/cuda/approx.cpp:27–34  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

25
26template<typename Ty, typename Tp>
27void approx2(Array<Ty> &zo, const Array<Ty> &zi, const Array<Tp> &xo,
28 const int xdim, const Tp &xi_beg, const Tp &xi_step,
29 const Array<Tp> &yo, const int ydim, const Tp &yi_beg,
30 const Tp &yi_step, const af_interp_type method,
31 const float offGrid) {
32 kernel::approx2<Ty, Tp>(zo, zi, xo, xdim, xi_beg, xi_step, yo, ydim, yi_beg,
33 yi_step, offGrid, method, interpOrder(method));
34}
35
36#define INSTANTIATE(Ty, Tp) \
37 template void approx1<Ty, Tp>( \

Callers

nothing calls this directly

Calls 1

interpOrderFunction · 0.85

Tested by

no test coverage detected