| 11 | DECLARE_bool(verbose); |
| 12 | |
| 13 | DataConfig ithFile(const DataConfig& conf, int i, const string& suffix) { |
| 14 | CHECK_GE(i, 0); CHECK_LT(i, conf.file_size()); |
| 15 | auto f = conf; f.clear_file(); f.add_file(conf.file(i) + suffix); |
| 16 | return f; |
| 17 | } |
| 18 | |
| 19 | MatrixInfo readMatrixInfo( |
| 20 | const ExampleInfo& info, int slot_id, int sizeof_idx, int sizeof_val) { |
no test coverage detected