Skip to content

Commit 6de1fb3

Browse files
committed
make format
1 parent 66e92f3 commit 6de1fb3

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

vpr/src/route/route_parallel.cpp

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@
3535
# include "tbb/task_group.h"
3636
# include "tbb/global_control.h"
3737

38-
3938
/** route_net and similar functions need many bits of state collected from various
4039
* parts of VPR, collect them here for ease of use */
4140
template<typename ConnectionRouter>
@@ -885,9 +884,9 @@ NetResultFlags try_parallel_route_net(ConnectionRouter& router,
885884
/* Helper for route_partition_tree(). */
886885
template<typename ConnectionRouter>
887886
void route_partition_tree_helper(tbb::task_group& g,
888-
PartitionTreeNode& node,
889-
RouteIterCtx<ConnectionRouter>& ctx,
890-
vtr::linear_map<ParentNetId, int>& nets_to_retry) {
887+
PartitionTreeNode& node,
888+
RouteIterCtx<ConnectionRouter>& ctx,
889+
vtr::linear_map<ParentNetId, int>& nets_to_retry) {
891890
/* Sort so net with most sinks is routed first. */
892891
std::sort(node.nets.begin(), node.nets.end(), [&](const ParentNetId id1, const ParentNetId id2) -> bool {
893892
return ctx.net_list.net_sinks(id1).size() > ctx.net_list.net_sinks(id2).size();

vpr/src/route/route_timing.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,6 @@ static NetResultFlags timing_driven_route_sink(ConnectionRouter& router,
102102
const std::vector<std::unordered_map<RRNodeId, int>>& choking_spots,
103103
bool is_flat);
104104

105-
106105
/** Return tuple of:
107106
* bool: Did we find a path for each sink in this net?
108107
* bool: Should the caller retry with a full-device bounding box? */

0 commit comments

Comments
 (0)