Skip to content

Commit ced1357

Browse files
committed
Random "walk (a)round" --> "work-around" typo fixes
Signed-off-by: Timothy Gu <[email protected]>
1 parent fe85887 commit ced1357

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

Changelog.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ common:
5151
parallelization model is used by OpenBLAS. (Thank grisuthedragon)
5252
* Detect LLVM/Clang compiler. The default compiler is Clang on Mac OS X.
5353
* Change LIBSUFFIX from .lib to .a on windows.
54-
* A walk round for dtrti_U single thread bug. Replace it with LAPACK codes. (#191)
54+
* A work-around for dtrti_U single thread bug. Replace it with LAPACK codes. (#191)
5555

5656
x86/x86-64:
5757
* Optimize c/zgemm, trsm, dgemv_n, ddot, daxpy, dcopy on
@@ -284,7 +284,7 @@ x86/x86_64:
284284
* Fixed #28 a wrong result of dsdot on x86_64.
285285
* Fixed #32 a SEGFAULT bug of zdotc with gcc-4.6.
286286
* Fixed #33 ztrmm bug on Nehalem.
287-
* Walk round #27 the low performance axpy issue with small imput size & multithreads.
287+
* Work-around #27 the low performance axpy issue with small imput size & multithreads.
288288

289289
MIPS64:
290290
* Fixed #28 a wrong result of dsdot on Loongson3A/MIPS64.
@@ -308,7 +308,7 @@ common:
308308

309309
x86/x86_64:
310310
* On x86 32bits, fixed a bug in zdot_sse2.S line 191. This would casue
311-
zdotu & zdotc failures.Instead,Walk around it. (Refs issue #8 #9 on github)
311+
zdotu & zdotc failures. Instead, work-around it. (Refs issue #8 #9 on github)
312312
* Modified ?axpy functions to return same netlib BLAS results
313313
when incx==0 or incy==0 (Refs issue #7 on github)
314314
* Modified ?swap functions to return same netlib BLAS results

interface/axpy.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,8 @@ void CNAME(blasint n, FLOAT alpha, FLOAT *x, blasint incx, FLOAT *y, blasint inc
8686
if (incx == 0 || incy == 0)
8787
nthreads = 1;
8888

89-
//Temporarily walk around the low performance issue with small imput size & multithreads.
89+
//Temporarily work-around the low performance issue with small imput size &
90+
//multithreads.
9091
if (n <= 10000)
9192
nthreads = 1;
9293

0 commit comments

Comments
 (0)