diff options
author | David Shah <dave@ds0.me> | 2019-03-24 11:10:20 +0000 |
---|---|---|
committer | David Shah <dave@ds0.me> | 2019-03-24 11:10:20 +0000 |
commit | 02ae21d8fc3bc1375848f40702cd4bb7f6700595 (patch) | |
tree | db9e1fc5f4329285c9c5c5a5eb1c615418530138 /docs | |
parent | 52e05f4a0706b1c108221e600ff11e654f6e85a5 (diff) | |
download | nextpnr-02ae21d8fc3bc1375848f40702cd4bb7f6700595.tar.gz nextpnr-02ae21d8fc3bc1375848f40702cd4bb7f6700595.tar.bz2 nextpnr-02ae21d8fc3bc1375848f40702cd4bb7f6700595.zip |
Add --placer option and refactor placer selection
Signed-off-by: David Shah <dave@ds0.me>
Diffstat (limited to 'docs')
-rw-r--r-- | docs/archapi.md | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/docs/archapi.md b/docs/archapi.md index 3c938865..6e59ecdb 100644 --- a/docs/archapi.md +++ b/docs/archapi.md @@ -490,3 +490,14 @@ a certain number of different clock signals allowed for a group of bels. Returns true if a bell in the current configuration is valid, i.e. if `isValidBelForCell()` would return true for the current mapping. + + +### static const std::string defaultPlacer + +Name of the default placement algorithm for the architecture, if +`--placer` isn't specified on the command line. + +### static const std::vector\<std::string\> availablePlacers + +Name of available placer algorithms for the architecture, used +to provide help for and validate `--placer`.
\ No newline at end of file |