Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions cpp/src/svm/workingset.cuh
Original file line number Diff line number Diff line change
Expand Up @@ -102,11 +102,10 @@ inline void WorkingSet<math_t>::SimpleSelect(
// In case we could not find enough elements, then we just fill using the
// still available elements.
if (n_already_selected < n_ws) {
CUML_LOG_WARN(
"Warning: could not fill working set, found only %d"
" elements",
CUML_LOG_DEBUG(
"Could not fill working set: found only %d elements, "
"filling remainder with additional elements",
n_already_selected);
CUML_LOG_DEBUG("Filling up with unused elements");
RAFT_CUDA_TRY(cudaMemset(available, 1, sizeof(bool) * n_train));
n_already_selected += GatherAvailable(n_already_selected, n_ws - n_already_selected, true);
}
Expand Down