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_sopmtr_work( int matrix_order, char side, char uplo,
00038 char trans, lapack_int m, lapack_int n,
00039 const float* ap, const float* tau, float* c,
00040 lapack_int ldc, float* work )
00041 {
00042 lapack_int info = 0;
00043 if( matrix_order == LAPACK_COL_MAJOR ) {
00044
00045 LAPACK_sopmtr( &side, &uplo, &trans, &m, &n, ap, tau, c, &ldc, work,
00046 &info );
00047 if( info < 0 ) {
00048 info = info - 1;
00049 }
00050 } else if( matrix_order == LAPACK_ROW_MAJOR ) {
00051 lapack_int r = LAPACKE_lsame( side, 'l' ) ? m : n;
00052 lapack_int ldc_t = MAX(1,m);
00053 float* c_t = NULL;
00054 float* ap_t = NULL;
00055
00056 if( ldc < n ) {
00057 info = -10;
00058 LAPACKE_xerbla( "LAPACKE_sopmtr_work", info );
00059 return info;
00060 }
00061
00062 c_t = (float*)LAPACKE_malloc( sizeof(float) * ldc_t * MAX(1,n) );
00063 if( c_t == NULL ) {
00064 info = LAPACK_TRANSPOSE_MEMORY_ERROR;
00065 goto exit_level_0;
00066 }
00067 ap_t = (float*)
00068 LAPACKE_malloc( sizeof(float) * ( MAX(1,r) * MAX(2,r+1) ) / 2 );
00069 if( ap_t == NULL ) {
00070 info = LAPACK_TRANSPOSE_MEMORY_ERROR;
00071 goto exit_level_1;
00072 }
00073
00074 LAPACKE_sge_trans( matrix_order, m, n, c, ldc, c_t, ldc_t );
00075 LAPACKE_ssp_trans( matrix_order, uplo, r, ap, ap_t );
00076
00077 LAPACK_sopmtr( &side, &uplo, &trans, &m, &n, ap_t, tau, c_t, &ldc_t,
00078 work, &info );
00079 if( info < 0 ) {
00080 info = info - 1;
00081 }
00082
00083 LAPACKE_sge_trans( LAPACK_COL_MAJOR, m, n, c_t, ldc_t, c, ldc );
00084
00085 LAPACKE_free( ap_t );
00086 exit_level_1:
00087 LAPACKE_free( c_t );
00088 exit_level_0:
00089 if( info == LAPACK_TRANSPOSE_MEMORY_ERROR ) {
00090 LAPACKE_xerbla( "LAPACKE_sopmtr_work", info );
00091 }
00092 } else {
00093 info = -1;
00094 LAPACKE_xerbla( "LAPACKE_sopmtr_work", info );
00095 }
00096 return info;
00097 }