You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mxnet.apache.org by GitBox <gi...@apache.org> on 2019/01/05 19:38:29 UTC

[GitHub] lanking520 opened a new issue #13779: config.mk MKLDNN=0 not working in Makefile

lanking520 opened a new issue #13779: config.mk MKLDNN=0 not working in Makefile
URL: https://github.com/apache/incubator-mxnet/issues/13779
 
 
   I tried to use `config.mk` to set MKLDNN=0 and it seemed not to work
   ### step to reproduce:
   ```
   echo "USE_MKLDNN=0" >> config.mk
   make -j4
   ```
   Change on `Makefile`
   ```
   # use customized config file
   include $(config)
   $(info $$USE_MKLDNN is [${USE_MKLDNN}])
   ifndef $(USE_MKLDNN)
   $(info MKLDNN is not defined)
   endif
   ```
   Result
   ```
   $USE_MKLDNN is [0]
   MKLDNN is not defined
   ```
   Will raise a PR to fix this

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services