Skip to content

Commit 972756c

Browse files
committed
dpl: ignore padding with core edge
Signed-off-by: Eder Monteiro <[email protected]>
1 parent 4396869 commit 972756c

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

src/dpl/src/PlacementDRC.cpp

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -302,12 +302,6 @@ bool PlacementDRC::checkPadding(const Node* cell,
302302
for (GridY grid_y{y}; grid_y < cell_y_end; grid_y++) {
303303
const Pixel* pixel = grid_->gridPixel(grid_x, grid_y);
304304
if (pixel == nullptr) { // at the core edge
305-
const bool left_edge = x == 0;
306-
const bool right_edge = cell_x_end == grid_->getRowSiteCount();
307-
if (!cell->isFixed() && !left_edge && !right_edge) {
308-
// Padding violation with the core edge.
309-
return false;
310-
}
311305
continue;
312306
}
313307
if (hasPaddingConflict(cell, pixel->cell)) {

0 commit comments

Comments
 (0)