Skip to content

Commit 7ec5867

Browse files
committed
Merge branch 'master' of https://github.com/The-OpenROAD-Project/OpenROAD into est_via_res
2 parents fa9837c + 47eb956 commit 7ec5867

File tree

4 files changed

+8
-10
lines changed

4 files changed

+8
-10
lines changed

src/gpl/src/nesterovBase.cpp

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2851,9 +2851,8 @@ bool NesterovBase::checkConvergence(int gpl_iter_count,
28512851
return true;
28522852
}
28532853
if (sum_overflow_unscaled_ <= npVars_->targetOverflow) {
2854-
const bool is_power_domain = pb_->group();
2855-
const std::string group_name
2856-
= is_power_domain ? pb_->group()->getName() : "";
2854+
const bool has_group = pb_->group();
2855+
const std::string group_name = has_group ? pb_->group()->getName() : "";
28572856
const int final_iter = gpl_iter_count;
28582857
dbBlock* block = pb_->db()->getChip()->getBlock();
28592858

@@ -2867,10 +2866,10 @@ bool NesterovBase::checkConvergence(int gpl_iter_count,
28672866
log_->report(
28682867
"---------------------------------------------------------------");
28692868

2870-
if (is_power_domain) {
2869+
if (has_group) {
28712870
log_->info(GPL,
28722871
1016,
2873-
"Power domain '{}' placement finished at iteration {}",
2872+
"Region '{}' placement finished at iteration {}",
28742873
group_name,
28752874
final_iter);
28762875
} else {

src/gpl/src/placerBase.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ using odb::dbITerm;
2828
using odb::dbMPin;
2929
using odb::dbNet;
3030
using odb::dbPlacementStatus;
31-
using odb::dbPowerDomain;
3231
using odb::dbRow;
3332
using odb::dbSet;
3433
using odb::dbSigType;

test/upf_aes.ok

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ Iteration | Overflow | HPWL (um) | HPWL(%) | Penalty | Group
219219
430 | 0.1411 | 1.835169e+06 | +0.43% | 3.30e-07 | (PD_AES_2)
220220
436 | 0.0989 | 1.838610e+06 | | 6.14e-07 | PD_AES_1
221221
---------------------------------------------------------------
222-
[INFO GPL-1016] Power domain 'PD_AES_1' placement finished at iteration 436
222+
[INFO GPL-1016] Region 'PD_AES_1' placement finished at iteration 436
223223
[INFO GPL-1002] Placed Cell Area 121017.3152
224224
[INFO GPL-1003] Available Free Area 150144.0000
225225
[INFO GPL-1004] Minimum Feasible Density 0.8100 (cell_area / free_area)
@@ -234,7 +234,7 @@ Iteration | Overflow | HPWL (um) | HPWL(%) | Penalty | Group
234234
460 | 0.1035 | 1.850758e+06 | +0.24% | 5.78e-07 | (PD_AES_2)
235235
465 | 0.0996 | 1.852840e+06 | | 6.46e-07 | PD_AES_2
236236
---------------------------------------------------------------
237-
[INFO GPL-1016] Power domain 'PD_AES_2' placement finished at iteration 465
237+
[INFO GPL-1016] Region 'PD_AES_2' placement finished at iteration 465
238238
[INFO GPL-1002] Placed Cell Area 121017.3152
239239
[INFO GPL-1003] Available Free Area 150144.0000
240240
[INFO GPL-1004] Minimum Feasible Density 0.8100 (cell_area / free_area)

test/upf_test.ok

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,7 @@ Iteration | Overflow | HPWL (um) | HPWL(%) | Penalty | Group
266266
830 | 0.1762 | 7.298180e+02 | +4.65% | 4.73e-06 | (PD_D2)
267267
837 | 0.0901 | 7.572950e+02 | | 5.49e-06 | PD_D2
268268
---------------------------------------------------------------
269-
[INFO GPL-1016] Power domain 'PD_D2' placement finished at iteration 837
269+
[INFO GPL-1016] Region 'PD_D2' placement finished at iteration 837
270270
[INFO GPL-1002] Placed Cell Area 43.7920
271271
[INFO GPL-1003] Available Free Area 900.8640
272272
[INFO GPL-1004] Minimum Feasible Density 0.0500 (cell_area / free_area)
@@ -283,7 +283,7 @@ Iteration | Overflow | HPWL (um) | HPWL(%) | Penalty | Group
283283
900 | 0.0658 | 9.887790e+02 | +8.10% | 1.32e-05 | (PD_D1)
284284
900 | 0.0658 | 9.887790e+02 | | 1.34e-05 | PD_D1
285285
---------------------------------------------------------------
286-
[INFO GPL-1016] Power domain 'PD_D1' placement finished at iteration 900
286+
[INFO GPL-1016] Region 'PD_D1' placement finished at iteration 900
287287
[INFO GPL-1002] Placed Cell Area 21.2704
288288
[INFO GPL-1003] Available Free Area 900.8640
289289
[INFO GPL-1004] Minimum Feasible Density 0.0300 (cell_area / free_area)

0 commit comments

Comments
 (0)