Skip to content

Commit c4bf667

Browse files
committed
dpl: Abacus: Make -abacus option to the detailed_placement command
Signed-off-by: minjae <[email protected]>
1 parent 9be86dc commit c4bf667

File tree

5 files changed

+43
-25
lines changed

5 files changed

+43
-25
lines changed

src/dpl/include/dpl/Opendp.h

+4-3
Original file line numberDiff line numberDiff line change
@@ -341,8 +341,9 @@ class Opendp
341341
// max_displacment is in sites. use zero for defaults.
342342
void detailedPlacement(int max_displacement_x,
343343
int max_displacement_y,
344-
const std::string& report_file_name = std::string(""),
345-
bool disallow_one_site_gaps = false);
344+
const std::string& report_file_name,
345+
bool disallow_one_site_gaps,
346+
bool abacus=false);
346347
void reportLegalizationStats() const;
347348

348349
void setPaddingGlobal(int left, int right);
@@ -371,7 +372,7 @@ class Opendp
371372
void fillerPlacement(dbMasterSeq* filler_masters, const char* prefix);
372373
void removeFillers();
373374
void optimizeMirroring();
374-
void runAbacus() { abacusLegalizer_.runAbacus(db_->getChip()->getBlock()); }
375+
void runAbacus();
375376

376377
private:
377378
friend class OpendpTest_IsPlaced_Test;

src/dpl/src/AbacusLegalizer.cpp

+5
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,11 @@
4646

4747
namespace dpl {
4848

49+
void Opendp::runAbacus()
50+
{
51+
abacusLegalizer_.runAbacus(db_->getChip()->getBlock());
52+
}
53+
4954
// clang-format off
5055
/**
5156
* @brief Algorithm 1: Modified Abacus Legalization Approach

src/dpl/src/Opendp.cpp

+22-17
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,8 @@ void Opendp::setDebug(std::unique_ptr<DplObserver>& observer)
139139
void Opendp::detailedPlacement(int max_displacement_x,
140140
int max_displacement_y,
141141
const std::string& report_file_name,
142-
bool disallow_one_site_gaps)
142+
bool disallow_one_site_gaps,
143+
bool abacus)
143144
{
144145
importDb();
145146

@@ -168,24 +169,28 @@ void Opendp::detailedPlacement(int max_displacement_x,
168169
}
169170
odb::WireLengthEvaluator eval(block_);
170171
hpwl_before_ = eval.hpwl();
171-
detailedPlacement();
172-
// Save displacement stats before updating instance DB locations.
173-
findDisplacementStats();
174-
updateDbInstLocations();
175-
if (!placement_failures_.empty()) {
176-
logger_->info(DPL,
177-
34,
178-
"Detailed placement failed on the following {} instances:",
179-
placement_failures_.size());
180-
for (auto cell : placement_failures_) {
181-
logger_->info(DPL, 35, " {}", cell->name());
182-
}
172+
if (!abacus) {
173+
detailedPlacement();
174+
// Save displacement stats before updating instance DB locations.
175+
findDisplacementStats();
176+
updateDbInstLocations();
177+
if (!placement_failures_.empty()) {
178+
logger_->info(DPL,
179+
34,
180+
"Detailed placement failed on the following {} instances:",
181+
placement_failures_.size());
182+
for (auto cell : placement_failures_) {
183+
logger_->info(DPL, 35, " {}", cell->name());
184+
}
183185

184-
if (!report_file_name.empty()) {
185-
writeJsonReport(
186-
report_file_name, {}, {}, {}, {}, {}, {}, placement_failures_);
186+
if (!report_file_name.empty()) {
187+
writeJsonReport(
188+
report_file_name, {}, {}, {}, {}, {}, {}, placement_failures_);
189+
}
190+
logger_->error(DPL, 36, "Detailed placement failed.");
187191
}
188-
logger_->error(DPL, 36, "Detailed placement failed.");
192+
} else {
193+
runAbacus();
189194
}
190195
}
191196

src/dpl/src/Opendp.i

+3-2
Original file line numberDiff line numberDiff line change
@@ -98,9 +98,10 @@ void
9898
detailed_placement_cmd(int max_displacment_x,
9999
int max_displacment_y,
100100
bool disallow_one_site_gaps,
101-
const char* report_file_name){
101+
const char* report_file_name,
102+
bool abacusRun=false){
102103
dpl::Opendp *opendp = ord::OpenRoad::openRoad()->getOpendp();
103-
opendp->detailedPlacement(max_displacment_x, max_displacment_y, std::string(report_file_name), disallow_one_site_gaps);
104+
opendp->detailedPlacement(max_displacment_x, max_displacment_y, std::string(report_file_name), disallow_one_site_gaps, abacusRun);
104105
}
105106

106107
void

src/dpl/src/Opendp.tcl

+9-3
Original file line numberDiff line numberDiff line change
@@ -32,12 +32,18 @@
3232
## POSSIBILITY OF SUCH DAMAGE.
3333
#############################################################################
3434

35-
sta::define_cmd_args "detailed_placement" {[-max_displacement disp|{disp_x disp_y}] [-disallow_one_site_gaps] [-report_file_name file_name]}
35+
sta::define_cmd_args "detailed_placement" {
36+
[-max_displacement disp|{disp_x disp_y}]
37+
[-disallow_one_site_gaps]
38+
[-report_file_name file_name]
39+
[-abacus]
40+
}
3641

3742
proc detailed_placement { args } {
3843
sta::parse_key_args "detailed_placement" args \
39-
keys {-max_displacement -report_file_name} flags {-disallow_one_site_gaps}
44+
keys {-max_displacement -report_file_name} flags {-disallow_one_site_gaps -abacus}
4045

46+
set abacus [info exists flags(-abacus)]
4147
set disallow_one_site_gaps [info exists flags(-disallow_one_site_gaps)]
4248
if { [info exists keys(-max_displacement)] } {
4349
set max_displacement $keys(-max_displacement)
@@ -71,7 +77,7 @@ set disallow_one_site_gaps [info exists flags(-disallow_one_site_gaps)]
7177
set max_displacement_y [expr [ord::microns_to_dbu $max_displacement_y] \
7278
/ [$site getHeight]]
7379
dpl::detailed_placement_cmd $max_displacement_x $max_displacement_y \
74-
$disallow_one_site_gaps $file_name
80+
$disallow_one_site_gaps $file_name $abacus
7581
dpl::report_legalization_stats
7682
} else {
7783
utl::error "DPL" 27 "no rows defined in design. Use initialize_floorplan to add rows."

0 commit comments

Comments
 (0)