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/03/06 04:27:00 UTC

[GitHub] [incubator-mxnet] stereomatchingkiss commented on issue #11769: USE_BLAS=MKL fails due to mshadow requiring openblas

stereomatchingkiss commented on issue #11769: USE_BLAS=MKL fails due to mshadow requiring openblas
URL: https://github.com/apache/incubator-mxnet/issues/11769#issuecomment-469963504
 
 
   os : win10 64bits
   compiler : vc2015 64 bits update 3(this version cannot build with openBLAS, lots of link issue)
   cuda : no cuda, cpu only
   opencv : no opencv
   mxnet version : 1.3.1(1.4.0 cannot compile on window, please read #14203 )
   
   The mshadow.cmake generated by cmake under the folder 3rdparty\mshadow\cmake got command like this
   
   ```
   if(USE_MKL_IF_AVAILABLE)
     if(NOT MKL_FOUND)
       find_package(MKL)
     endif()
     if(MKL_FOUND)
       if(USE_MKLML_MKL)
         set(BLAS "open")
       else()
         set(BLAS "MKL")
       endif()
     endif()
   endif()
   ```
   
   After uncheck USE_MKLML_MKL I can compile mshadow with mkl with cpp_package, but 
   
   1. the install project do not work
   2. when I execute the program, it keep complain "Intel MKL FATAL ERROR: Cannot load mkl_intel_thread.dll."
   
   

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to 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