Skip to content

Commit

Permalink
fix compiler warning
Browse files Browse the repository at this point in the history
  • Loading branch information
seunghwak committed Dec 12, 2024
1 parent 566f67a commit 658f4ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cpp/src/sampling/neighbor_sampling_impl.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ neighbor_sample_impl(raft::handle_t const& handle,

std::vector<size_t> level_sizes{};

for (auto hop = 0; hop < num_hops; hop++) {
for (size_t hop = 0; hop < num_hops; ++hop) {
rmm::device_uvector<vertex_t> level_result_src(0, handle.get_stream());
rmm::device_uvector<vertex_t> level_result_dst(0, handle.get_stream());

Expand Down

0 comments on commit 658f4ac

Please sign in to comment.