Major performance improvement to placement validity check

Signed-off-by: David Shah <davey1576@gmail.com>
This commit is contained in:
David Shah 2018-06-19 14:44:49 +02:00
parent 786bd6b25a
commit 9008669867
7 changed files with 97 additions and 52 deletions

View File

@ -43,14 +43,15 @@
NEXTPNR_NAMESPACE_BEGIN NEXTPNR_NAMESPACE_BEGIN
// Initial random placement // Initial random placement
static void place_initial(Context *ctx, CellInfo *cell) static void place_initial(Context *ctx, CellInfo *cell,
PlaceValidityChecker *checker)
{ {
bool all_placed = false; bool all_placed = false;
int iters = 25; int iters = 25;
while (!all_placed) { while (!all_placed) {
BelId best_bel = BelId(); BelId best_bel = BelId();
uint64_t best_score = std::numeric_limits<uint64_t>::max(), uint64_t best_score = std::numeric_limits<uint64_t>::max(),
best_ripup_score = std::numeric_limits<uint64_t>::max(); best_ripup_score = std::numeric_limits<uint64_t>::max();
CellInfo *ripup_target = nullptr; CellInfo *ripup_target = nullptr;
BelId ripup_bel = BelId(); BelId ripup_bel = BelId();
if (cell->bel != BelId()) { if (cell->bel != BelId()) {
@ -60,7 +61,7 @@ static void place_initial(Context *ctx, CellInfo *cell)
BelType targetType = ctx->belTypeFromId(cell->type); BelType targetType = ctx->belTypeFromId(cell->type);
for (auto bel : ctx->getBels()) { for (auto bel : ctx->getBels()) {
if (ctx->getBelType(bel) == targetType && if (ctx->getBelType(bel) == targetType &&
isValidBelForCell(ctx, cell, bel)) { checker->isValidBelForCell(cell, bel)) {
if (ctx->checkBelAvail(bel)) { if (ctx->checkBelAvail(bel)) {
uint64_t score = ctx->rng64(); uint64_t score = ctx->rng64();
if (score <= best_score) { if (score <= best_score) {
@ -110,6 +111,7 @@ struct SAState
std::unordered_map<BelType, int> bel_types; std::unordered_map<BelType, int> bel_types;
std::vector<std::vector<std::vector<std::vector<BelId>>>> fast_bels; std::vector<std::vector<std::vector<std::vector<BelId>>>> fast_bels;
std::unordered_set<BelId> locked_bels; std::unordered_set<BelId> locked_bels;
PlaceValidityChecker *checker;
}; };
// Get the total estimated wirelength for a net // Get the total estimated wirelength for a net
@ -146,7 +148,8 @@ static float get_wirelength(Context *ctx, NetInfo *net)
} }
// Attempt a SA position swap, return true on success or false on failure // Attempt a SA position swap, return true on success or false on failure
static bool try_swap_position(Context *ctx, CellInfo *cell, BelId newBel, SAState &state) static bool try_swap_position(Context *ctx, CellInfo *cell, BelId newBel,
SAState &state)
{ {
static std::unordered_set<NetInfo *> update; static std::unordered_set<NetInfo *> update;
static std::vector<std::pair<NetInfo *, float>> new_lengths; static std::vector<std::pair<NetInfo *, float>> new_lengths;
@ -178,8 +181,8 @@ static bool try_swap_position(Context *ctx, CellInfo *cell, BelId newBel, SAStat
ctx->bindBel(oldBel, other_cell->name); ctx->bindBel(oldBel, other_cell->name);
} }
if (!isBelLocationValid(ctx, newBel) || if (!state.checker->isBelLocationValid(newBel) ||
((other != IdString() && !isBelLocationValid(ctx, oldBel)))) { ((other != IdString() && !state.checker->isBelLocationValid(oldBel)))) {
ctx->unbindBel(newBel); ctx->unbindBel(newBel);
if (other != IdString()) if (other != IdString())
ctx->unbindBel(oldBel); ctx->unbindBel(oldBel);
@ -204,7 +207,7 @@ static bool try_swap_position(Context *ctx, CellInfo *cell, BelId newBel, SAStat
// SA acceptance criterea // SA acceptance criterea
if (delta < 0 || if (delta < 0 ||
(state.temp > 1e-6 && (state.temp > 1e-6 &&
(ctx->rng() / float(0x3fffffff)) <= std::exp(-delta / state.temp))) { (ctx->rng() / float(0x3fffffff)) <= std::exp(-delta / state.temp))) {
state.n_accept++; state.n_accept++;
if (delta < 0) if (delta < 0)
state.improved = true; state.improved = true;
@ -237,8 +240,10 @@ BelId random_bel_for_cell(Context *ctx, CellInfo *cell, SAState &state)
int x = 0, y = 0; int x = 0, y = 0;
ctx->estimatePosition(cell->bel, x, y); ctx->estimatePosition(cell->bel, x, y);
while (true) { while (true) {
int nx = ctx->rng(2 * state.diameter + 1) + std::max(x - state.diameter, 0); int nx = ctx->rng(2 * state.diameter + 1) +
int ny = ctx->rng(2 * state.diameter + 1) + std::max(y - state.diameter, 0); std::max(x - state.diameter, 0);
int ny = ctx->rng(2 * state.diameter + 1) +
std::max(y - state.diameter, 0);
int beltype_idx = state.bel_types.at(targetType); int beltype_idx = state.bel_types.at(targetType);
if (nx >= int(state.fast_bels.at(beltype_idx).size())) if (nx >= int(state.fast_bels.at(beltype_idx).size()))
continue; continue;
@ -257,7 +262,7 @@ BelId random_bel_for_cell(Context *ctx, CellInfo *cell, SAState &state)
void place_design_sa(Context *ctx) void place_design_sa(Context *ctx)
{ {
SAState state; SAState state;
state.checker = new PlaceValidityChecker(ctx);
size_t placed_cells = 0; size_t placed_cells = 0;
std::queue<CellInfo *> visit_cells; std::queue<CellInfo *> visit_cells;
// Initial constraints placer // Initial constraints placer
@ -302,7 +307,7 @@ void place_design_sa(Context *ctx)
[](CellInfo *a, CellInfo *b) { return a->name < b->name; }); [](CellInfo *a, CellInfo *b) { return a->name < b->name; });
// Place cells randomly initially // Place cells randomly initially
for (auto cell : autoplaced) { for (auto cell : autoplaced) {
place_initial(ctx, cell); place_initial(ctx, cell, state.checker);
placed_cells++; placed_cells++;
} }
// Build up a fast position/type to Bel lookup table // Build up a fast position/type to Bel lookup table
@ -400,7 +405,7 @@ void place_design_sa(Context *ctx)
} }
} }
for (auto bel : ctx->getBels()) { for (auto bel : ctx->getBels()) {
if (!isBelLocationValid(ctx, bel)) { if (!state.checker->isBelLocationValid(bel)) {
std::string cell_text = "no cell"; std::string cell_text = "no cell";
IdString cell = ctx->getBelCell(bel, false); IdString cell = ctx->getBelCell(bel, false);
if (cell != IdString()) if (cell != IdString())
@ -409,6 +414,7 @@ void place_design_sa(Context *ctx)
ctx->getBelName(bel).c_str(ctx), cell_text.c_str()); ctx->getBelName(bel).c_str(ctx), cell_text.c_str());
} }
} }
delete state.checker;
} }
NEXTPNR_NAMESPACE_END NEXTPNR_NAMESPACE_END

View File

@ -21,8 +21,13 @@
NEXTPNR_NAMESPACE_BEGIN NEXTPNR_NAMESPACE_BEGIN
bool isValidBelForCell(Context *ctx, CellInfo *cell, BelId bel) { return true; } PlaceValidityChecker::PlaceValidityChecker(Context *ctx) {}
bool isBelLocationValid(Context *ctx, BelId bel) { return true; } bool PlaceValidityChecker::isValidBelForCell(CellInfo *cell, BelId bel)
{
return true;
}
bool PlaceValidityChecker::isBelLocationValid(BelId bel) { return true; }
NEXTPNR_NAMESPACE_END NEXTPNR_NAMESPACE_END

View File

@ -26,13 +26,19 @@ NEXTPNR_NAMESPACE_BEGIN
// Architecure-specific placement functions // Architecure-specific placement functions
// Whether or not a given cell can be placed at a given Bel class PlaceValidityChecker
// This is not intended for Bel type checks, but finer-grained constraints {
// such as conflicting set/reset signals, etc public:
bool isValidBelForCell(Context *ctx, CellInfo *cell, BelId bel); PlaceValidityChecker(Context *ctx);
// Return true whether all Bels at a given location are valid // Whether or not a given cell can be placed at a given Bel
bool isBelLocationValid(Context *ctx, BelId bel); // This is not intended for Bel type checks, but finer-grained constraints
// such as conflicting set/reset signals, etc
bool isValidBelForCell(CellInfo *cell, BelId bel);
// Return true whether all Bels at a given location are valid
bool isBelLocationValid(BelId bel);
};
NEXTPNR_NAMESPACE_END NEXTPNR_NAMESPACE_END

View File

@ -279,8 +279,12 @@ template <> struct hash<NEXTPNR_NAMESPACE_PREFIX PipId>
} }
}; };
template <> struct hash<NEXTPNR_NAMESPACE_PREFIX BelType> : hash<int> {}; template <> struct hash<NEXTPNR_NAMESPACE_PREFIX BelType> : hash<int>
template <> struct hash<NEXTPNR_NAMESPACE_PREFIX PortPin> : hash<int> {}; {
};
template <> struct hash<NEXTPNR_NAMESPACE_PREFIX PortPin> : hash<int>
{
};
} // namespace std } // namespace std
NEXTPNR_NAMESPACE_BEGIN NEXTPNR_NAMESPACE_BEGIN

View File

@ -24,6 +24,15 @@
NEXTPNR_NAMESPACE_BEGIN NEXTPNR_NAMESPACE_BEGIN
PlaceValidityChecker::PlaceValidityChecker(Context *ctx)
: ctx(ctx), id_icestorm_lc(ctx, "ICESTORM_LC"), id_sb_io(ctx, "SB_IO"),
id_sb_gb(ctx, "SB_GB"), id_cen(ctx, "CEN"), id_clk(ctx, "CLK"),
id_sr(ctx, "SR"), id_i0(ctx, "I0"), id_i1(ctx, "I1"),
id_i2(ctx, "I2"), id_i3(ctx, "I3"), id_dff_en(ctx, "DFF_ENABLE"),
id_neg_clk(ctx, "NEG_CLK")
{
}
static const NetInfo *get_net_or_empty(const CellInfo *cell, static const NetInfo *get_net_or_empty(const CellInfo *cell,
const IdString port) const IdString port)
{ {
@ -34,20 +43,20 @@ static const NetInfo *get_net_or_empty(const CellInfo *cell,
return nullptr; return nullptr;
}; };
static bool logicCellsCompatible(const Context *ctx, bool PlaceValidityChecker::logicCellsCompatible(
const std::vector<const CellInfo *> &cells) const Context *ctx, const std::vector<const CellInfo *> &cells)
{ {
bool dffs_exist = false, dffs_neg = false; bool dffs_exist = false, dffs_neg = false;
const NetInfo *cen = nullptr, *clk = nullptr, *sr = nullptr; const NetInfo *cen = nullptr, *clk = nullptr, *sr = nullptr;
int locals_count = 0; int locals_count = 0;
for (auto cell : cells) { for (auto cell : cells) {
if (bool_or_default(cell->params, "DFF_ENABLE")) { if (bool_or_default(cell->params, id_dff_en)) {
if (!dffs_exist) { if (!dffs_exist) {
dffs_exist = true; dffs_exist = true;
cen = get_net_or_empty(cell, "CEN"); cen = get_net_or_empty(cell, id_cen);
clk = get_net_or_empty(cell, "CLK"); clk = get_net_or_empty(cell, id_clk);
sr = get_net_or_empty(cell, "SR"); sr = get_net_or_empty(cell, id_sr);
if (!is_global_net(ctx, cen) && cen != nullptr) if (!is_global_net(ctx, cen) && cen != nullptr)
locals_count++; locals_count++;
@ -56,25 +65,25 @@ static bool logicCellsCompatible(const Context *ctx,
if (!is_global_net(ctx, sr) && sr != nullptr) if (!is_global_net(ctx, sr) && sr != nullptr)
locals_count++; locals_count++;
if (bool_or_default(cell->params, "NEG_CLK")) { if (bool_or_default(cell->params, id_neg_clk)) {
dffs_neg = true; dffs_neg = true;
} }
} else { } else {
if (cen != get_net_or_empty(cell, "CEN")) if (cen != get_net_or_empty(cell, id_cen))
return false; return false;
if (clk != get_net_or_empty(cell, "CLK")) if (clk != get_net_or_empty(cell, id_clk))
return false; return false;
if (sr != get_net_or_empty(cell, "SR")) if (sr != get_net_or_empty(cell, id_sr))
return false; return false;
if (dffs_neg != bool_or_default(cell->params, "NEG_CLK")) if (dffs_neg != bool_or_default(cell->params, id_neg_clk))
return false; return false;
} }
} }
const NetInfo *i0 = get_net_or_empty(cell, "I0"), const NetInfo *i0 = get_net_or_empty(cell, id_i0),
*i1 = get_net_or_empty(cell, "I1"), *i1 = get_net_or_empty(cell, id_i1),
*i2 = get_net_or_empty(cell, "I2"), *i2 = get_net_or_empty(cell, id_i2),
*i3 = get_net_or_empty(cell, "I3"); *i3 = get_net_or_empty(cell, id_i3);
if (i0 != nullptr) if (i0 != nullptr)
locals_count++; locals_count++;
if (i1 != nullptr) if (i1 != nullptr)
@ -88,7 +97,7 @@ static bool logicCellsCompatible(const Context *ctx,
return locals_count <= 32; return locals_count <= 32;
} }
bool isBelLocationValid(Context *ctx, BelId bel) bool PlaceValidityChecker::isBelLocationValid(BelId bel)
{ {
if (ctx->getBelType(bel) == TYPE_ICESTORM_LC) { if (ctx->getBelType(bel) == TYPE_ICESTORM_LC) {
std::vector<const CellInfo *> cells; std::vector<const CellInfo *> cells;
@ -105,13 +114,13 @@ bool isBelLocationValid(Context *ctx, BelId bel)
if (cellId == IdString()) if (cellId == IdString())
return true; return true;
else else
return isValidBelForCell(ctx, ctx->cells.at(cellId), bel); return isValidBelForCell(ctx->cells.at(cellId), bel);
} }
} }
bool isValidBelForCell(Context *ctx, CellInfo *cell, BelId bel) bool PlaceValidityChecker::isValidBelForCell(CellInfo *cell, BelId bel)
{ {
if (cell->type == "ICESTORM_LC") { if (cell->type == id_icestorm_lc) {
assert(ctx->getBelType(bel) == TYPE_ICESTORM_LC); assert(ctx->getBelType(bel) == TYPE_ICESTORM_LC);
std::vector<const CellInfo *> cells; std::vector<const CellInfo *> cells;
@ -126,9 +135,9 @@ bool isValidBelForCell(Context *ctx, CellInfo *cell, BelId bel)
cells.push_back(cell); cells.push_back(cell);
return logicCellsCompatible(ctx, cells); return logicCellsCompatible(ctx, cells);
} else if (cell->type == "SB_IO") { } else if (cell->type == id_sb_io) {
return ctx->getBelPackagePin(bel) != ""; return ctx->getBelPackagePin(bel) != "";
} else if (cell->type == "SB_GB") { } else if (cell->type == id_sb_gb) {
bool is_reset = false, is_cen = false; bool is_reset = false, is_cen = false;
assert(cell->ports.at("GLOBAL_BUFFER_OUTPUT").net != nullptr); assert(cell->ports.at("GLOBAL_BUFFER_OUTPUT").net != nullptr);
for (auto user : cell->ports.at("GLOBAL_BUFFER_OUTPUT").net->users) { for (auto user : cell->ports.at("GLOBAL_BUFFER_OUTPUT").net->users) {

View File

@ -26,13 +26,27 @@
NEXTPNR_NAMESPACE_BEGIN NEXTPNR_NAMESPACE_BEGIN
// Whether or not a given cell can be placed at a given Bel class PlaceValidityChecker
// This is not intended for Bel type checks, but finer-grained constraints {
// such as conflicting set/reset signals, etc public:
bool isValidBelForCell(Context *ctx, CellInfo *cell, BelId bel); PlaceValidityChecker(Context *ctx);
// Whether or not a given cell can be placed at a given Bel
// This is not intended for Bel type checks, but finer-grained constraints
// such as conflicting set/reset signals, etc
bool isValidBelForCell(CellInfo *cell, BelId bel);
// Return true whether all Bels at a given location are valid // Return true whether all Bels at a given location are valid
bool isBelLocationValid(Context *ctx, BelId bel); bool isBelLocationValid(BelId bel);
private:
bool logicCellsCompatible(const Context *ctx,
const std::vector<const CellInfo *> &cells);
IdString id_icestorm_lc, id_sb_io, id_sb_gb;
IdString id_cen, id_clk, id_sr;
IdString id_i0, id_i1, id_i2, id_i3;
IdString id_dff_en, id_neg_clk;
Context *ctx;
};
NEXTPNR_NAMESPACE_END NEXTPNR_NAMESPACE_END

View File

@ -211,9 +211,10 @@ void nxio_to_sb(Context *ctx, CellInfo *nxio, CellInfo *sbio)
replace_port(tbuf, "E", sbio, "OUTPUT_ENABLE"); replace_port(tbuf, "E", sbio, "OUTPUT_ENABLE");
ctx->nets.erase(donet->name); ctx->nets.erase(donet->name);
if (!donet->users.empty()) if (!donet->users.empty())
log_error("unsupported tristate IO pattern for IO buffer '%s', " log_error(
"instantiate SB_IO manually to ensure correct behaviour\n", "unsupported tristate IO pattern for IO buffer '%s', "
nxio->name.c_str(ctx)); "instantiate SB_IO manually to ensure correct behaviour\n",
nxio->name.c_str(ctx));
ctx->cells.erase(tbuf->name); ctx->cells.erase(tbuf->name);
} }
} }