25 lines
794 B
C
25 lines
794 B
C
#include "lapacke_utils.h"
|
|
|
|
lapack_int LAPACKE_dorhr_col( int matrix_layout, lapack_int m, lapack_int n,
|
|
lapack_int nb, double* a,
|
|
lapack_int lda, double* t,
|
|
lapack_int ldt, double* d)
|
|
{
|
|
lapack_int info = 0;
|
|
if( matrix_layout != LAPACK_COL_MAJOR && matrix_layout != LAPACK_ROW_MAJOR ) {
|
|
LAPACKE_xerbla( "LAPACKE_dorhr_col", -1 );
|
|
return -1;
|
|
}
|
|
#ifndef LAPACK_DISABLE_NAN_CHECK
|
|
if( LAPACKE_get_nancheck() ) {
|
|
/* Optionally check input matrices for NaNs */
|
|
if( LAPACKE_dge_nancheck( matrix_layout, m, n, a, lda ) ) {
|
|
return -5;
|
|
}
|
|
}
|
|
#endif
|
|
/* Call middle-level interface */
|
|
info = LAPACKE_dorhr_col_work( matrix_layout, m, n, nb, a, lda, t, ldt, d );
|
|
return info;
|
|
}
|