Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034 #include "lapacke.h"
00035 #include "lapacke_utils.h"
00036
00037 lapack_int LAPACKE_zupgtr_work( int matrix_order, char uplo, lapack_int n,
00038 const lapack_complex_double* ap,
00039 const lapack_complex_double* tau,
00040 lapack_complex_double* q, lapack_int ldq,
00041 lapack_complex_double* work )
00042 {
00043 lapack_int info = 0;
00044 if( matrix_order == LAPACK_COL_MAJOR ) {
00045
00046 LAPACK_zupgtr( &uplo, &n, ap, tau, q, &ldq, work, &info );
00047 if( info < 0 ) {
00048 info = info - 1;
00049 }
00050 } else if( matrix_order == LAPACK_ROW_MAJOR ) {
00051 lapack_int ldq_t = MAX(1,n);
00052 lapack_complex_double* q_t = NULL;
00053 lapack_complex_double* ap_t = NULL;
00054
00055 if( ldq < n ) {
00056 info = -7;
00057 LAPACKE_xerbla( "LAPACKE_zupgtr_work", info );
00058 return info;
00059 }
00060
00061 q_t = (lapack_complex_double*)
00062 LAPACKE_malloc( sizeof(lapack_complex_double) * ldq_t * MAX(1,n) );
00063 if( q_t == NULL ) {
00064 info = LAPACK_TRANSPOSE_MEMORY_ERROR;
00065 goto exit_level_0;
00066 }
00067 ap_t = (lapack_complex_double*)
00068 LAPACKE_malloc( sizeof(lapack_complex_double) *
00069 ( MAX(1,n) * MAX(2,n+1) ) / 2 );
00070 if( ap_t == NULL ) {
00071 info = LAPACK_TRANSPOSE_MEMORY_ERROR;
00072 goto exit_level_1;
00073 }
00074
00075 LAPACKE_zpp_trans( matrix_order, uplo, n, ap, ap_t );
00076
00077 LAPACK_zupgtr( &uplo, &n, ap_t, tau, q_t, &ldq_t, work, &info );
00078 if( info < 0 ) {
00079 info = info - 1;
00080 }
00081
00082 LAPACKE_zge_trans( LAPACK_COL_MAJOR, n, n, q_t, ldq_t, q, ldq );
00083
00084 LAPACKE_free( ap_t );
00085 exit_level_1:
00086 LAPACKE_free( q_t );
00087 exit_level_0:
00088 if( info == LAPACK_TRANSPOSE_MEMORY_ERROR ) {
00089 LAPACKE_xerbla( "LAPACKE_zupgtr_work", info );
00090 }
00091 } else {
00092 info = -1;
00093 LAPACKE_xerbla( "LAPACKE_zupgtr_work", info );
00094 }
00095 return info;
00096 }