00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025 #include "common.h"
00026
00027
00028
00029 RealScalar EIGEN_BLAS_FUNC(asum)(int *n, RealScalar *px, int *incx)
00030 {
00031
00032
00033 Scalar* x = reinterpret_cast<Scalar*>(px);
00034
00035 if(*n<=0) return 0;
00036
00037 if(*incx==1) return vector(x,*n).cwiseAbs().sum();
00038 else return vector(x,*n,std::abs(*incx)).cwiseAbs().sum();
00039 }
00040
00041
00042 Scalar EIGEN_BLAS_FUNC(dot)(int *n, RealScalar *px, int *incx, RealScalar *py, int *incy)
00043 {
00044
00045
00046 if(*n<=0) return 0;
00047
00048 Scalar* x = reinterpret_cast<Scalar*>(px);
00049 Scalar* y = reinterpret_cast<Scalar*>(py);
00050
00051 if(*incx==1 && *incy==1) return (vector(x,*n).cwiseProduct(vector(y,*n))).sum();
00052 else if(*incx>0 && *incy>0) return (vector(x,*n,*incx).cwiseProduct(vector(y,*n,*incy))).sum();
00053 else if(*incx<0 && *incy>0) return (vector(x,*n,-*incx).reverse().cwiseProduct(vector(y,*n,*incy))).sum();
00054 else if(*incx>0 && *incy<0) return (vector(x,*n,*incx).cwiseProduct(vector(y,*n,-*incy).reverse())).sum();
00055 else if(*incx<0 && *incy<0) return (vector(x,*n,-*incx).reverse().cwiseProduct(vector(y,*n,-*incy).reverse())).sum();
00056 else return 0;
00057 }
00058
00059
00060
00061 Scalar EIGEN_BLAS_FUNC(nrm2)(int *n, RealScalar *px, int *incx)
00062 {
00063
00064 if(*n<=0) return 0;
00065
00066 Scalar* x = reinterpret_cast<Scalar*>(px);
00067
00068 if(*incx==1) return vector(x,*n).stableNorm();
00069 else return vector(x,*n,std::abs(*incx)).stableNorm();
00070 }
00071
00072 int EIGEN_BLAS_FUNC(rot)(int *n, RealScalar *px, int *incx, RealScalar *py, int *incy, RealScalar *pc, RealScalar *ps)
00073 {
00074
00075 if(*n<=0) return 0;
00076
00077 Scalar* x = reinterpret_cast<Scalar*>(px);
00078 Scalar* y = reinterpret_cast<Scalar*>(py);
00079 Scalar c = *reinterpret_cast<Scalar*>(pc);
00080 Scalar s = *reinterpret_cast<Scalar*>(ps);
00081
00082 StridedVectorType vx(vector(x,*n,std::abs(*incx)));
00083 StridedVectorType vy(vector(y,*n,std::abs(*incy)));
00084
00085 Reverse<StridedVectorType> rvx(vx);
00086 Reverse<StridedVectorType> rvy(vy);
00087
00088 if(*incx<0 && *incy>0) internal::apply_rotation_in_the_plane(rvx, vy, JacobiRotation<Scalar>(c,s));
00089 else if(*incx>0 && *incy<0) internal::apply_rotation_in_the_plane(vx, rvy, JacobiRotation<Scalar>(c,s));
00090 else internal::apply_rotation_in_the_plane(vx, vy, JacobiRotation<Scalar>(c,s));
00091
00092
00093 return 0;
00094 }
00095
00096
00097
00098
00099
00100
00101
00102
00103
00104
00105
00106
00107
00108
00109
00110
00111
00112
00113
00114
00115