Skip to content

Commit

Permalink
finish debugging batch mode
Browse files Browse the repository at this point in the history
  • Loading branch information
ChuckHastings committed Jan 31, 2024
1 parent 055426b commit 32b409c
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions cpp/tests/link_prediction/similarity_compare.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -59,10 +59,10 @@ struct test_jaccard_t {
std::optional<edge_property_view_t<edge_t, weight_t const*>> edge_weight_view,
std::optional<raft::device_span<vertex_t const>> vertices,
bool use_weights,
size_t topk) const
std::optional<size_t> topk) const
{
return cugraph::jaccard_all_pairs_coefficients(
handle, graph_view, edge_weight_view, vertices, true, topk);
handle, graph_view, edge_weight_view, vertices, topk);
}
};

Expand Down Expand Up @@ -100,10 +100,10 @@ struct test_sorensen_t {
std::optional<edge_property_view_t<edge_t, weight_t const*>> edge_weight_view,
std::optional<raft::device_span<vertex_t const>> vertices,
bool use_weights,
size_t topk) const
std::optional<size_t> topk) const
{
return cugraph::sorensen_all_pairs_coefficients(
handle, graph_view, edge_weight_view, vertices, true, topk);
handle, graph_view, edge_weight_view, vertices, topk);
}
};

Expand Down Expand Up @@ -141,10 +141,10 @@ struct test_overlap_t {
std::optional<edge_property_view_t<edge_t, weight_t const*>> edge_weight_view,
std::optional<raft::device_span<vertex_t const>> vertices,
bool use_weights,
size_t topk) const
std::optional<size_t> topk) const
{
return cugraph::overlap_all_pairs_coefficients(
handle, graph_view, edge_weight_view, vertices, true, topk);
handle, graph_view, edge_weight_view, vertices, topk);
}
};

Expand Down

0 comments on commit 32b409c

Please sign in to comment.