D | lapack.cpp | 53 int LU(float* A, size_t astep, int m, float* b, size_t bstep, int n) in LU() argument 55 return hal::LU(A, astep, m, b, bstep, n); in LU() 58 int LU(double* A, size_t astep, int m, double* b, size_t bstep, int n) in LU() argument 60 return hal::LU(A, astep, m, b, bstep, n); in LU() 63 bool Cholesky(float* A, size_t astep, int m, float* b, size_t bstep, int n) in Cholesky() argument 65 return hal::Cholesky(A, astep, m, b, bstep, n); in Cholesky() 68 bool Cholesky(double* A, size_t astep, int m, double* b, size_t bstep, int n) in Cholesky() argument 70 return hal::Cholesky(A, astep, m, b, bstep, n); in Cholesky() 92 JacobiImpl_( _Tp* A, size_t astep, _Tp* W, _Tp* V, size_t vstep, int n, uchar* buf ) in JacobiImpl_() argument 97 astep /= sizeof(A[0]); in JacobiImpl_() [all …]
|