cmake: Make HeAP placer always-enabled

Signed-off-by: gatecat <[email protected]>
This commit is contained in:
gatecat
2023-03-17 10:38:11 +01:00
committed by myrtle
parent 4111cc25d6
commit e4fcd3740d
12 changed files with 12 additions and 102 deletions
+1 -10
View File
@@ -1122,18 +1122,9 @@ bool Arch::getClusterPlacement(ClusterId cluster, BelId root_bel,
// -----------------------------------------------------------------------
#ifdef WITH_HEAP
const std::string Arch::defaultPlacer = "heap";
#else
const std::string Arch::defaultPlacer = "sa";
#endif
const std::vector<std::string> Arch::availablePlacers = {"sa",
#ifdef WITH_HEAP
"heap"
#endif
};
const std::vector<std::string> Arch::availablePlacers = {"sa", "heap"};
const std::string Arch::defaultRouter = "router2";
const std::vector<std::string> Arch::availableRouters = {"router1", "router2"};