Fix logic error before

avx_docs
Yu Yang 8 years ago
parent f63fbcdd29
commit ea7dd7c925

@ -188,12 +188,11 @@ protected:
<< ") rows are used for sparse " << ") rows are used for sparse "
<< "update, which is not efficient. Considering not use " << "update, which is not efficient. Considering not use "
<< "sparse_update or set --allow_inefficient_sparse_update=true"; << "sparse_update or set --allow_inefficient_sparse_update=true";
}
} else { } else {
CHECK_LE(localIndices_->size(), buf_->getRowCount()); CHECK_LE(localIndices_->size(), buf_->getRowCount());
} }
} }
}
std::unique_ptr<RowBuffer> buf_; std::unique_ptr<RowBuffer> buf_;
IndexDictPtr indexDictHandle_; IndexDictPtr indexDictHandle_;

Loading…
Cancel
Save