asmushetzel commented on a change in pull request #8846: Batching improvements for GEMM/TRSM operators and full MKL usage docs. URL: https://github.com/apache/incubator-mxnet/pull/8846#discussion_r159397754
########## File path: MKL_README.md ########## @@ -1,3 +1,22 @@ +# Full MKL Installation + +## Build/Install MXNet with a full MKL installation: +Installing and enabling the full MKL installation enables MKL support for all operators under the linalg namespace. + + 1. Download and install the latest full MKL version following instructions on the [intel website.](https://software.intel.com/en-us/articles/intel-mkl-111-install-guide) + + 2. Set USE_BLAS=mkl in make/config.mk + + 1.1 Set ADD_LDFLAGS=-L<path/to/mkl/lib/folder> (ex. ADD_LDFLAGS=-L/opt/intel/compilers_and_libraries_2018.0.128/linux/mkl/lib) + + 1.1 Set ADD_CFLAGS=-L<path/to/mkl/include/folder> (ex. ADD_CFLAGS=-L/opt/intel/compilers_and_libraries_2018.0.128/linux/mkl/include) Review comment: Guess you mean the "-I" flag. ---------------------------------------------------------------- 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
