Skip to content

Commit a387a23

Browse files
authored
Merge pull request #2101 from luzpaz/misc-typos
Misc. typo fixes in comments and documentation
2 parents 3f427c0 + b46875b commit a387a23

24 files changed

+29
-29
lines changed

Makefile.rule

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -181,17 +181,17 @@ NO_AFFINITY = 1
181181
# time out to improve performance. This number should be from 4 to 30
182182
# which corresponds to (1 << n) cycles. For example, if you set to 26,
183183
# thread will be running for (1 << 26) cycles(about 25ms on 3.0GHz
184-
# system). Also you can control this mumber by THREAD_TIMEOUT
184+
# system). Also you can control this number by THREAD_TIMEOUT
185185
# CCOMMON_OPT += -DTHREAD_TIMEOUT=26
186186

187-
# Using special device driver for mapping physically contigous memory
187+
# Using special device driver for mapping physically contiguous memory
188188
# to the user space. If bigphysarea is enabled, it will use it.
189189
# DEVICEDRIVER_ALLOCATION = 1
190190

191191
# If you need to synchronize FP CSR between threads (for x86/x86_64 only).
192192
# CONSISTENT_FPCSR = 1
193193

194-
# If any gemm arguement m, n or k is less or equal this threshold, gemm will be execute
194+
# If any gemm argument m, n or k is less or equal this threshold, gemm will be execute
195195
# with single thread. (Actually in recent versions this is a factor proportional to the
196196
# number of floating point operations necessary for the given problem size, no longer
197197
# an individual dimension). You can use this setting to avoid the overhead of multi-

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ Please read `GotoBLAS_01Readme.txt`.
133133

134134
#### PPC/PPC64
135135

136-
- **POWER8**: Optmized Level-3 BLAS and some Level-1, only with `USE_OPENMP=1`
136+
- **POWER8**: Optimized Level-3 BLAS and some Level-1, only with `USE_OPENMP=1`
137137

138138
#### IBM zEnterprise System
139139

cmake/kernel.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# helper functions for the kernel CMakeLists.txt
22

33

4-
# Set the default filenames for L1 objects. Most of these will be overriden by the appropriate KERNEL file.
4+
# Set the default filenames for L1 objects. Most of these will be overridden by the appropriate KERNEL file.
55
macro(SetDefaultL1)
66
set(SAMAXKERNEL amax.S)
77
set(DAMAXKERNEL amax.S)

cmake/system.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ endif ()
283283

284284
set(KERNELDIR "${PROJECT_SOURCE_DIR}/kernel/${ARCH}")
285285

286-
# TODO: nead to convert these Makefiles
286+
# TODO: need to convert these Makefiles
287287
# include ${PROJECT_SOURCE_DIR}/cmake/${ARCH}.cmake
288288

289289
if (${CORE} STREQUAL "PPC440")

cmake/utils.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ function(AllCombinations list_in absent_codes_in)
8989
set(CODES_OUT ${CODES_OUT} PARENT_SCOPE)
9090
endfunction ()
9191

92-
# generates object files for each of the sources, using the BLAS naming scheme to pass the funciton name as a preprocessor definition
92+
# generates object files for each of the sources, using the BLAS naming scheme to pass the function name as a preprocessor definition
9393
# @param sources_in the source files to build from
9494
# @param defines_in (optional) preprocessor definitions that will be applied to all objects
9595
# @param name_in (optional) if this is set this name will be used instead of the filename. Use a * to indicate where the float character should go, if no star the character will be prepended.

common_stackalloc.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
4545
* SIZE must be carefully chosen to be:
4646
* - as small as possible to maximize the number of stack allocation
4747
* - large enough to support all architectures and kernel
48-
* Chosing a too small SIZE will lead to a stack smashing.
48+
* Choosing a SIZE too small will lead to a stack smashing.
4949
*/
5050
#define STACK_ALLOC(SIZE, TYPE, BUFFER) \
5151
/* make it volatile because some function (ex: dgemv_n.S) */ \

common_x86.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ static __inline int blas_quickdivide(unsigned int x, unsigned int y){
214214
#endif
215215

216216
#if defined(PILEDRIVER) || defined(BULLDOZER) || defined(STEAMROLLER) || defined(EXCAVATOR)
217-
//Enable some optimazation for barcelona.
217+
//Enable some optimization for barcelona.
218218
#define BARCELONA_OPTIMIZATION
219219
#endif
220220

common_x86_64.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -276,7 +276,7 @@ static __inline int blas_quickdivide(unsigned int x, unsigned int y){
276276
#ifdef ASSEMBLER
277277

278278
#if defined(PILEDRIVER) || defined(BULLDOZER) || defined(STEAMROLLER) || defined(EXCAVATOR)
279-
//Enable some optimazation for barcelona.
279+
//Enable some optimization for barcelona.
280280
#define BARCELONA_OPTIMIZATION
281281
#endif
282282

ctest/c_cblat1.f

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -577,7 +577,7 @@ SUBROUTINE STEST(LEN,SCOMP,STRUE,SSIZE,SFAC)
577577
SUBROUTINE STEST1(SCOMP1,STRUE1,SSIZE,SFAC)
578578
* ************************* STEST1 *****************************
579579
*
580-
* THIS IS AN INTERFACE SUBROUTINE TO ACCOMODATE THE FORTRAN
580+
* THIS IS AN INTERFACE SUBROUTINE TO ACCOMMODATE THE FORTRAN
581581
* REQUIREMENT THAT WHEN A DUMMY ARGUMENT IS AN ARRAY, THE
582582
* ACTUAL ARGUMENT MUST ALSO BE AN ARRAY OR AN ARRAY ELEMENT.
583583
*

ctest/c_dblat1.f

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -653,7 +653,7 @@ SUBROUTINE STEST(LEN,SCOMP,STRUE,SSIZE,SFAC)
653653
SUBROUTINE STEST1(SCOMP1,STRUE1,SSIZE,SFAC)
654654
* ************************* STEST1 *****************************
655655
*
656-
* THIS IS AN INTERFACE SUBROUTINE TO ACCOMODATE THE FORTRAN
656+
* THIS IS AN INTERFACE SUBROUTINE TO ACCOMMODATE THE FORTRAN
657657
* REQUIREMENT THAT WHEN A DUMMY ARGUMENT IS AN ARRAY, THE
658658
* ACTUAL ARGUMENT MUST ALSO BE AN ARRAY OR AN ARRAY ELEMENT.
659659
*

0 commit comments

Comments
 (0)