( SGETSQRHRT, SORGTSQR_ROW, DGETSQRHRT, DORGTSQR_ROW,
CGETSQRHRT, CUNGTSQR_ROW, ZGETSQRHRT, ZUNGTSQR_ROW )
S, D, C and Z precisions.
modified: include/lapack.h
modified: include/lapacke.h
modified: src/CMakeLists.txt
modified: src/Makefile
new file: src/lapacke_cgetsqrhrt.c
new file: src/lapacke_cgetsqrhrt_work.c
new file: src/lapacke_cungtsqr_row.c
new file: src/lapacke_cungtsqr_row_work.c
new file: src/lapacke_dgetsqrhrt.c
new file: src/lapacke_dgetsqrhrt_work.c
new file: src/lapacke_dorgtsqr_row.c
new file: src/lapacke_dorgtsqr_row_work.c
new file: src/lapacke_sgetsqrhrt.c
new file: src/lapacke_sgetsqrhrt_work.c
new file: src/lapacke_sorgtsqr_row.c
new file: src/lapacke_sorgtsqr_row_work.c
new file: src/lapacke_zgetsqrhrt.c
new file: src/lapacke_zgetsqrhrt_work.c
new file: src/lapacke_zungtsqr_row.c
new file: src/lapacke_zungtsqr_row_work.c
This is mostly a long term maintenance improvement.
Many coding styles require elimination of trailing whitespace, and
many editors and source code management configurations automatically
gobble up whitespace. When these tools gobble up whitespace, it
complicates reviewing the meaningful code changes.
By removing whitespace on one patch, it makes future
code reviews much easier.
=SCRIPT====================================================================
if which tempfile &>/dev/null; then
TEMPMAKER=tempfile
elif which mktemp &>/dev/null; then
TEMPMAKER=mktemp
else
echo "Cannot find tempfile program." 2>&1
exit 1
fi
MYTEMP=$($TEMPMAKER)
trap 'rm -f $MYTEMP' SIGINT SIGTERM
stripit() {
echo "stripping $1"
sed 's/[ \t]*$//' "$1" > $MYTEMP
cp $MYTEMP "$1"
}
if [ $# -gt 0 ]; then
while [ "$1" != "" ]; do
stripit $1
shift
done
else
while read -t 2; do
stripit $REPLY
done
fi
rm $MYTEMP
=================================================
[PATCH 38/42] Fix lapacke_???swapr* - missing parameter lda, and more
- lda should not be missed
- a has leading dimension lda, not n
- a_t has leading dimension lda_t, not n
!!! NOT APPLYING PATCH [PATCH 36/42] !!! Fix lapacke_?syconv - parameter work is not part of hi-level interface
See revision 1609 | langou | 2015-10-28 22:06:14 -0700 (Wed, 28 Oct 2015)
"In ?syconv, replace the variable name WORK by the variable name E. E is the
standard way to name the supdiagonal/subdiagonal of a symmetric tridiagonal
matrix. Also, E (previously WORK) is of size N-1, not N. So correct this in
the comment."
Updated LAPACKE with new parameter name.