| |
| |
| |
| |
| |
| |
| |
| |
|
|
| #include "common.h" |
|
|
| |
| int EIGEN_BLAS_FUNC(symv) (const char *uplo, const int *n, const RealScalar *palpha, const RealScalar *pa, const int *lda, |
| const RealScalar *px, const int *incx, const RealScalar *pbeta, RealScalar *py, const int *incy) |
| { |
| typedef void (*functype)(int, const Scalar*, int, const Scalar*, Scalar*, Scalar); |
| static const functype func[2] = { |
| |
| (internal::selfadjoint_matrix_vector_product<Scalar,int,ColMajor,Upper,false,false>::run), |
| |
| (internal::selfadjoint_matrix_vector_product<Scalar,int,ColMajor,Lower,false,false>::run), |
| }; |
|
|
| const Scalar* a = reinterpret_cast<const Scalar*>(pa); |
| const Scalar* x = reinterpret_cast<const Scalar*>(px); |
| Scalar* y = reinterpret_cast<Scalar*>(py); |
| Scalar alpha = *reinterpret_cast<const Scalar*>(palpha); |
| Scalar beta = *reinterpret_cast<const Scalar*>(pbeta); |
|
|
| |
| int info = 0; |
| if(UPLO(*uplo)==INVALID) info = 1; |
| else if(*n<0) info = 2; |
| else if(*lda<std::max(1,*n)) info = 5; |
| else if(*incx==0) info = 7; |
| else if(*incy==0) info = 10; |
| if(info) |
| return xerbla_(SCALAR_SUFFIX_UP"SYMV ",&info,6); |
|
|
| if(*n==0) |
| return 0; |
|
|
| const Scalar* actual_x = get_compact_vector(x,*n,*incx); |
| Scalar* actual_y = get_compact_vector(y,*n,*incy); |
|
|
| if(beta!=Scalar(1)) |
| { |
| if(beta==Scalar(0)) make_vector(actual_y, *n).setZero(); |
| else make_vector(actual_y, *n) *= beta; |
| } |
|
|
| int code = UPLO(*uplo); |
| if(code>=2 || func[code]==0) |
| return 0; |
|
|
| func[code](*n, a, *lda, actual_x, actual_y, alpha); |
|
|
| if(actual_x!=x) delete[] actual_x; |
| if(actual_y!=y) delete[] copy_back(actual_y,y,*n,*incy); |
|
|
| return 1; |
| } |
|
|
| |
| int EIGEN_BLAS_FUNC(syr)(const char *uplo, const int *n, const RealScalar *palpha, const RealScalar *px, const int *incx, RealScalar *pc, const int *ldc) |
| { |
|
|
| typedef void (*functype)(int, Scalar*, int, const Scalar*, const Scalar*, const Scalar&); |
| static const functype func[2] = { |
| |
| (selfadjoint_rank1_update<Scalar,int,ColMajor,Upper,false,Conj>::run), |
| |
| (selfadjoint_rank1_update<Scalar,int,ColMajor,Lower,false,Conj>::run), |
| }; |
|
|
| const Scalar* x = reinterpret_cast<const Scalar*>(px); |
| Scalar* c = reinterpret_cast<Scalar*>(pc); |
| Scalar alpha = *reinterpret_cast<const Scalar*>(palpha); |
|
|
| int info = 0; |
| if(UPLO(*uplo)==INVALID) info = 1; |
| else if(*n<0) info = 2; |
| else if(*incx==0) info = 5; |
| else if(*ldc<std::max(1,*n)) info = 7; |
| if(info) |
| return xerbla_(SCALAR_SUFFIX_UP"SYR ",&info,6); |
|
|
| if(*n==0 || alpha==Scalar(0)) return 1; |
|
|
| |
| const Scalar* x_cpy = get_compact_vector(x,*n,*incx); |
|
|
| int code = UPLO(*uplo); |
| if(code>=2 || func[code]==0) |
| return 0; |
|
|
| func[code](*n, c, *ldc, x_cpy, x_cpy, alpha); |
|
|
| if(x_cpy!=x) delete[] x_cpy; |
|
|
| return 1; |
| } |
|
|
| |
| int EIGEN_BLAS_FUNC(syr2)(const char *uplo, const int *n, const RealScalar *palpha, const RealScalar *px, const int *incx, const RealScalar *py, const int *incy, RealScalar *pc, const int *ldc) |
| { |
| typedef void (*functype)(int, Scalar*, int, const Scalar*, const Scalar*, Scalar); |
| static const functype func[2] = { |
| |
| (internal::rank2_update_selector<Scalar,int,Upper>::run), |
| |
| (internal::rank2_update_selector<Scalar,int,Lower>::run), |
| }; |
|
|
| const Scalar* x = reinterpret_cast<const Scalar*>(px); |
| const Scalar* y = reinterpret_cast<const Scalar*>(py); |
| Scalar* c = reinterpret_cast<Scalar*>(pc); |
| Scalar alpha = *reinterpret_cast<const Scalar*>(palpha); |
|
|
| int info = 0; |
| if(UPLO(*uplo)==INVALID) info = 1; |
| else if(*n<0) info = 2; |
| else if(*incx==0) info = 5; |
| else if(*incy==0) info = 7; |
| else if(*ldc<std::max(1,*n)) info = 9; |
| if(info) |
| return xerbla_(SCALAR_SUFFIX_UP"SYR2 ",&info,6); |
|
|
| if(alpha==Scalar(0)) |
| return 1; |
|
|
| const Scalar* x_cpy = get_compact_vector(x,*n,*incx); |
| const Scalar* y_cpy = get_compact_vector(y,*n,*incy); |
|
|
| int code = UPLO(*uplo); |
| if(code>=2 || func[code]==0) |
| return 0; |
|
|
| func[code](*n, c, *ldc, x_cpy, y_cpy, alpha); |
|
|
| if(x_cpy!=x) delete[] x_cpy; |
| if(y_cpy!=y) delete[] y_cpy; |
|
|
| |
| |
| |
|
|
| |
| return 1; |
| } |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
| |
| |
| |
| |
| |
| |
| |
| int EIGEN_BLAS_FUNC(spr)(char *uplo, int *n, Scalar *palpha, Scalar *px, int *incx, Scalar *pap) |
| { |
| typedef void (*functype)(int, Scalar*, const Scalar*, Scalar); |
| static const functype func[2] = { |
| |
| (internal::selfadjoint_packed_rank1_update<Scalar,int,ColMajor,Upper,false,false>::run), |
| |
| (internal::selfadjoint_packed_rank1_update<Scalar,int,ColMajor,Lower,false,false>::run), |
| }; |
|
|
| Scalar* x = reinterpret_cast<Scalar*>(px); |
| Scalar* ap = reinterpret_cast<Scalar*>(pap); |
| Scalar alpha = *reinterpret_cast<Scalar*>(palpha); |
|
|
| int info = 0; |
| if(UPLO(*uplo)==INVALID) info = 1; |
| else if(*n<0) info = 2; |
| else if(*incx==0) info = 5; |
| if(info) |
| return xerbla_(SCALAR_SUFFIX_UP"SPR ",&info,6); |
|
|
| if(alpha==Scalar(0)) |
| return 1; |
|
|
| Scalar* x_cpy = get_compact_vector(x, *n, *incx); |
|
|
| int code = UPLO(*uplo); |
| if(code>=2 || func[code]==0) |
| return 0; |
|
|
| func[code](*n, ap, x_cpy, alpha); |
|
|
| if(x_cpy!=x) delete[] x_cpy; |
|
|
| return 1; |
| } |
|
|
| |
| |
| |
| |
| |
| |
| |
| int EIGEN_BLAS_FUNC(spr2)(char *uplo, int *n, RealScalar *palpha, RealScalar *px, int *incx, RealScalar *py, int *incy, RealScalar *pap) |
| { |
| typedef void (*functype)(int, Scalar*, const Scalar*, const Scalar*, Scalar); |
| static const functype func[2] = { |
| |
| (internal::packed_rank2_update_selector<Scalar,int,Upper>::run), |
| |
| (internal::packed_rank2_update_selector<Scalar,int,Lower>::run), |
| }; |
|
|
| Scalar* x = reinterpret_cast<Scalar*>(px); |
| Scalar* y = reinterpret_cast<Scalar*>(py); |
| Scalar* ap = reinterpret_cast<Scalar*>(pap); |
| Scalar alpha = *reinterpret_cast<Scalar*>(palpha); |
|
|
| int info = 0; |
| if(UPLO(*uplo)==INVALID) info = 1; |
| else if(*n<0) info = 2; |
| else if(*incx==0) info = 5; |
| else if(*incy==0) info = 7; |
| if(info) |
| return xerbla_(SCALAR_SUFFIX_UP"SPR2 ",&info,6); |
|
|
| if(alpha==Scalar(0)) |
| return 1; |
|
|
| Scalar* x_cpy = get_compact_vector(x, *n, *incx); |
| Scalar* y_cpy = get_compact_vector(y, *n, *incy); |
|
|
| int code = UPLO(*uplo); |
| if(code>=2 || func[code]==0) |
| return 0; |
|
|
| func[code](*n, ap, x_cpy, y_cpy, alpha); |
|
|
| if(x_cpy!=x) delete[] x_cpy; |
| if(y_cpy!=y) delete[] y_cpy; |
|
|
| return 1; |
| } |
|
|
| |
| |
| |
| |
| |
| |
| |
| int EIGEN_BLAS_FUNC(ger)(int *m, int *n, Scalar *palpha, Scalar *px, int *incx, Scalar *py, int *incy, Scalar *pa, int *lda) |
| { |
| Scalar* x = reinterpret_cast<Scalar*>(px); |
| Scalar* y = reinterpret_cast<Scalar*>(py); |
| Scalar* a = reinterpret_cast<Scalar*>(pa); |
| Scalar alpha = *reinterpret_cast<Scalar*>(palpha); |
|
|
| int info = 0; |
| if(*m<0) info = 1; |
| else if(*n<0) info = 2; |
| else if(*incx==0) info = 5; |
| else if(*incy==0) info = 7; |
| else if(*lda<std::max(1,*m)) info = 9; |
| if(info) |
| return xerbla_(SCALAR_SUFFIX_UP"GER ",&info,6); |
|
|
| if(alpha==Scalar(0)) |
| return 1; |
|
|
| Scalar* x_cpy = get_compact_vector(x,*m,*incx); |
| Scalar* y_cpy = get_compact_vector(y,*n,*incy); |
|
|
| internal::general_rank1_update<Scalar,int,ColMajor,false,false>::run(*m, *n, a, *lda, x_cpy, y_cpy, alpha); |
|
|
| if(x_cpy!=x) delete[] x_cpy; |
| if(y_cpy!=y) delete[] y_cpy; |
|
|
| return 1; |
| } |
|
|