LAPACK 3.11.0
LAPACK: Linear Algebra PACKage
Loading...
Searching...
No Matches

◆ LAPACKE_dsysv_work()

lapack_int LAPACKE_dsysv_work ( int  matrix_layout,
char  uplo,
lapack_int  n,
lapack_int  nrhs,
double *  a,
lapack_int  lda,
lapack_int ipiv,
double *  b,
lapack_int  ldb,
double *  work,
lapack_int  lwork 
)

Definition at line 35 of file lapacke_dsysv_work.c.

39{
40 lapack_int info = 0;
41 if( matrix_layout == LAPACK_COL_MAJOR ) {
42 /* Call LAPACK function and adjust info */
43 LAPACK_dsysv( &uplo, &n, &nrhs, a, &lda, ipiv, b, &ldb, work, &lwork,
44 &info );
45 if( info < 0 ) {
46 info = info - 1;
47 }
48 } else if( matrix_layout == LAPACK_ROW_MAJOR ) {
49 lapack_int lda_t = MAX(1,n);
50 lapack_int ldb_t = MAX(1,n);
51 double* a_t = NULL;
52 double* b_t = NULL;
53 /* Check leading dimension(s) */
54 if( lda < n ) {
55 info = -6;
56 LAPACKE_xerbla( "LAPACKE_dsysv_work", info );
57 return info;
58 }
59 if( ldb < nrhs ) {
60 info = -9;
61 LAPACKE_xerbla( "LAPACKE_dsysv_work", info );
62 return info;
63 }
64 /* Query optimal working array(s) size if requested */
65 if( lwork == -1 ) {
66 LAPACK_dsysv( &uplo, &n, &nrhs, a, &lda_t, ipiv, b, &ldb_t, work,
67 &lwork, &info );
68 return (info < 0) ? (info - 1) : info;
69 }
70 /* Allocate memory for temporary array(s) */
71 a_t = (double*)LAPACKE_malloc( sizeof(double) * lda_t * MAX(1,n) );
72 if( a_t == NULL ) {
74 goto exit_level_0;
75 }
76 b_t = (double*)LAPACKE_malloc( sizeof(double) * ldb_t * MAX(1,nrhs) );
77 if( b_t == NULL ) {
79 goto exit_level_1;
80 }
81 /* Transpose input matrices */
82 LAPACKE_dsy_trans( matrix_layout, uplo, n, a, lda, a_t, lda_t );
83 LAPACKE_dge_trans( matrix_layout, n, nrhs, b, ldb, b_t, ldb_t );
84 /* Call LAPACK function and adjust info */
85 LAPACK_dsysv( &uplo, &n, &nrhs, a_t, &lda_t, ipiv, b_t, &ldb_t, work,
86 &lwork, &info );
87 if( info < 0 ) {
88 info = info - 1;
89 }
90 /* Transpose output matrices */
91 LAPACKE_dsy_trans( LAPACK_COL_MAJOR, uplo, n, a_t, lda_t, a, lda );
92 LAPACKE_dge_trans( LAPACK_COL_MAJOR, n, nrhs, b_t, ldb_t, b, ldb );
93 /* Release memory and exit */
94 LAPACKE_free( b_t );
95exit_level_1:
96 LAPACKE_free( a_t );
97exit_level_0:
98 if( info == LAPACK_TRANSPOSE_MEMORY_ERROR ) {
99 LAPACKE_xerbla( "LAPACKE_dsysv_work", info );
100 }
101 } else {
102 info = -1;
103 LAPACKE_xerbla( "LAPACKE_dsysv_work", info );
104 }
105 return info;
106}
#define LAPACK_dsysv(...)
Definition: lapack.h:17818
#define lapack_int
Definition: lapack.h:87
#define LAPACK_COL_MAJOR
Definition: lapacke.h:53
#define LAPACKE_free(p)
Definition: lapacke.h:46
#define LAPACK_ROW_MAJOR
Definition: lapacke.h:52
#define LAPACKE_malloc(size)
Definition: lapacke.h:43
#define LAPACK_TRANSPOSE_MEMORY_ERROR
Definition: lapacke.h:56
void LAPACKE_xerbla(const char *name, lapack_int info)
#define MAX(x, y)
Definition: lapacke_utils.h:46
void LAPACKE_dge_trans(int matrix_layout, lapack_int m, lapack_int n, const double *in, lapack_int ldin, double *out, lapack_int ldout)
void LAPACKE_dsy_trans(int matrix_layout, char uplo, lapack_int n, const double *in, lapack_int ldin, double *out, lapack_int ldout)
Here is the call graph for this function:
Here is the caller graph for this function: