Go to the source code of this file.
◆ LAPACKE_dgeqrt_work()
Definition at line 35 of file lapacke_dgeqrt_work.c.
38{
41
43 if( info < 0 ) {
44 info = info - 1;
45 }
49 double* a_t = NULL;
50 double* t_t = NULL;
51
53 info = -6;
55 return info;
56 }
57 if( ldt <
MIN(m,
n) ) {
58 info = -8;
60 return info;
61 }
62
64 if( a_t == NULL ) {
66 goto exit_level_0;
67 }
68 t_t = (double*)
70 if( t_t == NULL ) {
72 goto exit_level_1;
73 }
74
76
77 LAPACK_dgeqrt( &m, &
n, &nb, a_t, &lda_t, t_t, &ldt_t, work, &info );
78 if( info < 0 ) {
79 info = info - 1;
80 }
81
84 ldt );
85
87exit_level_1:
89exit_level_0:
92 }
93 } else {
94 info = -1;
96 }
97 return info;
98}
#define LAPACKE_malloc(size)
#define LAPACK_TRANSPOSE_MEMORY_ERROR
void LAPACKE_xerbla(const char *name, lapack_int info)
void LAPACKE_dge_trans(int matrix_layout, lapack_int m, lapack_int n, const double *in, lapack_int ldin, double *out, lapack_int ldout)