Hello,
I am trying to accelerate an AI vision pipeline in Python. Due to data transfer requirements our team has to rely on the SharedMemory mechanism introduced in Python3.8.
The VPI lib source is proprietary as explained clearly in another post. Are the python bindings as well? If so, how can I get them to work on Py38 - do I have to bind them from C?
I already tried the hackish option, to rename the vpi-bindings python package replacing cp36m with cp38 but it will fail at import because it is an .so package.
Hope you can help!