leleamol commented on a change in pull request #12737: [MXNET-1017] Updating 
the readme file for cpp-package and adding readme file for example directory.
URL: https://github.com/apache/incubator-mxnet/pull/12737#discussion_r223796326
 
 

 ##########
 File path: cpp-package/example/README.md
 ##########
 @@ -0,0 +1,112 @@
+# MXNet C++ Package Examples
+
+## Building C++ examples
+
+The examples are built while building the MXNet library and cpp-package from 
source . However, they can be built manually as follows
+
+From cpp-package/examples directory
+
+-  Build all examples in release mode: **make all**
+-  Build all examples in debug mode: **make debug**
+
+By default, the examples are build to be run on GPU. To build examples to run 
on CPU:
+
+-  Release: **make all MXNET\_USE\_CPU=1**
+-  Debug: **make debug MXNET\_USE\_CPU=1**
+
+The examples that are build to be run on GPU may not work on the non-GPU 
machines.
+The makefile will also download the necessary data files and store in data 
folder. (The download will take couple of minutes, but will be done only once 
on a fresh installation.)
+
+
+## Examples
+
+This directory contains following examples. In order to run the examples, 
ensure that the path to the MXNet shared library is added to the OS specific 
environment variable such as _LD\_LIBRARY\_PATH_ .
 
 Review comment:
   LD_LIBRARY_PATH is one alternative.  Experienced users can do "LD_PRELOAD" 
to load the shared library prior to running an example. Also, the configuration 
for 'ldconfig' can include "mxnet/lib/" path so that it gets included in the 
cache of share libraries when system builds it during startup. 

----------------------------------------------------------------
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

Reply via email to