Last active
August 6, 2024 07:32
-
-
Save dkurt/59a7e7b5b45f9c46b31e01ce47d098a2 to your computer and use it in GitHub Desktop.
OpenVINO asynchronous C++ example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
// TODO: process last predictions
for (int i = 0; i < num - launcher.nireq; ++i) {
launcher.get(prediction);
}
Why not : for (int i = 0; i < num ; ++i) ?
Thanks!