Commit Graph
5 Commits
Author SHA1 Message Date
Christopher Albert aca0bc17e7 Fix DGS test seed to avoid FMA-sensitive ill-conditioned matrix
The default seed generates a matrix for N=6, JTYPE=21 that causes
DGGES to fail (INFO=9) when compiled without FMA instructions.

Use a custom seed that avoids this specific ill-conditioned case
while maintaining full test coverage.
2026-01-21 23:26:10 +01:00
thijs 9f3c00c70f attempt to fix coverage (again) 2021-02-14 11:25:07 +01:00
thijs 81211e4cae attempt to improve code coverage 2021-02-14 11:25:07 +01:00
Hans Johnson 9c7f84bd60 STYLE: Remove trailing whitespace in MISC files
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-07-09 11:19:33 -05:00
jason baba851215 Move LAPACK trunk into position. 2008-10-28 01:38:50 +00:00