aboutsummaryrefslogtreecommitdiffstats
path: root/common/pybindings.cc
diff options
context:
space:
mode:
authorgatecat <gatecat@ds0.me>2021-12-14 20:09:57 +0000
committerGitHub <noreply@github.com>2021-12-14 20:09:57 +0000
commit762125d3cfa26f5718d409a33c2cf57b157f692b (patch)
tree1acd5dc88596ff537e57c35bdeeade83deda497a /common/pybindings.cc
parent256134d6158b59831462f26f0011627eda10beb2 (diff)
parenta120ae1fa7be5bac98e77755a6220df59e443b16 (diff)
downloadnextpnr-762125d3cfa26f5718d409a33c2cf57b157f692b.tar.gz
nextpnr-762125d3cfa26f5718d409a33c2cf57b157f692b.tar.bz2
nextpnr-762125d3cfa26f5718d409a33c2cf57b157f692b.zip
Merge pull request #872 from YosysHQ/gatecat/py-loc-api
python: Bind getBelLocation/getPipLocation
Diffstat (limited to 'common/pybindings.cc')
-rw-r--r--common/pybindings.cc5
1 files changed, 4 insertions, 1 deletions
diff --git a/common/pybindings.cc b/common/pybindings.cc
index f9ee9eb7..eef460ce 100644
--- a/common/pybindings.cc
+++ b/common/pybindings.cc
@@ -83,6 +83,8 @@ template <> struct string_converter<Property>
} // namespace PythonConversion
+std::string loc_repr_py(Loc loc) { return stringf("Loc(%d, %d, %d)", loc.x, loc.y, loc.z); }
+
PYBIND11_EMBEDDED_MODULE(MODULE_NAME, m)
{
py::register_exception_translator([](std::exception_ptr p) {
@@ -175,7 +177,8 @@ PYBIND11_EMBEDDED_MODULE(MODULE_NAME, m)
.def(py::init<int, int, int>())
.def_readwrite("x", &Loc::x)
.def_readwrite("y", &Loc::y)
- .def_readwrite("z", &Loc::z);
+ .def_readwrite("z", &Loc::z)
+ .def("__repr__", loc_repr_py);
auto ci_cls = py::class_<ContextualWrapper<CellInfo &>>(m, "CellInfo");
readwrite_wrapper<CellInfo &, decltype(&CellInfo::name), &CellInfo::name, conv_to_str<IdString>,