Skip to content

Commit

Permalink
pre-commit fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
acostadon committed May 21, 2024
1 parent 73ab098 commit e56f91a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -78,4 +78,4 @@ rmm::device_uvector<result_t> personalization_values(number_of_personalization_v
cugraph::pagerank(handle, graph_view, nullptr, personalization_vertices.data(),
personalization_values.data(), number_of_personalization_vertices,
pageranks_v.data(), alpha, epsilon);
```
```
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,4 @@ Following parameters can be used to tune the performance of algorithm:
}
```

The paper is available online on [ScienceDirect](https://www.sciencedirect.com/science/article/abs/pii/S016781911630045X).
The paper is available online on [ScienceDirect](https://www.sciencedirect.com/science/article/abs/pii/S016781911630045X).
Original file line number Diff line number Diff line change
Expand Up @@ -53,4 +53,4 @@ rmm::device_uvector<weight_t> distances_v(graph_view.number_of_vertices(), handl
rmm::device_uvector<vertex_t> predecessors_v(graph_view.number_of_vertices(), handle.get_stream());
cugraph::bfs(handle, graph_view, d_distances.begin(), d_predecessors.begin(), source, false, std::numeric_limits<vertex_t>::max(), false);
```
```

0 comments on commit e56f91a

Please sign in to comment.