We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ee3ec09 commit d3eb8a0Copy full SHA for d3eb8a0
Makefile
@@ -61,7 +61,7 @@ endif
61
# use customized config file
62
include $(config)
63
64
-ifndef $(USE_MKLDNN)
+ifndef USE_MKLDNN
65
ifneq ($(UNAME_S), Darwin)
66
ifneq ($(UNAME_S), Windows)
67
ifeq ($(UNAME_P), x86_64)
make/config.mk
@@ -98,8 +98,10 @@ USE_LIBJPEG_TURBO_PATH = NONE
98
# use openmp for parallelization
99
USE_OPENMP = 1
100
101
-# whether use MKL-DNN library
102
-USE_MKLDNN = 0
+# whether use MKL-DNN library: 0 = disabled, 1 = enabled
+# if USE_MKLDNN is not defined, MKL-DNN will be enabled by default on x86 Linux.
103
+# you can disable it explicity with USE_MKLDNN = 0
104
+USE_MKLDNN =
105
106
# whether use NNPACK library
107
USE_NNPACK = 0
0 commit comments