Skip to content

Commit

Permalink
Fix a compilation error in CAGRA when enabling log output (#2262)
Browse files Browse the repository at this point in the history
This PR fixes a compilation error in CAGRA when enabling log output.

Authors:
  - tsuki (https://github.com/enp1s0)

Approvers:
  - Corey J. Nolet (https://github.com/cjnolet)

URL: #2262
  • Loading branch information
enp1s0 authored Apr 15, 2024
1 parent da6e2a4 commit e977d2e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cpp/include/raft/neighbors/detail/cagra/cagra_search.cuh
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,8 @@ void search_main_core(
CagraSampleFilterT sample_filter = CagraSampleFilterT())
{
RAFT_LOG_DEBUG("# dataset size = %lu, dim = %lu\n",
static_cast<size_t>(index.data().n_rows()),
static_cast<size_t>(index.data().dim()));
static_cast<size_t>(dataset_desc.size),
static_cast<size_t>(dataset_desc.dim));
RAFT_LOG_DEBUG("# query size = %lu, dim = %lu\n",
static_cast<size_t>(queries.extent(0)),
static_cast<size_t>(queries.extent(1)));
Expand Down

0 comments on commit e977d2e

Please sign in to comment.