8000 Removing print statement by jinsolp · Pull Request #786 · rapidsai/cuvs · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Removing print statement #786

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Mar 31, 2025
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
3 changes: 0 additions & 3 deletions cpp/src/neighbors/ivf_pq/ivf_pq_build.cuh
Original file line number Diff line number Diff line change
Expand Up @@ -1696,9 +1696,6 @@ auto build(raft::resources const& handle,
std::is_same_v<T, int8_t>,
"Unsupported data type");

std::cout << "using ivf_pq::index_params nrows " << (int)dataset.extent(0) << ", dim "
<< (int)dataset.extent(1) << ", n_lists " << (int)params.n_lists << ", pq_dim "
<< (int)params.pq_dim << std::endl;
RAFT_EXPECTS(n_rows > 0 && dim > 0, "empty dataset");
RAFT_EXPECTS(n_rows >= params.n_lists, "number of rows can't be less than n_lists");
if (params.metric == distance::DistanceType::CosineExpanded) {
Expand Down
0