Skip to content

Commit fefa645

Browse files
committed
Merge branch 'router_rcv_2.0' of https://github.com/verilog-to-routing/vtr-verilog-to-routing into router_rcv_2.0
2 parents 91e1e5a + bca68ab commit fefa645

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

vpr/src/route/heap_type.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ void HeapStorage::free_all_memory() {
4747
while (curr) {
4848
t_heap* tmp = curr;
4949
curr = curr->next_heap_item();
50-
50+
5151
vtr::chunk_delete(tmp, &heap_ch_);
5252
}
5353

vpr/src/route/route_budgets.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -711,7 +711,6 @@ bool route_budgets::increase_min_budgets_if_struggling(float delay_increment, st
711711
// Check if it's within a PERCENTAGE_CHANGE_THRESHOLD% difference
712712
float d_slack = negative_hold_slacks.back() - negative_hold_slacks.front();
713713
if (std::abs(d_slack) < std::abs(negative_hold_slacks.front() * PERCENT_CHANGE_THRESHOLD) && negative_hold_slacks.front() != 0) {
714-
715714
/*Increase the budgets by a delay increment when the congested times is high enough*/
716715
for (auto net_id : cluster_ctx.clb_nlist.nets()) {
717716
for (auto pin_id : cluster_ctx.clb_nlist.net_sinks(net_id)) {

vpr/src/route/route_path_manager.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,4 +132,4 @@ void PathManager::move(t_heap_path*& dest, t_heap_path*& src) {
132132

133133
// Invalidate the source pointer to ensure it isn't double 'freed'
134134
src = nullptr;
135-
}
135+
}

0 commit comments

Comments
 (0)