| 81 | |
| 82 | template<typename T, typename Tr> |
| 83 | void svd(Array<Tr> &s, Array<T> &u, Array<T> &vt, const Array<T> &in) { |
| 84 | Array<T> in_copy = copyArray<T>(in); |
| 85 | svdInPlace(s, u, vt, in_copy); |
| 86 | } |
| 87 | |
| 88 | } // namespace cpu |
| 89 | } // namespace arrayfire |
nothing calls this directly
no test coverage detected