| 14 | namespace af { |
| 15 | |
| 16 | array transform(const array& in, const array& transform, const dim_t odim0, |
| 17 | const dim_t odim1, const interpType method, |
| 18 | const bool inverse) { |
| 19 | af_array out = 0; |
| 20 | AF_THROW(af_transform(&out, in.get(), transform.get(), odim0, odim1, method, |
| 21 | inverse)); |
| 22 | return array(out); |
| 23 | } |
| 24 | |
| 25 | } // namespace af |
nothing calls this directly
no test coverage detected