summaryrefslogtreecommitdiff
path: root/common_interface.h
diff options
context:
space:
mode:
authorMartin Koehler <grisuthedragon@users.noreply.github.com>2015-02-16 13:46:20 +0100
committerMartin Koehler <grisuthedragon@users.noreply.github.com>2015-02-16 13:46:20 +0100
commit39cc6b21d3e282e8b91ffe4255e02e586885db2c (patch)
treeedf2051316a5dc2b8198e41dbe59acdda0c8cd08 /common_interface.h
parent771b18ae9c3aa70f4a2497b59700e06819a6ae30 (diff)
downloadopenblas-39cc6b21d3e282e8b91ffe4255e02e586885db2c.tar.gz
openblas-39cc6b21d3e282e8b91ffe4255e02e586885db2c.tar.bz2
openblas-39cc6b21d3e282e8b91ffe4255e02e586885db2c.zip
Add ATLAS-style ?geadd function
Diffstat (limited to 'common_interface.h')
-rw-r--r--common_interface.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/common_interface.h b/common_interface.h
index ddd2cf6e5..15f69e02f 100644
--- a/common_interface.h
+++ b/common_interface.h
@@ -754,6 +754,12 @@ void BLASFUNC(dimatcopy) (char *, char *, blasint *, blasint *, double *, do
void BLASFUNC(cimatcopy) (char *, char *, blasint *, blasint *, float *, float *, blasint *, blasint *);
void BLASFUNC(zimatcopy) (char *, char *, blasint *, blasint *, double *, double *, blasint *, blasint *);
+void BLASFUNC(sgeadd) (blasint *, blasint *, float *, float *, blasint *, float *, float *, blasint*);
+void BLASFUNC(dgeadd) (blasint *, blasint *, double *, double *, blasint *, double *, double *, blasint*);
+void BLASFUNC(cgeadd) (blasint *, blasint *, float *, float *, blasint *, float *, float *, blasint*);
+void BLASFUNC(zgeadd) (blasint *, blasint *, double *, double *, blasint *, double *, double *, blasint*);
+
+
#ifdef __cplusplus
}