Skip to content

Commit 6bceb70

Browse files
committed
fix clang-format issues
1 parent 51f0427 commit 6bceb70

File tree

2 files changed

+9
-10
lines changed

2 files changed

+9
-10
lines changed

cpp/src/c_api/graph_functions.cpp

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,8 +121,9 @@ struct two_hop_neighbors_functor : public cugraph::c_api::abstract_functor {
121121
if (error_code_ != CUGRAPH_SUCCESS) return;
122122
}
123123

124-
auto graph = reinterpret_cast<
125-
cugraph::graph_t<vertex_t, edge_t, weight_t, false, multi_gpu>*>(graph_->graph_);
124+
auto graph =
125+
reinterpret_cast<cugraph::graph_t<vertex_t, edge_t, weight_t, false, multi_gpu>*>(
126+
graph_->graph_);
126127

127128
auto graph_view = graph->view();
128129
auto number_map = reinterpret_cast<rmm::device_uvector<vertex_t>*>(graph_->number_map_);

cpp/src/c_api/graph_helper.cu

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -42,15 +42,13 @@ template rmm::device_uvector<int64_t> expand_sparse_offsets(
4242
int64_t base_vertex_id,
4343
rmm::cuda_stream_view const& stream);
4444

45-
template rmm::device_uvector<int32_t> expand_sparse_offsets(
46-
raft::device_span<size_t const> offsets,
47-
int32_t base_vertex_id,
48-
rmm::cuda_stream_view const& stream);
45+
template rmm::device_uvector<int32_t> expand_sparse_offsets(raft::device_span<size_t const> offsets,
46+
int32_t base_vertex_id,
47+
rmm::cuda_stream_view const& stream);
4948

50-
template rmm::device_uvector<int64_t> expand_sparse_offsets(
51-
raft::device_span<size_t const> offsets,
52-
int64_t base_vertex_id,
53-
rmm::cuda_stream_view const& stream);
49+
template rmm::device_uvector<int64_t> expand_sparse_offsets(raft::device_span<size_t const> offsets,
50+
int64_t base_vertex_id,
51+
rmm::cuda_stream_view const& stream);
5452

5553
} // namespace c_api
5654
} // namespace cugraph

0 commit comments

Comments
 (0)