Skip to content

Commit

Permalink
support more type combination
Browse files Browse the repository at this point in the history
  • Loading branch information
jnke2016 committed Mar 13, 2024
1 parent d2d6999 commit 5817b3f
Showing 1 changed file with 4 additions and 10 deletions.
14 changes: 4 additions & 10 deletions cpp/src/community/k_truss_sg.cu
Original file line number Diff line number Diff line change
Expand Up @@ -30,15 +30,9 @@ template std::tuple<rmm::device_uvector<int32_t>, rmm::device_uvector<int32_t>>
bool do_expensive_check);

template std::tuple<rmm::device_uvector<int64_t>, rmm::device_uvector<int64_t>> k_truss(
raft::handle_t const& handle,
graph_view_t<int64_t, int64_t, false, false> const& graph_view,
int32_t k,
bool do_expensive_check);

template std::tuple<rmm::device_uvector<int64_t>, rmm::device_uvector<int64_t>> k_truss(
raft::handle_t const& handle,
graph_view_t<int64_t, int64_t, false, false> const& graph_view,
int64_t k,
bool do_expensive_check);
raft::handle_t const& handle,
graph_view_t<int64_t, int64_t, false, false> const& graph_view,
int64_t k,
bool do_expensive_check);

} // namespace cugraph

0 comments on commit 5817b3f

Please sign in to comment.