Skip to content

Commit 9d8a7f1

Browse files
committed
Correct typos.
1 parent fb14c0b commit 9d8a7f1

File tree

3 files changed

+17
-17
lines changed

3 files changed

+17
-17
lines changed

make/config.mk

+7-7
Original file line numberDiff line numberDiff line change
@@ -40,12 +40,12 @@ ADD_CFLAGS =
4040
# whether use CUDA during compile
4141
USE_CUDA = 0
4242

43-
# add the path to CUDA libary to link and compile flag
44-
# if you have already add them to enviroment variable, leave it as NONE
43+
# add the path to CUDA library to link and compile flag
44+
# if you have already add them to environment variable, leave it as NONE
4545
# USE_CUDA_PATH = /usr/local/cuda
4646
USE_CUDA_PATH = NONE
4747

48-
# whether use CUDNN R3 library
48+
# whether use CuDNN R3 library
4949
USE_CUDNN = 0
5050

5151
# whether use cuda runtime compiling for writing kernels in native language (i.e. Python)
@@ -69,11 +69,11 @@ else
6969
USE_BLAS = atlas
7070
endif
7171

72-
# add path to intel libary, you may need it for MKL, if you did not add the path
73-
# to enviroment variable
72+
# add path to intel library, you may need it for MKL, if you did not add the path
73+
# to environment variable
7474
USE_INTEL_PATH = NONE
7575

76-
# If use MKL, choose static link automaticly to allow python wrapper
76+
# If use MKL, choose static link automatically to allow python wrapper
7777
ifeq ($(USE_BLAS), mkl)
7878
USE_STATIC_MKL = 1
7979
else
@@ -84,7 +84,7 @@ endif
8484
# distributed computing
8585
#----------------------------
8686

87-
# whether or not to enable mullti-machine supporting
87+
# whether or not to enable multi-machine supporting
8888
USE_DIST_KVSTORE = 0
8989

9090
# whether or not allow to read and write HDFS directly. If yes, then hadoop is

make/osx.mk

+5-5
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@ ADD_CFLAGS =
4040
# whether use CUDA during compile
4141
USE_CUDA = 0
4242

43-
# add the path to CUDA libary to link and compile flag
44-
# if you have already add them to enviroment variable, leave it as NONE
43+
# add the path to CUDA library to link and compile flag
44+
# if you have already add them to environment variable, leave it as NONE
4545
# USE_CUDA_PATH = /usr/local/cuda
4646
USE_CUDA_PATH = NONE
4747

@@ -63,15 +63,15 @@ USE_OPENMP = 0
6363
# can be: mkl, blas, atlas, openblas
6464
USE_BLAS = apple
6565

66-
# add path to intel libary, you may need it for MKL, if you did not add the path
67-
# to enviroment variable
66+
# add path to intel library, you may need it for MKL, if you did not add the path
67+
# to environment variable
6868
USE_INTEL_PATH = NONE
6969

7070
#----------------------------
7171
# distributed computing
7272
#----------------------------
7373

74-
# whether or not to enable mullti-machine supporting
74+
# whether or not to enable multi-machine supporting
7575
USE_DIST_KVSTORE = 0
7676

7777
# whether or not allow to read and write HDFS directly. If yes, then hadoop is

make/readthedocs.mk

+5-5
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ export NVCC = nvcc
1111
# whether use CUDA during compile
1212
USE_CUDA = 0
1313

14-
# add the path to CUDA libary to link and compile flag
15-
# if you have already add them to enviroment variable, leave it as NONE
14+
# add the path to CUDA library to link and compile flag
15+
# if you have already add them to environment variable, leave it as NONE
1616
USE_CUDA_PATH = NONE
1717

1818
# whether use opencv during compilation
@@ -33,8 +33,8 @@ USE_OPENMP = 0
3333
USE_STATIC_MKL = NONE
3434
USE_BLAS = NONE
3535
#
36-
# add path to intel libary, you may need it
37-
# for MKL, if you did not add the path to enviroment variable
36+
# add path to intel library, you may need it
37+
# for MKL, if you did not add the path to environment variable
3838
#
3939
USE_INTEL_PATH = NONE
4040

@@ -45,7 +45,7 @@ ADD_LDFLAGS = -lgomp
4545
# the additional compile flags you want to add
4646
ADD_CFLAGS = -DMSHADOW_STAND_ALONE=1
4747
#
48-
# If use MKL, choose static link automaticly to fix python wrapper
48+
# If use MKL, choose static link automatically to fix python wrapper
4949
#
5050
ifeq ($(USE_BLAS), mkl)
5151
USE_STATIC_MKL = 1

0 commit comments

Comments
 (0)