larroy commented on a change in pull request #11055: Added support android64 URL: https://github.com/apache/incubator-mxnet/pull/11055#discussion_r193629330
########## File path: CMakeLists.txt ########## @@ -15,9 +15,9 @@ mxnet_option(USE_NCCL "Use NVidia NCCL with CUDA" OFF) mxnet_option(USE_OPENCV "Build with OpenCV support" ON) mxnet_option(USE_OPENMP "Build with Openmp support" ON) mxnet_option(USE_CUDNN "Build with cudnn support" ON) # one could set CUDNN_ROOT for search path -mxnet_option(USE_SSE "Build with x86 SSE instruction support" ON) +mxnet_option(USE_SSE "Build with x86 SSE instruction support" ON IF NOT ARM) mxnet_option(USE_F16C "Build with x86 F16C instruction support" ON) # autodetects support if ON -mxnet_option(USE_LAPACK "Build with lapack support" ON IF NOT MSVC) Review comment: this logic is buggy, so tries to always use LAPACK, and if I recall correctly is not available atm in android. See also: https://github.com/apache/incubator-mxnet/pull/11094 ---------------------------------------------------------------- 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: [email protected] With regards, Apache Git Services
