LAPACK  3.9.0
LAPACK: Linear Algebra PACKage

◆ LAPACKE_sgelsd()

lapack_int LAPACKE_sgelsd ( int  matrix_layout,
lapack_int  m,
lapack_int  n,
lapack_int  nrhs,
float *  a,
lapack_int  lda,
float *  b,
lapack_int  ldb,
float *  s,
float  rcond,
lapack_int rank 
)

Definition at line 35 of file lapacke_sgelsd.c.

40 {
41  lapack_int info = 0;
42  lapack_int lwork = -1;
43  /* Additional scalars declarations for work arrays */
44  lapack_int liwork;
45  lapack_int* iwork = NULL;
46  float* work = NULL;
47  lapack_int iwork_query;
48  float work_query;
49  if( matrix_layout != LAPACK_COL_MAJOR && matrix_layout != LAPACK_ROW_MAJOR ) {
50  LAPACKE_xerbla( "LAPACKE_sgelsd", -1 );
51  return -1;
52  }
53 #ifndef LAPACK_DISABLE_NAN_CHECK
54  if( LAPACKE_get_nancheck() ) {
55  /* Optionally check input matrices for NaNs */
56  if( LAPACKE_sge_nancheck( matrix_layout, m, n, a, lda ) ) {
57  return -5;
58  }
59  if( LAPACKE_sge_nancheck( matrix_layout, MAX(m,n), nrhs, b, ldb ) ) {
60  return -7;
61  }
62  if( LAPACKE_s_nancheck( 1, &rcond, 1 ) ) {
63  return -10;
64  }
65  }
66 #endif
67  /* Query optimal working array(s) size */
68  info = LAPACKE_sgelsd_work( matrix_layout, m, n, nrhs, a, lda, b, ldb, s,
69  rcond, rank, &work_query, lwork, &iwork_query );
70  if( info != 0 ) {
71  goto exit_level_0;
72  }
73  liwork = (lapack_int)iwork_query;
74  lwork = (lapack_int)work_query;
75  /* Allocate memory for work arrays */
76  iwork = (lapack_int*)LAPACKE_malloc( sizeof(lapack_int) * liwork );
77  if( iwork == NULL ) {
79  goto exit_level_0;
80  }
81  work = (float*)LAPACKE_malloc( sizeof(float) * lwork );
82  if( work == NULL ) {
84  goto exit_level_1;
85  }
86  /* Call middle-level interface */
87  info = LAPACKE_sgelsd_work( matrix_layout, m, n, nrhs, a, lda, b, ldb, s,
88  rcond, rank, work, lwork, iwork );
89  /* Release memory and exit */
90  LAPACKE_free( work );
91 exit_level_1:
92  LAPACKE_free( iwork );
93 exit_level_0:
94  if( info == LAPACK_WORK_MEMORY_ERROR ) {
95  LAPACKE_xerbla( "LAPACKE_sgelsd", info );
96  }
97  return info;
Here is the call graph for this function:
LAPACKE_free
#define LAPACKE_free(p)
Definition: lapacke.h:47
lapack_int
#define lapack_int
Definition: lapack.h:21
LAPACKE_s_nancheck
lapack_logical LAPACKE_s_nancheck(lapack_int n, const float *x, lapack_int incx)
Definition: lapacke_s_nancheck.c:36
LAPACK_WORK_MEMORY_ERROR
#define LAPACK_WORK_MEMORY_ERROR
Definition: lapacke.h:56
LAPACKE_xerbla
void LAPACKE_xerbla(const char *name, lapack_int info)
Definition: lapacke_xerbla.c:36
MAX
#define MAX(x, y)
Definition: lapacke_utils.h:47
LAPACKE_sge_nancheck
lapack_logical LAPACKE_sge_nancheck(int matrix_layout, lapack_int m, lapack_int n, const float *a, lapack_int lda)
Definition: lapacke_sge_nancheck.c:36
LAPACKE_malloc
#define LAPACKE_malloc(size)
Definition: lapacke.h:44
LAPACKE_get_nancheck
int LAPACKE_get_nancheck()
Definition: lapacke_nancheck.c:42
LAPACK_ROW_MAJOR
#define LAPACK_ROW_MAJOR
Definition: lapacke.h:53
LAPACK_COL_MAJOR
#define LAPACK_COL_MAJOR
Definition: lapacke.h:54
LAPACKE_sgelsd_work
lapack_int LAPACKE_sgelsd_work(int matrix_layout, lapack_int m, lapack_int n, lapack_int nrhs, float *a, lapack_int lda, float *b, lapack_int ldb, float *s, float rcond, lapack_int *rank, float *work, lapack_int lwork, lapack_int *iwork)
Definition: lapacke_sgelsd_work.c:35