LAPACK  3.6.1
LAPACK: Linear Algebra PACKage
float cblas_sasum ( const int  N,
const float *  X,
const int  incX 
)

Definition at line 12 of file cblas_sasum.c.

13 {
14  float asum;
15 #ifdef F77_INT
16  F77_INT F77_N=N, F77_incX=incX;
17 #else
18  #define F77_N N
19  #define F77_incX incX
20 #endif
21  F77_sasum_sub( &F77_N, X, &F77_incX, &asum);
22  return asum;
23 }
void F77_sasum_sub(FINT, const float *, FINT, float *)
#define F77_N
#define F77_incX
#define N
Definition: example_user.c:10

Here is the call graph for this function:

Here is the caller graph for this function: