Forum Discussion
Hi,
You may make use of dla_benchmark apps and modfy from there. The new method should be as using "device_name.find("FPGA")"
- RubenPadial10 months ago
Contributor
Hello @JohnT_Intel
Taking dla_benchmark as an example, I get the following error:
[ ERROR ]
runtime/hps_packages/openvino/src/inference/src/ie_common.cpp:75
runtime/plugin/src/dlia_infer_request.cpp:53 Number of inference requests exceed the maximum number of inference requests supported per instance 5I'm looping the inference request because I need to instantiate the DLA and continuously request inferences with new data. Each inference must be a single request, so I set nireq=1 and niter=1. Once an inference is finished, I request a new one with new input data.
Therefore, I loop from step no. 9 to 11, obtaining the new input data before filling the blobs.
Is this approach correct? I understand a real application needs to instantiate de DLA and keep filling input to compute the CNN oputput with new data.