Browse Source

Merge pull request #1049 from wernsaar/develop

removed blas_thread_shutdown from gensymbol
tags/v0.2.20^2
Werner Saar GitHub 8 years ago
parent
commit
c61a7cd293
2 changed files with 13 additions and 5 deletions
  1. +6
    -0
      exports/check_objs.sh
  2. +7
    -5
      exports/gensymbol

+ 6
- 0
exports/check_objs.sh View File

@@ -4,6 +4,9 @@ while read OBJ; do
if echo "$OBJ"|grep "_$" >/dev/null
then
[ "$OBJ" = "caxpyc_" ] && continue
[ "$OBJ" = "zaxpyc_" ] && continue
[ "$OBJ" = "blas_thread_shutdown_" ] && continue

O1=$(echo "$OBJ"|sed -e 's/_$//' )

@@ -13,6 +16,7 @@ while read OBJ; do
else
echo "$O1"
fi
continue
fi

if echo "$OBJ"|grep "^cblas" >/dev/null
@@ -24,6 +28,7 @@ while read OBJ; do
else
echo "$OBJ"
fi
continue
fi

if echo "$OBJ"|grep "^LAPACKE" >/dev/null
@@ -35,6 +40,7 @@ while read OBJ; do
else
echo "$OBJ"
fi
continue
fi

if echo "$OBJ"|grep "^lapack" >/dev/null


+ 7
- 5
exports/gensymbol View File

@@ -2,14 +2,17 @@

# Changelog
# 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
# added blas_thread_shutdown
# added cblas_cgemm3m and cblas_zgemm3m
# added somatcopy, simatcopy ...
# added blas_thread_shutdown_
# added Cblas_cgemm3m and Cblas_zgemm3m
# added somatcopy_, simatcopy_ ...
# added new functions from lapack-3.7.0
# added LAPACKE deprecated objs from lapack-3.7.0
#
# 2017/08/01 Saar
# removed blas_thread_shutdown_
#
@blasobjs = (
caxpy,ccopy,cdotc,cdotu,cgbmv,cgemm,cgemv,cgerc,cgeru,
chbmv,chemm,chemv,cher2,cher2k,cher,cherk,
@@ -120,7 +123,6 @@
);

@misc_underscore_objs = (
blas_thread_shutdown,
);

@lapackobjs = (


Loading…
Cancel
Save