Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • Add shell script to install cmake on all platforms (find this script)
  • Jenkins tests need to start building with CMakeLists.txt as opposed to Makefile.
  • Need to update mxnet build from source documentation (only for Linux distributions and Mac) to instruct users to use cmake with analogous flags (shown below)


Current Makefile flags

```

USE_OPENCV
USE_BLAS
USE_CUDA
USE_CUDA_PATH
USE_CUDNN
USE_NCCL
USE_NCCP_PATH
USE_OPENMP
USE_OPENMP

...

```

To preserve backwards compatibility issues we should keep our current Makefile in the root until the above steps have been complete.

...