kpuatamazon commented on issue #17980:
URL:
https://github.com/apache/incubator-mxnet/issues/17980#issuecomment-626563301
@ChaiBapchya to be clear, here's how I am building the second option:
```bash
export CXXFLAGS="${CXXFLAGS} -DUSE_MKL -I/opt/intel/mkl/include"
unset LD_PRELOAD #Technically this should be what exists in your
environment by default
rm -rf build
mkdir build
cd build
cmake -GNinja -DUSE_CUDA=OFF -DCMAKE_BUILD_TYPE=Release ..
ninja -j 30
```
Note that `cmake` does not appear to pick up on changes to the build so it
needs a fresh build directory (deleting the cache might work).
----------------------------------------------------------------
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:
[email protected]