Go to the source code of this file.
|
| lapack_int | LAPACKE_dsycon_3_work (int matrix_layout, char uplo, lapack_int n, const double *a, lapack_int lda, const double *e, const lapack_int *ipiv, double anorm, double *rcond, double *work, lapack_int *iwork) |
◆ LAPACKE_dsycon_3_work()
| lapack_int LAPACKE_dsycon_3_work |
( |
int | matrix_layout, |
|
|
char | uplo, |
|
|
lapack_int | n, |
|
|
const double * | a, |
|
|
lapack_int | lda, |
|
|
const double * | e, |
|
|
const lapack_int * | ipiv, |
|
|
double | anorm, |
|
|
double * | rcond, |
|
|
double * | work, |
|
|
lapack_int * | iwork ) |
Definition at line 35 of file lapacke_dsycon_3_work.c.
39{
42
43 LAPACK_dsycon_3( &uplo, &
n, a, &lda, e, ipiv, &anorm, rcond, work, iwork,
44 &info );
45 if( info < 0 ) {
46 info = info - 1;
47 }
50 double* a_t = NULL;
51
53 info = -5;
55 return info;
56 }
57
59 if( a_t == NULL ) {
61 goto exit_level_0;
62 }
63
65
66 LAPACK_dsycon_3( &uplo, &
n, a_t, &lda_t, e, ipiv, &anorm, rcond, work, iwork,
67 &info );
68 if( info < 0 ) {
69 info = info - 1;
70 }
71
73exit_level_0:
76 }
77 } else {
78 info = -1;
80 }
81 return info;
82}
#define LAPACK_dsycon_3(...)
#define LAPACKE_malloc(size)
#define LAPACK_TRANSPOSE_MEMORY_ERROR
void LAPACKE_xerbla(const char *name, lapack_int info)
void LAPACKE_dsy_trans(int matrix_layout, char uplo, lapack_int n, const double *in, lapack_int ldin, double *out, lapack_int ldout)