diff options
author | wernsaar <wernsaar@googlemail.com> | 2014-06-08 11:54:24 +0200 |
---|---|---|
committer | wernsaar <wernsaar@googlemail.com> | 2014-06-08 11:54:24 +0200 |
commit | faf3ac0aad8b31cdc017b809bee30e21f5ee7f4a (patch) | |
tree | 59b1e480145a352b32c9e7a98748160ce0ae5f46 /common_interface.h | |
parent | a40116de256c281b4766196b062d367a6ac50727 (diff) | |
download | openblas-faf3ac0aad8b31cdc017b809bee30e21f5ee7f4a.tar.gz openblas-faf3ac0aad8b31cdc017b809bee30e21f5ee7f4a.tar.bz2 openblas-faf3ac0aad8b31cdc017b809bee30e21f5ee7f4a.zip |
Ref #285: added axpby kernels
Diffstat (limited to 'common_interface.h')
-rw-r--r-- | common_interface.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/common_interface.h b/common_interface.h index 14c2cf7a4..0112620d0 100644 --- a/common_interface.h +++ b/common_interface.h @@ -757,6 +757,14 @@ FLOATRET BLASFUNC(slamc3)(float *, float *); double BLASFUNC(dlamc3)(double *, double *); xdouble BLASFUNC(qlamc3)(xdouble *, xdouble *); +/* BLAS extensions */ + +void BLASFUNC(saxpby) (blasint *, float *, float *, blasint *, float *, float *, blasint *); +void BLASFUNC(daxpby) (blasint *, double *, double *, blasint *, double *, double *, blasint *); +void BLASFUNC(caxpby) (blasint *, float *, float *, blasint *, float *, float *, blasint *); +void BLASFUNC(zaxpby) (blasint *, double *, double *, blasint *, double *, double *, blasint *); + + #ifdef __cplusplus } |