| 93 | // set filelist, file_idx_ will reset to zero. |
| 94 | template <typename T> |
| 95 | void DatasetImpl<T>::SetFileList(const std::vector<std::string>& filelist) { |
| 96 | VLOG(3) << "filelist size: " << filelist.size(); |
| 97 | filelist_ = filelist; |
| 98 | file_idx_ = 0; |
| 99 | } |
| 100 | |
| 101 | // set expect thread num. actually it may change |
| 102 | template <typename T> |