This commit is contained in:
tqchen 2015-04-08 15:30:56 -07:00
parent e95c96232a
commit e08542c635
3 changed files with 4 additions and 2 deletions

View File

@ -95,7 +95,7 @@ WARN_LOGFILE =
#---------------------------------------------------------------------------
# configuration options related to the input files
#---------------------------------------------------------------------------
INPUT =
INPUT = . dmlc
INPUT_ENCODING = UTF-8
FILE_PATTERNS =
RECURSIVE = NO

View File

@ -1,4 +1,4 @@
#!/bin/bash
cd ../include
doxygen ../doc/Doxyfile
doxygen ../doc/Doxyfile
cd ../doc

View File

@ -38,6 +38,7 @@ class Stream {
* \param uri the uri of the input currently we support
* hdfs://, s3://, and file:// by default file:// will be used
* \param flag can be "w", "r", "a"
* \return a created stream
*/
static Stream *Create(const char *uri, const char* const flag);
// helper functions to write/read different data structures
@ -115,6 +116,7 @@ class InputSplit {
* \param uri the uri of the input, can contain hdfs prefix
* \param part_index the part id of current input
* \param num_parts total number of splits
* \return a created input split
*/
static InputSplit* Create(const char *uri,
unsigned part_index,