Forum Discussion
RubenPadial
Contributor
1 year agoIntel FPGA AI Sutie Inference Engine
Is there any official documentation on the DLA runtime or inference engine for managing the DLA from the ARM side? I need to develop a custom application for running inference, but so far, I’ve only ...
JohnT_Altera
Regular Contributor
1 year agoHi Ruben,
You may also refer to 2023.3 version of document from OpenVINO. The sample design can be use to be run with FPGA.Throughput Benchmark Sample — OpenVINO™ documentationCopy to clipboardCopy to clipboardCopy to clipboardCopy to clipboardCopy to clipboardCopy to clipboardCopy to clipboardCopy to clipboardCopy to clipboardCopy to clipboard — Version(2023.3)
It has both Python and C++ sample code.
- RubenPadial1 year ago
Contributor
Hello @JohnT_Intel ,
The same. It has a C++ example but no "wait_all" o similar funcion is used on it. Only in the Python example.
it uses:
for (ov::InferRequest& ireq : ireqs) {
ireq.wait();
}
Similar to the code I shared with you.