| 27 | |
| 28 | template<typename T> |
| 29 | static inline void transform(af_array *out, const af_array in, |
| 30 | const af_array tf, const af_interp_type method, |
| 31 | const bool inverse, const bool perspective) { |
| 32 | transform<T>(getArray<T>(*out), getArray<T>(in), getArray<float>(tf), |
| 33 | method, inverse, perspective); |
| 34 | } |
| 35 | |
| 36 | AF_BATCH_KIND getTransformBatchKind(const dim4 &iDims, const dim4 &tDims) { |
| 37 | static const int baseDim = 2; |
no outgoing calls
no test coverage detected