Does the python API support full-elf format?
It's a simple c++ code snippet, but when I try to use python, I found that Python bindings for xrt::hw_context missing advanced constructor and add_config method. Do we support this now or is there a simple python example for this?
xrt::elf add_elf("a_simple_add.elf");
xrt::device device = xrt::device(0);
xrt::hw_context context = xrt::hw_context(device, xrt::hw_context::cfg_param_type{},
xrt::hw_context::access_mode::shared);
context.add_config(add_elf);
Does the python API support full-elf format?
It's a simple c++ code snippet, but when I try to use python, I found that Python bindings for xrt::hw_context missing advanced constructor and add_config method. Do we support this now or is there a simple python example for this?