diff options
author | Keith Rothman <537074+litghost@users.noreply.github.com> | 2021-01-29 15:35:00 -0800 |
---|---|---|
committer | Keith Rothman <537074+litghost@users.noreply.github.com> | 2021-02-02 07:43:36 -0800 |
commit | 9089ee2d1631fe2346143823c2896a2a85a27e8b (patch) | |
tree | 7fb694eec79c542fa4658392b058b56a45f7013f /ice40/arch_pybindings.cc | |
parent | 9fe546f279cd643a308322ffa6af622630892315 (diff) | |
download | nextpnr-9089ee2d1631fe2346143823c2896a2a85a27e8b.tar.gz nextpnr-9089ee2d1631fe2346143823c2896a2a85a27e8b.tar.bz2 nextpnr-9089ee2d1631fe2346143823c2896a2a85a27e8b.zip |
Add pybindings for new APIs.
Signed-off-by: Keith Rothman <537074+litghost@users.noreply.github.com>
Diffstat (limited to 'ice40/arch_pybindings.cc')
-rw-r--r-- | ice40/arch_pybindings.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ice40/arch_pybindings.cc b/ice40/arch_pybindings.cc index 921956e8..060cf0b1 100644 --- a/ice40/arch_pybindings.cc +++ b/ice40/arch_pybindings.cc @@ -75,6 +75,8 @@ void arch_wrap_python(py::module &m) typedef const PipRange UphillPipRange; typedef const PipRange DownhillPipRange; + typedef const std::vector<BelBucketId> & BelBucketRange; + typedef const std::vector<BelId> & BelRangeForBelBucket; #include "arch_pybindings_shared.h" WRAP_RANGE(m, Bel, conv_to_str<BelId>); |