diff options
author | gatecat <gatecat@ds0.me> | 2021-04-15 11:16:31 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-15 11:16:31 +0100 |
commit | 6fbefb8f1388dbb2bfe059624f7cb76ee9a81c5e (patch) | |
tree | 13c01e1186b3e3dde288cb49c8838a40d4a7273b /fpga_interchange | |
parent | 1631cdffb8a5a84d86669a286bdf32c9714d631d (diff) | |
parent | d4aac6586cc463bb14195289b510866ebe5e4092 (diff) | |
download | nextpnr-6fbefb8f1388dbb2bfe059624f7cb76ee9a81c5e.tar.gz nextpnr-6fbefb8f1388dbb2bfe059624f7cb76ee9a81c5e.tar.bz2 nextpnr-6fbefb8f1388dbb2bfe059624f7cb76ee9a81c5e.zip |
Merge pull request #681 from YosysHQ/gatecat/more-pybindings
Add Python bindings for placement tests
Diffstat (limited to 'fpga_interchange')
-rw-r--r-- | fpga_interchange/arch_pybindings.cc | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/fpga_interchange/arch_pybindings.cc b/fpga_interchange/arch_pybindings.cc index 4fddad93..68619866 100644 --- a/fpga_interchange/arch_pybindings.cc +++ b/fpga_interchange/arch_pybindings.cc @@ -44,6 +44,11 @@ void arch_wrap_python(py::module &m) .def("place", &Context::place) .def("route", &Context::route); + fn_wrapper_0a_v<Context, decltype(&Context::remove_site_routing), &Context::remove_site_routing>::def_wrap( + ctx_cls, "remove_site_routing"); + fn_wrapper_1a_v<Context, decltype(&Context::explain_bel_status), &Context::explain_bel_status, + conv_from_str<BelId>>::def_wrap(ctx_cls, "explain_bel_status"); + typedef std::unordered_map<IdString, std::unique_ptr<CellInfo>> CellMap; typedef std::unordered_map<IdString, std::unique_ptr<NetInfo>> NetMap; typedef std::unordered_map<IdString, IdString> AliasMap; |