You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
This patch is mainly upstreaming of a long-live internal branch.
The functionality has been tested already in the "real world" scenarios.
desync() is a new (and for now, the only one) intrinsic
which splits the graph execution into asynchronous parts
when running in Streaming mode;
desync() makes no effect when compiling in Traditional mode;
Added tests on desync() working in various scenarios;
Extended GStreamingExecutor to support desync(); also extended
GStreamingCompiled() with a new version of pull() returning a
vector of optional values;
Fixed various issues with storing the type information & proper
construction callbacks for GArray<> and GOpaque;
Introduced a new infer(Roi,GMat) overload with a sample;
Introduced an internal API for Islands to control fusion
procedure (to fuse or not to fuse);
Introduced handleStopStream() callback for island executables;
Added GCompileArgs to metadata of the graph (required for other
features).
- desync() is a new (and for now, the only one) intrinsic
which splits the graph execution into asynchronous parts
when running in Streaming mode;
- desync() makes no effect when compiling in Traditional mode;
- Added tests on desync() working in various scenarios;
- Extended GStreamingExecutor to support desync(); also extended
GStreamingCompiled() with a new version of pull() returning a
vector of optional values;
- Fixed various issues with storing the type information & proper
construction callbacks for GArray<> and GOpaque;
- Introduced a new infer(Roi,GMat) overload with a sample;
- Introduced an internal API for Islands to control fusion
procedure (to fuse or not to fuse);
- Introduced handleStopStream() callback for island executables;
- Added GCompileArgs to metadata of the graph (required for other
features).
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This patch is mainly upstreaming of a long-live internal branch.
The functionality has been tested already in the "real world" scenarios.
desync() is a new (and for now, the only one) intrinsic
which splits the graph execution into asynchronous parts
when running in Streaming mode;
desync() makes no effect when compiling in Traditional mode;
Added tests on desync() working in various scenarios;
Extended GStreamingExecutor to support desync(); also extended
GStreamingCompiled() with a new version of pull() returning a
vector of optional values;
Fixed various issues with storing the type information & proper
construction callbacks for GArray<> and GOpaque;
Introduced a new infer(Roi,GMat) overload with a sample;
Introduced an internal API for Islands to control fusion
procedure (to fuse or not to fuse);
Introduced handleStopStream() callback for island executables;
Added GCompileArgs to metadata of the graph (required for other
features).
Pull Request Readiness Checklist
See details at https://github.com/opencv/opencv/wiki/How_to_contribute#making-a-good-pull-request
Patch to opencv_extra has the same branch name.