Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

mpl: RIP TritonMacroPlace (mpl) #6047

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
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
5 changes: 0 additions & 5 deletions include/ord/Design.h
Original file line number Diff line number Diff line change
Expand Up @@ -79,10 +79,6 @@ namespace dpl {
class Opendp;
}

namespace mpl {
class MacroPlacer;
}

namespace mpl2 {
class MacroPlacer2;
}
Expand Down Expand Up @@ -202,7 +198,6 @@ class Design
gpl::Replace* getReplace();
grt::GlobalRouter* getGlobalRouter();
ifp::InitFloorplan getFloorplan();
mpl::MacroPlacer* getMacroPlacer();
mpl2::MacroPlacer2* getMacroPlacer2();
odb::dbDatabase* getDb();
pad::ICeWall* getICeWall();
Expand Down
6 changes: 0 additions & 6 deletions include/ord/OpenRoad.hh
Original file line number Diff line number Diff line change
Expand Up @@ -95,10 +95,6 @@ namespace fin {
class Finale;
}

namespace mpl {
class MacroPlacer;
}

namespace mpl2 {
class MacroPlacer2;
}
Expand Down Expand Up @@ -181,7 +177,6 @@ class OpenRoad
dpo::Optdp* getOptdp() { return optdp_; }
fin::Finale* getFinale() { return finale_; }
tap::Tapcell* getTapcell() { return tapcell_; }
mpl::MacroPlacer* getMacroPlacer() { return macro_placer_; }
mpl2::MacroPlacer2* getMacroPlacer2() { return macro_placer2_; }
rcx::Ext* getOpenRCX() { return extractor_; }
drt::TritonRoute* getTritonRoute() { return detailed_router_; }
Expand Down Expand Up @@ -273,7 +268,6 @@ class OpenRoad
dpl::Opendp* opendp_ = nullptr;
dpo::Optdp* optdp_ = nullptr;
fin::Finale* finale_ = nullptr;
mpl::MacroPlacer* macro_placer_ = nullptr;
mpl2::MacroPlacer2* macro_placer2_ = nullptr;
grt::GlobalRouter* global_router_ = nullptr;
rmp::Restructure* restructure_ = nullptr;
Expand Down
3 changes: 0 additions & 3 deletions src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,6 @@ add_subdirectory(rmp)
add_subdirectory(cts)
add_subdirectory(grt)
add_subdirectory(tap)
add_subdirectory(mpl)
add_subdirectory(rcx)
add_subdirectory(psm)
add_subdirectory(ant)
Expand Down Expand Up @@ -362,7 +361,6 @@ target_link_libraries(openroad
gui
drt
dst
mpl
psm
ant
upf
Expand Down Expand Up @@ -433,7 +431,6 @@ if (Python3_FOUND AND BUILD_PYTHON)
grt_py
gpl_py
dpl_py
mpl_py
ppl_py
tap_py
cts_py
Expand Down
5 changes: 0 additions & 5 deletions src/Design.cc
Original file line number Diff line number Diff line change
Expand Up @@ -283,11 +283,6 @@ mpl2::MacroPlacer2* Design::getMacroPlacer2()
return getOpenRoad()->getMacroPlacer2();
}

mpl::MacroPlacer* Design::getMacroPlacer()
{
return getOpenRoad()->getMacroPlacer();
}

ppl::IOPlacer* Design::getIOPlacer()
{
return getOpenRoad()->getIOPlacer();
Expand Down
1 change: 0 additions & 1 deletion src/Main.cc
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,6 @@ using std::string;
X(grt) \
X(gpl) \
X(dpl) \
X(mpl) \
X(ppl) \
X(tap) \
X(cts) \
Expand Down
4 changes: 0 additions & 4 deletions src/OpenRoad.cc
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,6 @@
#include "grt/MakeGlobalRouter.h"
#include "gui/MakeGui.h"
#include "ifp//MakeInitFloorplan.hh"
#include "mpl/MakeMacroPlacer.h"
#include "mpl2/MakeMacroPlacer.h"
#include "odb/cdl.h"
#include "odb/db.h"
Expand Down Expand Up @@ -136,7 +135,6 @@ OpenRoad::~OpenRoad()
deleteRestructure(restructure_);
deleteTritonCts(tritonCts_);
deleteTapcell(tapcell_);
deleteMacroPlacer(macro_placer_);
deleteMacroPlacer2(macro_placer2_);
deleteOpenRCX(extractor_);
deleteTritonRoute(detailed_router_);
Expand Down Expand Up @@ -199,7 +197,6 @@ void OpenRoad::init(Tcl_Interp* tcl_interp)
restructure_ = makeRestructure();
tritonCts_ = makeTritonCts();
tapcell_ = makeTapcell();
macro_placer_ = makeMacroPlacer();
macro_placer2_ = makeMacroPlacer2();
extractor_ = makeOpenRCX();
detailed_router_ = makeTritonRoute();
Expand Down Expand Up @@ -235,7 +232,6 @@ void OpenRoad::init(Tcl_Interp* tcl_interp)
initGlobalRouter(this);
initTritonCts(this);
initTapcell(this);
initMacroPlacer(this);
initMacroPlacer2(this);
initOpenRCX(this);
initICeWall(this);
Expand Down
7 changes: 0 additions & 7 deletions src/OpenRoad.i
Original file line number Diff line number Diff line change
Expand Up @@ -133,13 +133,6 @@ getTritonCts()
return openroad->getTritonCts();
}

mpl::MacroPlacer *
getMacroPlacer()
{
OpenRoad *openroad = getOpenRoad();
return openroad->getMacroPlacer();
}

mpl2::MacroPlacer2 *
getMacroPlacer2()
{
Expand Down
1 change: 0 additions & 1 deletion src/drt/test/stubs.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@ OpenRoad::OpenRoad()
opendp_(nullptr),
optdp_(nullptr),
finale_(nullptr),
macro_placer_(nullptr),
macro_placer2_(nullptr),
global_router_(nullptr),
restructure_(nullptr),
Expand Down
1 change: 0 additions & 1 deletion src/dst/test/cpp/stubs.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ OpenRoad::OpenRoad()
opendp_(nullptr),
optdp_(nullptr),
finale_(nullptr),
macro_placer_(nullptr),
macro_placer2_(nullptr),
global_router_(nullptr),
restructure_(nullptr),
Expand Down
4 changes: 0 additions & 4 deletions src/mpl/.gitignore

This file was deleted.

91 changes: 0 additions & 91 deletions src/mpl/CMakeLists.txt

This file was deleted.

29 changes: 0 additions & 29 deletions src/mpl/LICENSE

This file was deleted.

87 changes: 0 additions & 87 deletions src/mpl/README.md

This file was deleted.

Loading
Loading