39{
42
43 LAPACK_ssbtrd( &vect, &uplo, &n, &kd, ab, &ldab, d, e, q, &ldq, work,
44 &info );
45 if( info < 0 ) {
46 info = info - 1;
47 }
51 float* ab_t = NULL;
52 float* q_t = NULL;
53
54 if( ldab < n ) {
55 info = -7;
57 return info;
58 }
59 if( ldq < n ) {
60 info = -11;
62 return info;
63 }
64
66 if( ab_t == NULL ) {
68 goto exit_level_0;
69 }
72 if( q_t == NULL ) {
74 goto exit_level_1;
75 }
76 }
77
81 }
82
83 LAPACK_ssbtrd( &vect, &uplo, &n, &kd, ab_t, &ldab_t, d, e, q_t, &ldq_t,
84 work, &info );
85 if( info < 0 ) {
86 info = info - 1;
87 }
88
90 ldab );
93 }
94
97 }
98exit_level_1:
100exit_level_0:
103 }
104 } else {
105 info = -1;
107 }
108 return info;
109}
#define LAPACK_ssbtrd(...)
#define LAPACKE_malloc(size)
#define LAPACK_TRANSPOSE_MEMORY_ERROR
void LAPACKE_ssb_trans(int matrix_layout, char uplo, lapack_int n, lapack_int kd, const float *in, lapack_int ldin, float *out, lapack_int ldout)
lapack_logical LAPACKE_lsame(char ca, char cb)
void LAPACKE_xerbla(const char *name, lapack_int info)
void LAPACKE_sge_trans(int matrix_layout, lapack_int m, lapack_int n, const float *in, lapack_int ldin, float *out, lapack_int ldout)