summaryrefslogtreecommitdiff
path: root/common_reference.h
diff options
context:
space:
mode:
authorXianyi Zhang <xianyi@iscas.ac.cn>2011-02-20 17:13:12 +0800
committerXianyi Zhang <xianyi@iscas.ac.cn>2011-02-20 17:13:12 +0800
commit8dd3fd7f26895f9d42bffc7d80101c12735e9db4 (patch)
tree8210b4bf1fc91becc4792f0576c1466d8e123679 /common_reference.h
parent51454082c65bc8b980b6b6e03c991d4fbad4ea8a (diff)
downloadopenblas-8dd3fd7f26895f9d42bffc7d80101c12735e9db4.tar.gz
openblas-8dd3fd7f26895f9d42bffc7d80101c12735e9db4.tar.bz2
openblas-8dd3fd7f26895f9d42bffc7d80101c12735e9db4.zip
Added swap unit test with incx==0 and incy==0.
Diffstat (limited to 'common_reference.h')
-rw-r--r--common_reference.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/common_reference.h b/common_reference.h
index d4dca859e..a324c4d9d 100644
--- a/common_reference.h
+++ b/common_reference.h
@@ -43,4 +43,11 @@ void BLASFUNC_REF(csrot) (blasint *, float *, blasint *, float *, blasint *,
void BLASFUNC_REF(zdrot) (blasint *, double *, blasint *, double *, blasint *, double *, double *);
void BLASFUNC_REF(xqrot) (blasint *, xdouble *, blasint *, xdouble *, blasint *, xdouble *, xdouble *);
+void BLASFUNC_REF(sswap) (blasint *, float *, blasint *, float *, blasint *);
+void BLASFUNC_REF(dswap) (blasint *, double *, blasint *, double *, blasint *);
+void BLASFUNC_REF(qswap) (blasint *, xdouble *, blasint *, xdouble *, blasint *);
+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 *);
+
#endif