Added axpy unit test with incx==0 and incy==0.

This commit is contained in:
Xianyi Zhang
2011-02-21 00:17:33 +08:00
parent 78da0e0a0c
commit 109b86d00e
5 changed files with 133 additions and 1 deletions

View File

@@ -50,4 +50,9 @@ void BLASFUNC_REF(cswap) (blasint *, float *, blasint *, float *, blasint *
void BLASFUNC_REF(zswap) (blasint *, double *, blasint *, double *, blasint *);
void BLASFUNC_REF(xswap) (blasint *, xdouble *, blasint *, xdouble *, blasint *);
void BLASFUNC_REF(saxpy) (blasint *, float *, float *, blasint *, float *, blasint *);
void BLASFUNC_REF(daxpy) (blasint *, double *, double *, blasint *, double *, blasint *);
void BLASFUNC_REF(caxpy) (blasint *, float *, float *, blasint *, float *, blasint *);
void BLASFUNC_REF(zaxpy) (blasint *, double *, double *, blasint *, double *, blasint *);
#endif