LAPACK  3.9.0
LAPACK: Linear Algebra PACKage

◆ LAPACKE_chesv_rk_work()

lapack_int LAPACKE_chesv_rk_work ( int  matrix_layout,
char  uplo,
lapack_int  n,
lapack_int  nrhs,
lapack_complex_float a,
lapack_int  lda,
lapack_complex_float e,
lapack_int ipiv,
lapack_complex_float b,
lapack_int  ldb,
lapack_complex_float work,
lapack_int  lwork 
)

Definition at line 35 of file lapacke_chesv_rk_work.c.

42 {
43  lapack_int info = 0;
44  if( matrix_layout == LAPACK_COL_MAJOR ) {
45  /* Call LAPACK function and adjust info */
46  LAPACK_chesv_rk( &uplo, &n, &nrhs, a, &lda, e, ipiv, b, &ldb, work, &lwork,
47  &info );
48  if( info < 0 ) {
49  info = info - 1;
50  }
51  } else if( matrix_layout == LAPACK_ROW_MAJOR ) {
52  lapack_int lda_t = MAX(1,n);
53  lapack_int ldb_t = MAX(1,n);
54  lapack_complex_float* a_t = NULL;
55  lapack_complex_float* b_t = NULL;
56  /* Check leading dimension(s) */
57  if( lda < n ) {
58  info = -6;
59  LAPACKE_xerbla( "LAPACKE_chesv_rk_work", info );
60  return info;
61  }
62  if( ldb < nrhs ) {
63  info = -10;
64  LAPACKE_xerbla( "LAPACKE_chesv_rk_work", info );
65  return info;
66  }
67  /* Query optimal working array(s) size if requested */
68  if( lwork == -1 ) {
69  LAPACK_chesv_rk( &uplo, &n, &nrhs, a, &lda_t, e, ipiv, b, &ldb_t, work,
70  &lwork, &info );
71  return (info < 0) ? (info - 1) : info;
72  }
73  /* Allocate memory for temporary array(s) */
74  a_t = (lapack_complex_float*)
75  LAPACKE_malloc( sizeof(lapack_complex_float) * lda_t * MAX(1,n) );
76  if( a_t == NULL ) {
78  goto exit_level_0;
79  }
80  b_t = (lapack_complex_float*)
82  ldb_t * MAX(1,nrhs) );
83  if( b_t == NULL ) {
85  goto exit_level_1;
86  }
87  /* Transpose input matrices */
88  LAPACKE_che_trans( matrix_layout, uplo, n, a, lda, a_t, lda_t );
89  LAPACKE_cge_trans( matrix_layout, n, nrhs, b, ldb, b_t, ldb_t );
90  /* Call LAPACK function and adjust info */
91  LAPACK_chesv_rk( &uplo, &n, &nrhs, a_t, &lda_t, e, ipiv, b_t, &ldb_t, work,
92  &lwork, &info );
93  if( info < 0 ) {
94  info = info - 1;
95  }
96  /* Transpose output matrices */
97  LAPACKE_che_trans( LAPACK_COL_MAJOR, uplo, n, a_t, lda_t, a, lda );
98  LAPACKE_cge_trans( LAPACK_COL_MAJOR, n, nrhs, b_t, ldb_t, b, ldb );
99  /* Release memory and exit */
100  LAPACKE_free( b_t );
101 exit_level_1:
102  LAPACKE_free( a_t );
103 exit_level_0:
104  if( info == LAPACK_TRANSPOSE_MEMORY_ERROR ) {
105  LAPACKE_xerbla( "LAPACKE_chesv_rk_work", info );
106  }
107  } else {
108  info = -1;
109  LAPACKE_xerbla( "LAPACKE_chesv_rk_work", info );
110  }
111  return info;
Here is the call graph for this function:
Here is the caller graph for this function:
LAPACKE_che_trans
void LAPACKE_che_trans(int matrix_layout, char uplo, lapack_int n, const lapack_complex_float *in, lapack_int ldin, lapack_complex_float *out, lapack_int ldout)
Definition: lapacke_che_trans.c:39
LAPACK_chesv_rk
void LAPACK_chesv_rk(char const *uplo, lapack_int const *n, lapack_int const *nrhs, lapack_complex_float *A, lapack_int const *lda, lapack_complex_float *E, lapack_int *ipiv, lapack_complex_float *B, lapack_int const *ldb, lapack_complex_float *work, lapack_int const *lwork, lapack_int *info)
LAPACKE_free
#define LAPACKE_free(p)
Definition: lapacke.h:47
lapack_int
#define lapack_int
Definition: lapack.h:21
LAPACKE_cge_trans
void LAPACKE_cge_trans(int matrix_layout, lapack_int m, lapack_int n, const lapack_complex_float *in, lapack_int ldin, lapack_complex_float *out, lapack_int ldout)
Definition: lapacke_cge_trans.c:39
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
lapack_complex_float
#define lapack_complex_float
Definition: lapack.h:56
LAPACK_TRANSPOSE_MEMORY_ERROR
#define LAPACK_TRANSPOSE_MEMORY_ERROR
Definition: lapacke.h:57
LAPACKE_malloc
#define LAPACKE_malloc(size)
Definition: lapacke.h:44
LAPACK_ROW_MAJOR
#define LAPACK_ROW_MAJOR
Definition: lapacke.h:53
LAPACK_COL_MAJOR
#define LAPACK_COL_MAJOR
Definition: lapacke.h:54