Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/dpl/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ add_library(dpl_lib
src/Place.cpp
src/FillerPlacement.cpp
src/OptMirror.cpp
src/AbacusLegalizer.cpp
)

target_link_libraries(dpl_lib
Expand Down
6 changes: 5 additions & 1 deletion src/dpl/include/dpl/Opendp.h
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,8 @@ class GridInfo;
class Padding;
class PixelPt;

class AbacusLegalizer;

template <typename T>
struct TypedCoordinate;

Expand Down Expand Up @@ -133,7 +135,8 @@ class Opendp
void detailedPlacement(int max_displacement_x,
int max_displacement_y,
const std::string& report_file_name = std::string(""),
bool disallow_one_site_gaps = false);
bool disallow_one_site_gaps = false,
bool abacus_run = false);
void reportLegalizationStats() const;

void setPaddingGlobal(int left, int right);
Expand All @@ -154,6 +157,7 @@ class Opendp
void fillerPlacement(dbMasterSeq* filler_masters, const char* prefix);
void removeFillers();
void optimizeMirroring();
void runAbacus();

private:
using bgPoint
Expand Down
Loading