Go to the source code of this file.
|
| lapack_int | LAPACKE_sgbequb_work (int matrix_layout, lapack_int m, lapack_int n, lapack_int kl, lapack_int ku, const float *ab, lapack_int ldab, float *r, float *c, float *rowcnd, float *colcnd, float *amax) |
◆ LAPACKE_sgbequb_work()
| lapack_int LAPACKE_sgbequb_work |
( |
int | matrix_layout, |
|
|
lapack_int | m, |
|
|
lapack_int | n, |
|
|
lapack_int | kl, |
|
|
lapack_int | ku, |
|
|
const float * | ab, |
|
|
lapack_int | ldab, |
|
|
float * | r, |
|
|
float * | c, |
|
|
float * | rowcnd, |
|
|
float * | colcnd, |
|
|
float * | amax ) |
Definition at line 35 of file lapacke_sgbequb_work.c.
39{
42
43 LAPACK_sgbequb( &m, &
n, &kl, &ku, ab, &ldab,
r, c, rowcnd, colcnd, amax,
44 &info );
45 if( info < 0 ) {
46 info = info - 1;
47 }
50 float* ab_t = NULL;
51
53 info = -7;
55 return info;
56 }
57
59 if( ab_t == NULL ) {
61 goto exit_level_0;
62 }
63
65
66 LAPACK_sgbequb( &m, &
n, &kl, &ku, ab_t, &ldab_t,
r, c, rowcnd, colcnd,
67 amax, &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 LAPACKE_malloc(size)
#define LAPACK_TRANSPOSE_MEMORY_ERROR
void LAPACKE_xerbla(const char *name, lapack_int info)
void LAPACKE_sgb_trans(int matrix_layout, lapack_int m, lapack_int n, lapack_int kl, lapack_int ku, const float *in, lapack_int ldin, float *out, lapack_int ldout)