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