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() 677 const float* b, size_t bstep, int nb, in SVBkSb() argument 683 b, (int)(bstep/sizeof(b[0])), nb, in SVBkSb() [all …]
|