This folder contains a amalgamation generation script to generate the entire mxnet library into one file. Currently it supports generation for predict API, which allows you to run prediction in platform independent way.
Type make will generate the following files
- mxnet_predict-all.cc
- The file you can used to compile predict API
- ../lib/libmxnet_predict.so
- The dynamic library generated for prediction.
You can also checkout the Makefile
The only dependency is a BLAS library.
This module is created by Jack Deng.