Go to the source code of this file.
◆ LAPACKE_slantr_work()
| float LAPACKE_slantr_work |
( |
int | matrix_layout, |
|
|
char | norm, |
|
|
char | uplo, |
|
|
char | diag, |
|
|
lapack_int | m, |
|
|
lapack_int | n, |
|
|
const float * | a, |
|
|
lapack_int | lda, |
|
|
float * | work ) |
Definition at line 35 of file lapacke_slantr_work.c.
38{
40 float res = 0.;
42
45 float* work_lapack = NULL;
46 char norm_lapack;
47 char uplo_lapack;
48
50 info = -8;
52 return info;
53 }
55 norm_lapack = 'i';
57 norm_lapack = '1';
58 } else {
60 }
62 uplo_lapack = 'l';
63 } else {
64 uplo_lapack = 'u';
65 }
66
69 if( work_lapack == NULL ) {
71 goto exit_level_0;
72 }
73 }
74
75 res =
LAPACK_slantr( &norm_lapack, &uplo_lapack, &diag, &
n, &m, a, &lda, work_lapack );
76
77 if( work_lapack ) {
79 }
80exit_level_0:
83 }
84 } else {
85 info = -1;
87 }
88 return res;
89}
norm(diag(diag(diag(inv(mat))) -id.SOL), 2) % destroy mumps instance id.JOB
#define LAPACK_slantr(...)
#define LAPACK_WORK_MEMORY_ERROR
#define LAPACKE_malloc(size)
lapack_logical LAPACKE_lsame(char ca, char cb)
void LAPACKE_xerbla(const char *name, lapack_int info)