| 163 | } |
| 164 | |
| 165 | void SelectedRowsImpl::SyncIndex() { |
| 166 | rwlock_->WRLock(); |
| 167 | id_to_index_.clear(); |
| 168 | for (int i = 0; i < static_cast<int>(rows_.size()); ++i) { |
| 169 | id_to_index_[rows_[i]] = i; |
| 170 | } |
| 171 | rwlock_->UNLock(); |
| 172 | } |
| 173 | |
| 174 | void SelectedRowsImpl::Get(const DenseTensor& ids, |
| 175 | DenseTensor* value, |
no test coverage detected