| 16 | } |
| 17 | |
| 18 | string SlotReader::cacheName(const DataConfig& data, int slot_id) const { |
| 19 | CHECK_GT(data.file_size(), 0); |
| 20 | return cache_ + getFilename(data.file(0)) + "_slot_" + std::to_string(slot_id); |
| 21 | } |
| 22 | |
| 23 | size_t SlotReader::nnzEle(int slot_id) const { |
| 24 | size_t nnz = 0; |
nothing calls this directly
no test coverage detected