You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
72 lines
1.7 KiB
72 lines
1.7 KiB
/*
|
|
*
|
|
* cblas_sspr2.c
|
|
* This program is a C interface to sspr2.
|
|
* Written by Keita Teranishi
|
|
* 4/6/1998
|
|
*
|
|
*/
|
|
|
|
#include "cblas.h"
|
|
#include "cblas_f77.h"
|
|
void cblas_sspr2(const enum CBLAS_ORDER order, const enum CBLAS_UPLO Uplo,
|
|
const int N, const float alpha, const float *X,
|
|
const int incX, const float *Y, const int incY, float *A)
|
|
{
|
|
char UL;
|
|
#ifdef F77_CHAR
|
|
F77_CHAR F77_UL;
|
|
#else
|
|
#define F77_UL &UL
|
|
#endif
|
|
|
|
#ifdef F77_INT
|
|
F77_INT F77_N=N, F77_incX=incX, F77_incY=incY;
|
|
#else
|
|
#define F77_N N
|
|
#define F77_incX incX
|
|
#define F77_incY incY
|
|
#endif
|
|
|
|
extern int CBLAS_CallFromC;
|
|
extern int RowMajorStrg;
|
|
RowMajorStrg = 0;
|
|
CBLAS_CallFromC = 1;
|
|
if (order == CblasColMajor)
|
|
{
|
|
if (Uplo == CblasLower) UL = 'L';
|
|
else if (Uplo == CblasUpper) UL = 'U';
|
|
else
|
|
{
|
|
cblas_xerbla(2, "cblas_sspr2","Illegal Uplo setting, %d\n",Uplo );
|
|
CBLAS_CallFromC = 0;
|
|
RowMajorStrg = 0;
|
|
return;
|
|
}
|
|
#ifdef F77_CHAR
|
|
F77_UL = C2F_CHAR(&UL);
|
|
#endif
|
|
|
|
F77_sspr2(F77_UL, &F77_N, &alpha, X, &F77_incX, Y, &F77_incY, A);
|
|
|
|
} else if (order == CblasRowMajor)
|
|
{
|
|
RowMajorStrg = 1;
|
|
if (Uplo == CblasLower) UL = 'U';
|
|
else if (Uplo == CblasUpper) UL = 'L';
|
|
else
|
|
{
|
|
cblas_xerbla(2, "cblas_sspr2","Illegal Uplo setting, %d\n",Uplo );
|
|
CBLAS_CallFromC = 0;
|
|
RowMajorStrg = 0;
|
|
return;
|
|
}
|
|
#ifdef F77_CHAR
|
|
F77_UL = C2F_CHAR(&UL);
|
|
#endif
|
|
F77_sspr2(F77_UL, &F77_N, &alpha, X, &F77_incX, Y, &F77_incY, A);
|
|
} else cblas_xerbla(1, "cblas_sspr2", "Illegal Order setting, %d\n", order);
|
|
CBLAS_CallFromC = 0;
|
|
RowMajorStrg = 0;
|
|
}
|