|
|
| ParquetParser (const std::string &filename, const std::map< std::string, std::string > &args) |
| |
| virtual bool | ParseNext (std::vector< RowBlockContainer< IndexType, DType > > *data) |
| | read in next several blocks of data
|
| |
| virtual bool | Next (void) |
| | implement next
|
| |
| virtual const RowBlock< IndexType, DType > & | Value (void) const |
| | get current data
|
| |
|
Parser< uint32_t, real_t > * | Create (const char *uri_, unsigned part_index, unsigned num_parts, const char *type) |
| |
|
Parser< uint64_t, real_t > * | Create (const char *uri_, unsigned part_index, unsigned num_parts, const char *type) |
| |
|
Parser< uint32_t, int32_t > * | Create (const char *uri_, unsigned part_index, unsigned num_parts, const char *type) |
| |
|
Parser< uint64_t, int32_t > * | Create (const char *uri_, unsigned part_index, unsigned num_parts, const char *type) |
| |
|
Parser< uint32_t, int64_t > * | Create (const char *uri_, unsigned part_index, unsigned num_parts, const char *type) |
| |
|
Parser< uint64_t, int64_t > * | Create (const char *uri_, unsigned part_index, unsigned num_parts, const char *type) |
| |
|
virtual | ~DataIter (void) DMLC_THROW_EXCEPTION |
| | destructor
|
| |
|
|
typedef Parser< IndexType, DType > *(* | Factory) (const std::string &path, const std::map< std::string, std::string > &args, unsigned part_index, unsigned num_parts) |
| | Factory type of the parser.
|
| |
| static Parser< IndexType, DType > * | Create (const char *uri_, unsigned part_index, unsigned num_parts, const char *type) |
| | create a new instance of parser based on the "type"
|
| |
|
IndexType | data_ptr_ |
| | pointer to begin and end of data
|
| |
|
IndexType | data_end_ |
| |
|
std::vector< RowBlockContainer< IndexType, DType > > | data_ |
| | internal data
|
| |
|
RowBlock< IndexType, DType > | block_ |
| | internal row block
|
| |