Skip to content

Commit d906d14

Browse files
authored
Merge pull request #2664 from ACSimon33/exported_symbols
Add missing exported symbols.
2 parents 3785c0e + 41fc6f3 commit d906d14

File tree

1 file changed

+13
-10
lines changed

1 file changed

+13
-10
lines changed

exports/gensymbol

Lines changed: 13 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -40,15 +40,10 @@
4040
ztbsv,ztpmv,ztpsv,ztrmm,ztrmv,ztrsm,ztrsv,
4141
xerbla,
4242
saxpby,daxpby,caxpby,zaxpby,
43+
somatcopy, domatcopy, comatcopy, zomatcopy,
44+
simatcopy, dimatcopy, cimatcopy, zimatcopy,
4345
sgeadd,dgeadd,cgeadd,zgeadd,
44-
somatcopy,
45-
simatcopy,
46-
domatcopy,
47-
dimatcopy,
48-
comatcopy,
49-
cimatcopy,
50-
zomatcopy,
51-
zimatcopy,
46+
ssum, dsum, scsum, dzsum
5247
);
5348

5449
@halfblasobjs = (shgemm);
@@ -81,7 +76,12 @@
8176
cblas_saxpby,cblas_daxpby,cblas_caxpby,cblas_zaxpby,
8277
cblas_somatcopy, cblas_domatcopy, cblas_comatcopy, cblas_zomatcopy,
8378
cblas_simatcopy, cblas_dimatcopy, cblas_cimatcopy, cblas_zimatcopy,
84-
cblas_sgeadd, cblas_dgeadd,cblas_cgeadd, cblas_zgeadd
79+
cblas_sgeadd, cblas_dgeadd,cblas_cgeadd, cblas_zgeadd,
80+
cblas_isamin, cblas_idamin, cblas_icamin, cblas_izamin,
81+
cblas_ismin, cblas_idmin, cblas_icmin, cblas_izmin,
82+
cblas_ismax, cblas_idmax, cblas_icmax, cblas_izmax,
83+
cblas_ssum, cblas_dsum, cblas_scsum, cblas_dzsum,
84+
cblas_xerbla
8585
);
8686

8787
@halfcblasobjs = (cblas_shgemm);
@@ -3501,9 +3501,12 @@ if ($ARGV[1] eq "x86") { @underscore_objs = (@underscore_objs, @gemm3mobjs);
35013501
if ($ARGV[1] eq "ia64") { @underscore_objs = (@underscore_objs, @gemm3mobjs); };
35023502
if ($ARGV[1] eq "MIPS") { @underscore_objs = (@underscore_objs, @gemm3mobjs); };
35033503

3504-
35053504
if ($ARGV[4] == 0) {
35063505
@no_underscore_objs = (@cblasobjs, @misc_no_underscore_objs);
3506+
if ($ARGV[1] eq "x86_64") { @no_underscore_objs = (@no_underscore_objs, @cblasgemm3mobjs); };
3507+
if ($ARGV[1] eq "x86") { @no_underscore_objs = (@no_underscore_objs, @cblasgemm3mobjs); };
3508+
if ($ARGV[1] eq "ia64") { @no_underscore_objs = (@no_underscore_objs, @cblasgemm3mobjs); };
3509+
if ($ARGV[1] eq "MIPS") { @no_underscore_objs = (@no_underscore_objs, @cblasgemm3mobjs); };
35073510
}else{
35083511
#NO_CBLAS=1
35093512
@no_underscore_objs = (@misc_no_underscore_objs);

0 commit comments

Comments
 (0)