mirror of https://github.com/AlexeyAB/darknet.git
fix makefile comment bug
spaces between variable declaration and comment will assign unexpected value to the variable
This commit is contained in:
parent
3af6781de2
commit
fc6b3d0ad2
6
Makefile
6
Makefile
|
@ -5,12 +5,14 @@ OPENCV=0
|
|||
AVX=0
|
||||
OPENMP=0
|
||||
LIBSO=0
|
||||
ZED_CAMERA=0 # ZED SDK 3.0 and above
|
||||
ZED_CAMERA_v2_8=0 # ZED SDK 2.X
|
||||
ZED_CAMERA=0
|
||||
ZED_CAMERA_v2_8=0
|
||||
|
||||
# set GPU=1 and CUDNN=1 to speedup on GPU
|
||||
# set CUDNN_HALF=1 to further speedup 3 x times (Mixed-precision on Tensor Cores) GPU: Volta, Xavier, Turing and higher
|
||||
# set AVX=1 and OPENMP=1 to speedup on CPU (if error occurs then set AVX=0)
|
||||
# set ZED_CAMERA=1 to enable ZED SDK 3.0 and above
|
||||
# set ZED_CAMERA_v2_8=1 to enable ZED SDK 2.X
|
||||
|
||||
USE_CPP=0
|
||||
DEBUG=0
|
||||
|
|
Loading…
Reference in New Issue