diff --git a/generic/arch_pybindings.cc b/generic/arch_pybindings.cc index f4e7c564..eae78c9a 100644 --- a/generic/arch_pybindings.cc +++ b/generic/arch_pybindings.cc @@ -196,6 +196,11 @@ void arch_wrap_python() conv_from_str, pass_through>::def_wrap(ctx_cls, "setPipAttr", (arg("pip"), "key", "value")); + fn_wrapper_1a_v>::def_wrap( + ctx_cls, "setLutK", arg("K")); + fn_wrapper_2a_v, + pass_through>::def_wrap(ctx_cls, "setDelayScaling", (arg("scale"), "offset")); + WRAP_MAP_UPTR(CellMap, "IdCellMap"); WRAP_MAP_UPTR(NetMap, "IdNetMap"); WRAP_VECTOR(const std::vector, conv_to_str);