removed blas_thread_shutdown from gensymbol

This commit is contained in:
Werner Saar 2017-01-08 08:51:30 +01:00
parent 9a48adff3f
commit a8bb5003de
2 changed files with 13 additions and 5 deletions

View File

@ -4,6 +4,9 @@ while read OBJ; do
if echo "$OBJ"|grep "_$" >/dev/null if echo "$OBJ"|grep "_$" >/dev/null
then then
[ "$OBJ" = "caxpyc_" ] && continue
[ "$OBJ" = "zaxpyc_" ] && continue
[ "$OBJ" = "blas_thread_shutdown_" ] && continue
O1=$(echo "$OBJ"|sed -e 's/_$//' ) O1=$(echo "$OBJ"|sed -e 's/_$//' )
@ -13,6 +16,7 @@ while read OBJ; do
else else
echo "$O1" echo "$O1"
fi fi
continue
fi fi
if echo "$OBJ"|grep "^cblas" >/dev/null if echo "$OBJ"|grep "^cblas" >/dev/null
@ -24,6 +28,7 @@ while read OBJ; do
else else
echo "$OBJ" echo "$OBJ"
fi fi
continue
fi fi
if echo "$OBJ"|grep "^LAPACKE" >/dev/null if echo "$OBJ"|grep "^LAPACKE" >/dev/null
@ -35,6 +40,7 @@ while read OBJ; do
else else
echo "$OBJ" echo "$OBJ"
fi fi
continue
fi fi
if echo "$OBJ"|grep "^lapack" >/dev/null if echo "$OBJ"|grep "^lapack" >/dev/null

View File

@ -2,14 +2,17 @@
# Changelog # Changelog
# 2017/07/01 Saar # 2017/07/01 Saar
# removed zsymv and csymv from @blasobs, because these functions # removed zsymv_ and csymv_ from @blasobs, because these functions
# are now in lapack-3.7.0 # are now in lapack-3.7.0
# added blas_thread_shutdown # added blas_thread_shutdown_
# added cblas_cgemm3m and cblas_zgemm3m # added Cblas_cgemm3m and Cblas_zgemm3m
# added somatcopy, simatcopy ... # added somatcopy_, simatcopy_ ...
# added new functions from lapack-3.7.0 # added new functions from lapack-3.7.0
# added LAPACKE deprecated objs from lapack-3.7.0 # added LAPACKE deprecated objs from lapack-3.7.0
# #
# 2017/08/01 Saar
# removed blas_thread_shutdown_
#
@blasobjs = ( @blasobjs = (
caxpy,ccopy,cdotc,cdotu,cgbmv,cgemm,cgemv,cgerc,cgeru, caxpy,ccopy,cdotc,cdotu,cgbmv,cgemm,cgemv,cgerc,cgeru,
chbmv,chemm,chemv,cher2,cher2k,cher,cherk, chbmv,chemm,chemv,cher2,cher2k,cher,cherk,
@ -120,7 +123,6 @@
); );
@misc_underscore_objs = ( @misc_underscore_objs = (
blas_thread_shutdown,
); );
@lapackobjs = ( @lapackobjs = (