Skip to content

Remove end of line spaces #5

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Jul 10, 2016

Conversation

hjmjohnson
Copy link
Contributor

Improve long term maintenance burden by removing end of line whitespace.

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.
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
=================================================
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
=================================================
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
=================================================
@julielangou julielangou merged commit 28f0a3f into Reference-LAPACK:master Jul 10, 2016
@julielangou
Copy link
Contributor

Thank you again !
Julie

On Jul 9, 2016, at 9:21 AM, Hans Johnson [email protected] wrote:

Improve long term maintenance burden by removing end of line whitespace.

You can view, comment on, or merge this pull request online at:

#5 #5
Commit Summary

STYLE: Remove trailing whitespace in CMake files
STYLE: Remove trailing whitespace in C files
STYLE: Remove trailing whitespace in MISC files
STYLE: Remove trailing whitespace in Fortran files
File Changes

M BLAS/SRC/CMakeLists.txt https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-0 (44)
M BLAS/SRC/Makefile https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-1 (6)
M BLAS/SRC/caxpy.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-2 (16)
M BLAS/SRC/ccopy.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-3 (16)
M BLAS/SRC/cdotc.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-4 (16)
M BLAS/SRC/cdotu.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-5 (16)
M BLAS/SRC/cgbmv.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-6 (16)
M BLAS/SRC/cgemm.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-7 (16)
M BLAS/SRC/cgemv.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-8 (16)
M BLAS/SRC/cgerc.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-9 (16)
M BLAS/SRC/cgeru.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-10 (16)
M BLAS/SRC/chbmv.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-11 (16)
M BLAS/SRC/chemm.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-12 (16)
M BLAS/SRC/chemv.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-13 (16)
M BLAS/SRC/cher.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-14 (16)
M BLAS/SRC/cher2.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-15 (16)
M BLAS/SRC/cher2k.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-16 (16)
M BLAS/SRC/cherk.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-17 (16)
M BLAS/SRC/chpmv.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-18 (16)
M BLAS/SRC/chpr.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-19 (16)
M BLAS/SRC/chpr2.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-20 (16)
M BLAS/SRC/crotg.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-21 (16)
M BLAS/SRC/cscal.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-22 (16)
M BLAS/SRC/csrot.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-23 (16)
M BLAS/SRC/csscal.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-24 (16)
M BLAS/SRC/cswap.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-25 (16)
M BLAS/SRC/csymm.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-26 (16)
M BLAS/SRC/csyr2k.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-27 (16)
M BLAS/SRC/csyrk.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-28 (16)
M BLAS/SRC/ctbmv.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-29 (16)
M BLAS/SRC/ctbsv.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-30 (16)
M BLAS/SRC/ctpmv.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-31 (16)
M BLAS/SRC/ctpsv.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-32 (16)
M BLAS/SRC/ctrmm.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-33 (16)
M BLAS/SRC/ctrmv.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-34 (16)
M BLAS/SRC/ctrsm.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-35 (18)
M BLAS/SRC/ctrsv.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-36 (16)
M BLAS/SRC/dasum.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-37 (16)
M BLAS/SRC/daxpy.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-38 (16)
M BLAS/SRC/dcabs1.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-39 (18)
M BLAS/SRC/dcopy.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-40 (20)
M BLAS/SRC/ddot.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-41 (16)
M BLAS/SRC/dgbmv.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-42 (16)
M BLAS/SRC/dgemm.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-43 (16)
M BLAS/SRC/dgemv.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-44 (16)
M BLAS/SRC/dger.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-45 (16)
M BLAS/SRC/dnrm2.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-46 (16)
M BLAS/SRC/drot.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-47 (16)
M BLAS/SRC/drotg.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-48 (16)
M BLAS/SRC/drotm.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-49 (16)
M BLAS/SRC/drotmg.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-50 (34)
M BLAS/SRC/dsbmv.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-51 (16)
M BLAS/SRC/dscal.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-52 (16)
M BLAS/SRC/dsdot.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-53 (24)
M BLAS/SRC/dspmv.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-54 (16)
M BLAS/SRC/dspr.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-55 (16)
M BLAS/SRC/dspr2.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-56 (16)
M BLAS/SRC/dswap.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-57 (16)
M BLAS/SRC/dsymm.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-58 (16)
M BLAS/SRC/dsymv.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-59 (16)
M BLAS/SRC/dsyr.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-60 (16)
M BLAS/SRC/dsyr2.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-61 (16)
M BLAS/SRC/dsyr2k.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-62 (16)
M BLAS/SRC/dsyrk.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-63 (16)
M BLAS/SRC/dtbmv.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-64 (16)
M BLAS/SRC/dtbsv.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-65 (16)
M BLAS/SRC/dtpmv.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-66 (16)
M BLAS/SRC/dtpsv.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-67 (16)
M BLAS/SRC/dtrmm.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-68 (16)
M BLAS/SRC/dtrmv.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-69 (16)
M BLAS/SRC/dtrsm.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-70 (18)
M BLAS/SRC/dtrsv.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-71 (16)
M BLAS/SRC/dzasum.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-72 (16)
M BLAS/SRC/dznrm2.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-73 (16)
M BLAS/SRC/icamax.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-74 (16)
M BLAS/SRC/idamax.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-75 (16)
M BLAS/SRC/isamax.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-76 (16)
M BLAS/SRC/izamax.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-77 (16)
M BLAS/SRC/lsame.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-78 (16)
M BLAS/SRC/sasum.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-79 (16)
M BLAS/SRC/saxpy.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-80 (16)
M BLAS/SRC/scabs1.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-81 (16)
M BLAS/SRC/scasum.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-82 (16)
M BLAS/SRC/scnrm2.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-83 (16)
M BLAS/SRC/scopy.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-84 (20)
M BLAS/SRC/sdot.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-85 (16)
M BLAS/SRC/sdsdot.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-86 (70)
M BLAS/SRC/sgbmv.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-87 (16)
M BLAS/SRC/sgemm.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-88 (16)
M BLAS/SRC/sgemv.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-89 (16)
M BLAS/SRC/sger.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-90 (16)
M BLAS/SRC/snrm2.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-91 (16)
M BLAS/SRC/srot.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-92 (16)
M BLAS/SRC/srotg.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-93 (16)
M BLAS/SRC/srotm.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-94 (16)
M BLAS/SRC/srotmg.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-95 (34)
M BLAS/SRC/ssbmv.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-96 (16)
M BLAS/SRC/sscal.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-97 (16)
M BLAS/SRC/sspmv.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-98 (16)
M BLAS/SRC/sspr.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-99 (16)
M BLAS/SRC/sspr2.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-100 (16)
M BLAS/SRC/sswap.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-101 (16)
M BLAS/SRC/ssymm.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-102 (16)
M BLAS/SRC/ssymv.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-103 (16)
M BLAS/SRC/ssyr.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-104 (16)
M BLAS/SRC/ssyr2.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-105 (16)
M BLAS/SRC/ssyr2k.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-106 (16)
M BLAS/SRC/ssyrk.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-107 (16)
M BLAS/SRC/stbmv.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-108 (16)
M BLAS/SRC/stbsv.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-109 (16)
M BLAS/SRC/stpmv.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-110 (16)
M BLAS/SRC/stpsv.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-111 (16)
M BLAS/SRC/strmm.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-112 (16)
M BLAS/SRC/strmv.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-113 (16)
M BLAS/SRC/strsm.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-114 (18)
M BLAS/SRC/strsv.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-115 (16)
M BLAS/SRC/xerbla.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-116 (16)
M BLAS/SRC/xerbla_array.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-117 (16)
M BLAS/SRC/zaxpy.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-118 (16)
M BLAS/SRC/zcopy.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-119 (16)
M BLAS/SRC/zdotc.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-120 (16)
M BLAS/SRC/zdotu.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-121 (16)
M BLAS/SRC/zdrot.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-122 (16)
M BLAS/SRC/zdscal.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-123 (16)
M BLAS/SRC/zgbmv.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-124 (16)
M BLAS/SRC/zgemm.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-125 (16)
M BLAS/SRC/zgemv.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-126 (16)
M BLAS/SRC/zgerc.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-127 (16)
M BLAS/SRC/zgeru.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-128 (16)
M BLAS/SRC/zhbmv.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-129 (16)
M BLAS/SRC/zhemm.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-130 (16)
M BLAS/SRC/zhemv.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-131 (16)
M BLAS/SRC/zher.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-132 (16)
M BLAS/SRC/zher2.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-133 (16)
M BLAS/SRC/zher2k.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-134 (16)
M BLAS/SRC/zherk.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-135 (16)
M BLAS/SRC/zhpmv.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-136 (16)
M BLAS/SRC/zhpr.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-137 (16)
M BLAS/SRC/zhpr2.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-138 (16)
M BLAS/SRC/zrotg.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-139 (16)
M BLAS/SRC/zscal.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-140 (16)
M BLAS/SRC/zswap.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-141 (16)
M BLAS/SRC/zsymm.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-142 (16)
M BLAS/SRC/zsyr2k.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-143 (16)
M BLAS/SRC/zsyrk.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-144 (16)
M BLAS/SRC/ztbmv.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-145 (16)
M BLAS/SRC/ztbsv.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-146 (16)
M BLAS/SRC/ztpmv.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-147 (16)
M BLAS/SRC/ztpsv.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-148 (16)
M BLAS/SRC/ztrmm.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-149 (16)
M BLAS/SRC/ztrmv.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-150 (16)
M BLAS/SRC/ztrsm.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-151 (18)
M BLAS/SRC/ztrsv.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-152 (16)
M BLAS/TESTING/CMakeLists.txt https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-153 (2)
M BLAS/TESTING/Makeblat1 https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-154 (28)
M BLAS/TESTING/Makeblat2 https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-155 (28)
M BLAS/TESTING/Makeblat3 https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-156 (26)
M BLAS/TESTING/cblat1.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-157 (14)
M BLAS/TESTING/cblat2.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-158 (14)
M BLAS/TESTING/cblat3.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-159 (14)
M BLAS/TESTING/dblat1.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-160 (18)
M BLAS/TESTING/dblat2.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-161 (14)
M BLAS/TESTING/dblat3.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-162 (14)
M BLAS/TESTING/sblat1.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-163 (16)
M BLAS/TESTING/sblat2.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-164 (16)
M BLAS/TESTING/sblat3.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-165 (14)
M BLAS/TESTING/zblat1.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-166 (14)
M BLAS/TESTING/zblat2.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-167 (14)
M BLAS/TESTING/zblat3.f https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-168 (16)
M CBLAS/CMakeLists.txt https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-169 (2)
M CBLAS/Makefile https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-170 (2)
M CBLAS/Makefile.in https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-171 (6)
M CBLAS/README https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-172 (16)
A CBLAS/cmake/tmp.jIUCyIMYeG https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-173 (0)
M CBLAS/examples/Makefile https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-174 (6)
M CBLAS/examples/cblas_example1.c https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-175 (8)
M CBLAS/examples/cblas_example2.c https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-176 (12)
M CBLAS/include/cblas.h https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-177 (48)
M CBLAS/include/cblas_f77.h https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-178 (12)
M CBLAS/src/CMakeLists.txt https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-179 (22)
M CBLAS/src/Makefile https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-180 (42)
M CBLAS/src/cblas_caxpy.c https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-181 (4)
M CBLAS/src/cblas_ccopy.c https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-182 (2)
M CBLAS/src/cblas_cdotc_sub.c https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-183 (2)
M CBLAS/src/cblas_cdotu_sub.c https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-184 (2)
M CBLAS/src/cblas_cgbmv.c https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-185 (18)
M CBLAS/src/cblas_cgemm.c https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-186 (16)
M CBLAS/src/cblas_cgemv.c https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-187 (24)
M CBLAS/src/cblas_cgerc.c https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-188 (16)
M CBLAS/src/cblas_cgeru.c https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-189 (4)
M CBLAS/src/cblas_chbmv.c https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-190 (20)
M CBLAS/src/cblas_chemm.c https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-191 (18)
M CBLAS/src/cblas_chemv.c https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-192 (20)
M CBLAS/src/cblas_cher.c https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-193 (20)
M CBLAS/src/cblas_cher2.c https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-194 (34)
M CBLAS/src/cblas_cher2k.c https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-195 (20)
M CBLAS/src/cblas_cherk.c https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-196 (16)
M CBLAS/src/cblas_chpmv.c https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-197 (24)
M CBLAS/src/cblas_chpr.c https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-198 (16)
M CBLAS/src/cblas_chpr2.c https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-199 (22)
M CBLAS/src/cblas_cscal.c https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-200 (4)
M CBLAS/src/cblas_csscal.c https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-201 (2)
M CBLAS/src/cblas_cswap.c https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-202 (2)
M CBLAS/src/cblas_csymm.c https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-203 (18)
M CBLAS/src/cblas_csyr2k.c https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-204 (16)
M CBLAS/src/cblas_csyrk.c https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-205 (16)
M CBLAS/src/cblas_ctbmv.c https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-206 (18)
M CBLAS/src/cblas_ctbsv.c https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-207 (22)
M CBLAS/src/cblas_ctpmv.c https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-208 (18)
M CBLAS/src/cblas_ctpsv.c https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-209 (22)
M CBLAS/src/cblas_ctrmm.c https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-210 (24)
M CBLAS/src/cblas_ctrmv.c https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-211 (18)
M CBLAS/src/cblas_ctrsm.c https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-212 (18)
M CBLAS/src/cblas_ctrsv.c https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-213 (22)
M CBLAS/src/cblas_dasum.c https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-214 (4)
M CBLAS/src/cblas_daxpy.c https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-215 (4)
M CBLAS/src/cblas_dcopy.c https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-216 (2)
M CBLAS/src/cblas_ddot.c https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-217 (4)
M CBLAS/src/cblas_dgbmv.c https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-218 (10)
M CBLAS/src/cblas_dgemm.c https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-219 (16)
M CBLAS/src/cblas_dgemv.c https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-220 (8)
M CBLAS/src/cblas_dger.c https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-221 (4)
M CBLAS/src/cblas_dnrm2.c https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-222 (4)
M CBLAS/src/cblas_drot.c https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-223 (6)
M CBLAS/src/cblas_drotg.c https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-224 (2)
M CBLAS/src/cblas_drotm.c https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-225 (4)
M CBLAS/src/cblas_drotmg.c https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-226 (2)
M CBLAS/src/cblas_dsbmv.c https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-227 (10)
M CBLAS/src/cblas_dscal.c https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-228 (4)
M CBLAS/src/cblas_dsdot.c https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-229 (4)
M CBLAS/src/cblas_dspmv.c https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-230 (12)
M CBLAS/src/cblas_dspr.c https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-231 (10)
M CBLAS/src/cblas_dspr2.c https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-232 (10)
M CBLAS/src/cblas_dswap.c https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-233 (2)
M CBLAS/src/cblas_dsymm.c https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-234 (20)
M CBLAS/src/cblas_dsymv.c https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-235 (10)
M CBLAS/src/cblas_dsyr.c https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-236 (12)
M CBLAS/src/cblas_dsyr2.c https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-237 (14)
M CBLAS/src/cblas_dsyr2k.c https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-238 (18)
M CBLAS/src/cblas_dsyrk.c https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-239 (16)
M CBLAS/src/cblas_dtbmv.c https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-240 (14)
M CBLAS/src/cblas_dtbsv.c https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-241 (14)
M CBLAS/src/cblas_dtpmv.c https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-242 (14)
M CBLAS/src/cblas_dtpsv.c https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-243 (14)
M CBLAS/src/cblas_dtrmm.c https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-244 (24)
M CBLAS/src/cblas_dtrmv.c https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-245 (16)
M CBLAS/src/cblas_dtrsm.c https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-246 (28)
M CBLAS/src/cblas_dtrsv.c https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-247 (14)
M CBLAS/src/cblas_dzasum.c https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-248 (4)
M CBLAS/src/cblas_dznrm2.c https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-249 (4)
M CBLAS/src/cblas_icamax.c https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-250 (2)
M CBLAS/src/cblas_idamax.c https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-251 (2)
M CBLAS/src/cblas_isamax.c https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-252 (2)
M CBLAS/src/cblas_izamax.c https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-253 (2)
M CBLAS/src/cblas_sasum.c https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-254 (4)
M CBLAS/src/cblas_saxpy.c https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-255 (4)
M CBLAS/src/cblas_scasum.c https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-256 (4)
M CBLAS/src/cblas_scnrm2.c https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-257 (4)
M CBLAS/src/cblas_scopy.c https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-258 (2)
M CBLAS/src/cblas_sdot.c https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-259 (4)
M CBLAS/src/cblas_sdsdot.c https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-260 (4)
M CBLAS/src/cblas_sgbmv.c https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-261 (10)
M CBLAS/src/cblas_sgemm.c https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-262 (26)
M CBLAS/src/cblas_sgemv.c https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-263 (10)
M CBLAS/src/cblas_sger.c https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-264 (2)
M CBLAS/src/cblas_snrm2.c https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-265 (4)
M CBLAS/src/cblas_srot.c https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-266 (4)
M CBLAS/src/cblas_srotg.c https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-267 (2)
M CBLAS/src/cblas_srotm.c https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-268 (4)
M CBLAS/src/cblas_srotmg.c https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-269 (2)
M CBLAS/src/cblas_ssbmv.c https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-270 (8)
M CBLAS/src/cblas_sscal.c https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-271 (4)
M CBLAS/src/cblas_sspmv.c https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-272 (10)
M CBLAS/src/cblas_sspr.c https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-273 (10)
M CBLAS/src/cblas_sspr2.c https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-274 (10)
M CBLAS/src/cblas_sswap.c https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-275 (2)
M CBLAS/src/cblas_ssymm.c https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-276 (24)
M CBLAS/src/cblas_ssymv.c https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-277 (10)
M CBLAS/src/cblas_ssyr.c https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-278 (12)
M CBLAS/src/cblas_ssyr2.c https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-279 (14)
M CBLAS/src/cblas_ssyr2k.c https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-280 (22)
M CBLAS/src/cblas_ssyrk.c https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-281 (22)
M CBLAS/src/cblas_stbmv.c https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-282 (16)
M CBLAS/src/cblas_stbsv.c https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-283 (14)
M CBLAS/src/cblas_stpmv.c https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-284 (14)
M CBLAS/src/cblas_stpsv.c https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-285 (14)
M CBLAS/src/cblas_strmm.c https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-286 (24)
M CBLAS/src/cblas_strmv.c https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-287 (14)
M CBLAS/src/cblas_strsm.c https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-288 (24)
M CBLAS/src/cblas_strsv.c https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-289 (14)
M CBLAS/src/cblas_xerbla.c https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-290 (2)
M CBLAS/src/cblas_zaxpy.c https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-291 (4)
M CBLAS/src/cblas_zcopy.c https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-292 (2)
M CBLAS/src/cblas_zdotc_sub.c https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-293 (2)
M CBLAS/src/cblas_zdotu_sub.c https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-294 (2)
M CBLAS/src/cblas_zdscal.c https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-295 (2)
M CBLAS/src/cblas_zgbmv.c https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-296 (18)
M CBLAS/src/cblas_zgemm.c https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-297 (16)
M CBLAS/src/cblas_zgemv.c https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-298 (24)
M CBLAS/src/cblas_zgerc.c https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-299 (16)
I CBLAS/src/cblas_zgeru.c https://github.com/Reference-LAPACK/lapack/pull/5/files#diff-300 (0)
Patch Links:

https://github.com/Reference-LAPACK/lapack/pull/5.patch https://github.com/Reference-LAPACK/lapack/pull/5.patch
https://github.com/Reference-LAPACK/lapack/pull/5.diff https://github.com/Reference-LAPACK/lapack/pull/5.diff

You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub #5, or mute the thread https://github.com/notifications/unsubscribe/AQA7OB_EsaEg4Uz6Em2Jf-fca56rl-JAks5qT8p4gaJpZM4JIpi5.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants