Skip to content

Instantly share code, notes, and snippets.

@dkurt
Last active August 6, 2024 07:32
Show Gist options
  • Save dkurt/59a7e7b5b45f9c46b31e01ce47d098a2 to your computer and use it in GitHub Desktop.
Save dkurt/59a7e7b5b45f9c46b31e01ce47d098a2 to your computer and use it in GitHub Desktop.
OpenVINO asynchronous C++ example
@mczhao1977
Copy link

// 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!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment