LAPACK  3.5.0
LAPACK: Linear Algebra PACKage
 All Classes Files Functions Variables Typedefs Macros
xerbla-c File Reference
#include <stdio.h>
#include <lapacke.h>
Include dependency graph for xerbla-c:

Go to the source code of this file.

Functions/Subroutines

set ue cd $ADTTMP cat<< EOF >
tmp c void 
LAPACKE_xerbla (const char *name, lapack_int info)
int main (int argc, const char *argv[])

Function/Subroutine Documentation

set ue cd $ADTTMP cat<< EOF > tmp c void LAPACKE_xerbla ( const char *  name,
lapack_int  info 
)

Definition at line 8 of file xerbla-c.

{
if( info < 0 ) {
printf( "OVERRIDE SUCCESSFUL override %d in %s\n", -(int) info, name );
}
}
int main ( int  argc,
const char *  argv[] 
)

Definition at line 16 of file xerbla-c.

{
double a[5][3] = {1,1,1,2,3,4,3,5,2,4,2,5,5,4,3};
double b[5][2] = {-10,-3,12,14,14,12,16,16,18,16};
lapack_int info,m,n,lda,ldb,nrhs;
int i,j;
m = 5;
n = 9;
nrhs = 2;
lda = 3;
ldb = 2;
info = LAPACKE_dgels(LAPACK_ROW_MAJOR,'N',m,n,nrhs,*a,lda,*b,ldb);
return(info);
}

Here is the call graph for this function: