Merge pull request #2664 from ACSimon33/exported_symbols
Add missing exported symbols.
This commit is contained in:
commit
d906d14402
|
@ -40,15 +40,10 @@
|
|||
ztbsv,ztpmv,ztpsv,ztrmm,ztrmv,ztrsm,ztrsv,
|
||||
xerbla,
|
||||
saxpby,daxpby,caxpby,zaxpby,
|
||||
somatcopy, domatcopy, comatcopy, zomatcopy,
|
||||
simatcopy, dimatcopy, cimatcopy, zimatcopy,
|
||||
sgeadd,dgeadd,cgeadd,zgeadd,
|
||||
somatcopy,
|
||||
simatcopy,
|
||||
domatcopy,
|
||||
dimatcopy,
|
||||
comatcopy,
|
||||
cimatcopy,
|
||||
zomatcopy,
|
||||
zimatcopy,
|
||||
ssum, dsum, scsum, dzsum
|
||||
);
|
||||
|
||||
@halfblasobjs = (shgemm);
|
||||
|
@ -81,7 +76,12 @@
|
|||
cblas_saxpby,cblas_daxpby,cblas_caxpby,cblas_zaxpby,
|
||||
cblas_somatcopy, cblas_domatcopy, cblas_comatcopy, cblas_zomatcopy,
|
||||
cblas_simatcopy, cblas_dimatcopy, cblas_cimatcopy, cblas_zimatcopy,
|
||||
cblas_sgeadd, cblas_dgeadd,cblas_cgeadd, cblas_zgeadd
|
||||
cblas_sgeadd, cblas_dgeadd,cblas_cgeadd, cblas_zgeadd,
|
||||
cblas_isamin, cblas_idamin, cblas_icamin, cblas_izamin,
|
||||
cblas_ismin, cblas_idmin, cblas_icmin, cblas_izmin,
|
||||
cblas_ismax, cblas_idmax, cblas_icmax, cblas_izmax,
|
||||
cblas_ssum, cblas_dsum, cblas_scsum, cblas_dzsum,
|
||||
cblas_xerbla
|
||||
);
|
||||
|
||||
@halfcblasobjs = (cblas_shgemm);
|
||||
|
@ -3501,9 +3501,12 @@ if ($ARGV[1] eq "x86") { @underscore_objs = (@underscore_objs, @gemm3mobjs);
|
|||
if ($ARGV[1] eq "ia64") { @underscore_objs = (@underscore_objs, @gemm3mobjs); };
|
||||
if ($ARGV[1] eq "MIPS") { @underscore_objs = (@underscore_objs, @gemm3mobjs); };
|
||||
|
||||
|
||||
if ($ARGV[4] == 0) {
|
||||
@no_underscore_objs = (@cblasobjs, @misc_no_underscore_objs);
|
||||
if ($ARGV[1] eq "x86_64") { @no_underscore_objs = (@no_underscore_objs, @cblasgemm3mobjs); };
|
||||
if ($ARGV[1] eq "x86") { @no_underscore_objs = (@no_underscore_objs, @cblasgemm3mobjs); };
|
||||
if ($ARGV[1] eq "ia64") { @no_underscore_objs = (@no_underscore_objs, @cblasgemm3mobjs); };
|
||||
if ($ARGV[1] eq "MIPS") { @no_underscore_objs = (@no_underscore_objs, @cblasgemm3mobjs); };
|
||||
}else{
|
||||
#NO_CBLAS=1
|
||||
@no_underscore_objs = (@misc_no_underscore_objs);
|
||||
|
|
Loading…
Reference in New Issue