1 #ifndef PPAM_SERIALIZE_H
2 #define PPAM_SERIALIZE_H
8 //main job: parse a text file into a binary compressed version
9 void serialize_byCols(const char* ifileName
, const char* ofileName
, uint32_t nbItems
);
11 //serialize from usual 'by-row' data
12 void serialize_byRows(const char* ifileName
, const char* ofileName
, uint32_t nbItems
);