Random "walk (a)round" --> "work-around" typo fixes
authorTimothy Gu <timothygu99@gmail.com>
Fri, 23 May 2014 01:10:33 +0000 (18:10 -0700)
committerTimothy Gu <timothygu99@gmail.com>
Fri, 23 May 2014 01:11:52 +0000 (18:11 -0700)
Signed-off-by: Timothy Gu <timothygu99@gmail.com>
Changelog.txt
interface/axpy.c

index 198c2d8..f53cadc 100644 (file)
@@ -51,7 +51,7 @@ common:
           parallelization model is used by OpenBLAS. (Thank grisuthedragon)
        * Detect LLVM/Clang compiler. The default compiler is Clang on Mac OS X.
         * Change LIBSUFFIX from .lib to .a on windows.
-       * A walk round for dtrti_U single thread bug. Replace it with LAPACK codes. (#191)
+       * A work-around for dtrti_U single thread bug. Replace it with LAPACK codes. (#191)
 
 x86/x86-64:
        * Optimize c/zgemm, trsm, dgemv_n, ddot, daxpy, dcopy on 
@@ -284,7 +284,7 @@ x86/x86_64:
        * Fixed #28 a wrong result of dsdot on x86_64.
        * Fixed #32 a SEGFAULT bug of zdotc with gcc-4.6.
        * Fixed #33 ztrmm bug on Nehalem.
-       * Walk round #27 the low performance axpy issue with small imput size & multithreads.
+       * Work-around #27 the low performance axpy issue with small imput size & multithreads.
 
 MIPS64:
        * Fixed #28 a wrong result of dsdot on Loongson3A/MIPS64. 
@@ -308,7 +308,7 @@ common:
 
 x86/x86_64:
        * On x86 32bits, fixed a bug in zdot_sse2.S line 191. This would casue 
-         zdotu & zdotc failures.Instead,Walk around it. (Refs issue #8 #9 on github)
+         zdotu & zdotc failures. Instead, work-around it. (Refs issue #8 #9 on github)
        * Modified ?axpy functions to return same netlib BLAS results 
          when incx==0 or incy==0 (Refs issue #7 on github)
        * Modified ?swap functions to return same netlib BLAS results 
index 82b0ee2..5e288e3 100644 (file)
@@ -86,7 +86,8 @@ void CNAME(blasint n, FLOAT alpha, FLOAT *x, blasint incx, FLOAT *y, blasint inc
   if (incx == 0 || incy == 0)
          nthreads = 1;
  
-  //Temporarily walk around the low performance issue with small imput size & multithreads.
+  //Temporarily work-around the low performance issue with small imput size &
+  //multithreads.
   if (n <= 10000)
          nthreads = 1;