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_dpotrs_work( int matrix_order, char uplo, lapack_int n,
00038 lapack_int nrhs, const double* a,
00039 lapack_int lda, double* b, lapack_int ldb )
00040 {
00041 lapack_int info = 0;
00042 if( matrix_order == LAPACK_COL_MAJOR ) {
00043
00044 LAPACK_dpotrs( &uplo, &n, &nrhs, a, &lda, b, &ldb, &info );
00045 if( info < 0 ) {
00046 info = info - 1;
00047 }
00048 } else if( matrix_order == LAPACK_ROW_MAJOR ) {
00049 lapack_int lda_t = MAX(1,n);
00050 lapack_int ldb_t = MAX(1,n);
00051 double* a_t = NULL;
00052 double* b_t = NULL;
00053
00054 if( lda < n ) {
00055 info = -6;
00056 LAPACKE_xerbla( "LAPACKE_dpotrs_work", info );
00057 return info;
00058 }
00059 if( ldb < nrhs ) {
00060 info = -8;
00061 LAPACKE_xerbla( "LAPACKE_dpotrs_work", info );
00062 return info;
00063 }
00064
00065 a_t = (double*)LAPACKE_malloc( sizeof(double) * lda_t * MAX(1,n) );
00066 if( a_t == NULL ) {
00067 info = LAPACK_TRANSPOSE_MEMORY_ERROR;
00068 goto exit_level_0;
00069 }
00070 b_t = (double*)LAPACKE_malloc( sizeof(double) * ldb_t * MAX(1,nrhs) );
00071 if( b_t == NULL ) {
00072 info = LAPACK_TRANSPOSE_MEMORY_ERROR;
00073 goto exit_level_1;
00074 }
00075
00076 LAPACKE_dpo_trans( matrix_order, uplo, n, a, lda, a_t, lda_t );
00077 LAPACKE_dge_trans( matrix_order, n, nrhs, b, ldb, b_t, ldb_t );
00078
00079 LAPACK_dpotrs( &uplo, &n, &nrhs, a_t, &lda_t, b_t, &ldb_t, &info );
00080 if( info < 0 ) {
00081 info = info - 1;
00082 }
00083
00084 LAPACKE_dge_trans( LAPACK_COL_MAJOR, n, nrhs, b_t, ldb_t, b, ldb );
00085
00086 LAPACKE_free( b_t );
00087 exit_level_1:
00088 LAPACKE_free( a_t );
00089 exit_level_0:
00090 if( info == LAPACK_TRANSPOSE_MEMORY_ERROR ) {
00091 LAPACKE_xerbla( "LAPACKE_dpotrs_work", info );
00092 }
00093 } else {
00094 info = -1;
00095 LAPACKE_xerbla( "LAPACKE_dpotrs_work", info );
00096 }
00097 return info;
00098 }