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

Function svd

src/backend/opencl/cpu/cpu_svd.cpp:80–83  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

78
79template<typename T, typename Tr>
80void svd(Array<Tr> &s, Array<T> &u, Array<T> &vt, const Array<T> &in) {
81 Array<T> in_copy = copyArray<T>(in);
82 svdInPlace(s, u, vt, in_copy);
83}
84
85#define INSTANTIATE_SVD(T, Tr) \
86 template void svd<T, Tr>(Array<Tr> & s, Array<T> & u, Array<T> & vt, \

Callers

nothing calls this directly

Calls 1

svdInPlaceFunction · 0.70

Tested by

no test coverage detected