Go to the source code of this file.
|
| lapack_int | LAPACKE_cgbequ_work (int matrix_layout, lapack_int m, lapack_int n, lapack_int kl, lapack_int ku, const lapack_complex_float *ab, lapack_int ldab, float *r, float *c, float *rowcnd, float *colcnd, float *amax) |
◆ LAPACKE_cgbequ_work()
| lapack_int LAPACKE_cgbequ_work |
( |
int | matrix_layout, |
|
|
lapack_int | m, |
|
|
lapack_int | n, |
|
|
lapack_int | kl, |
|
|
lapack_int | ku, |
|
|
const lapack_complex_float * | ab, |
|
|
lapack_int | ldab, |
|
|
float * | r, |
|
|
float * | c, |
|
|
float * | rowcnd, |
|
|
float * | colcnd, |
|
|
float * | amax ) |
Definition at line 35 of file lapacke_cgbequ_work.c.
40{
43
44 LAPACK_cgbequ( &m, &
n, &kl, &ku, ab, &ldab,
r, c, rowcnd, colcnd, amax,
45 &info );
46 if( info < 0 ) {
47 info = info - 1;
48 }
52
54 info = -7;
56 return info;
57 }
58
61 if( ab_t == NULL ) {
63 goto exit_level_0;
64 }
65
67
68 LAPACK_cgbequ( &m, &
n, &kl, &ku, ab_t, &ldab_t,
r, c, rowcnd, colcnd,
69 amax, &info );
70 if( info < 0 ) {
71 info = info - 1;
72 }
73
75exit_level_0:
78 }
79 } else {
80 info = -1;
82 }
83 return info;
84}
#define lapack_complex_float
#define LAPACKE_malloc(size)
#define LAPACK_TRANSPOSE_MEMORY_ERROR
void LAPACKE_xerbla(const char *name, lapack_int info)
void LAPACKE_cgb_trans(int matrix_layout, lapack_int m, lapack_int n, lapack_int kl, lapack_int ku, const lapack_complex_float *in, lapack_int ldin, lapack_complex_float *out, lapack_int ldout)