diff options
author | David Shah <davey1576@gmail.com> | 2019-03-25 16:24:02 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-25 16:24:02 +0000 |
commit | c67b8259bb8b31ba3f6aa30c431fef222e5f2f65 (patch) | |
tree | 6f427acacd9545150ad82465dda0e6c3d130c1e2 /docs/archapi.md | |
parent | 0d064c05f91b548638530e6e159ca9f8aa0fa352 (diff) | |
parent | 25e3350675c091c2fb54e51c9fcb7e79bbe6e279 (diff) | |
download | nextpnr-c67b8259bb8b31ba3f6aa30c431fef222e5f2f65.tar.gz nextpnr-c67b8259bb8b31ba3f6aa30c431fef222e5f2f65.tar.bz2 nextpnr-c67b8259bb8b31ba3f6aa30c431fef222e5f2f65.zip |
Merge pull request #219 from daveshah1/placer_heap
HeAP-based analytical placer
Diffstat (limited to 'docs/archapi.md')
-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 |