Skip to content

Commit

Permalink
Fix data type of query id offset
Browse files Browse the repository at this point in the history
  • Loading branch information
enp1s0 committed Sep 8, 2023
1 parent a083244 commit 79f69e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cpp/include/raft/neighbors/detail/cagra/cagra_search.cuh
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ struct CagraSampleFilterWithQueryIdOffset {
const std::size_t offset;
CagraSampleFilterT filter;

CagraSampleFilterWithQueryIdOffset(const std::size_t offset, const CagraSampleFilterT filter)
CagraSampleFilterWithQueryIdOffset(const uint32_t offset, const CagraSampleFilterT filter)
: offset(offset), filter(filter)
{
}
Expand Down

0 comments on commit 79f69e9

Please sign in to comment.