aboutsummaryrefslogtreecommitdiff
path: root/LAPACKE/src/lapacke_cuncsd2by1.c
AgeCommit message (Collapse)Author
2016-07-09STYLE: Remove trailing whitespace in C filesHans Johnson
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 =================================================
2016-06-18Update date, version for 3.6.1 releaseJulie
2016-02-23APPLYING INTEL PATCHES sent to Julie on Feb 19th 2016 by Dima from INTEL ↵julie
(dmitry.g.baksheev@intel.com) [PATCH 32/42] Fix lapacke_?{un,or}csd2by1 - theta is real, and use ld*_t - theta is real, not complex - use ld*_t for calling LAPACK in row-major case, not ld*
2015-11-15Updating version numberjulie
2015-11-11Fix cast for lwork in complex [cz]uncsd2by1 routinesjulie
2015-10-05Adding [un/or]csd2by1 routines to LAPACKEjulie