-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[CPU][Refactoring] Introduce VariableExecutor
Depending on the parameters a FullyConnected node can use one or multiple executors. With the current approach, even when just a single executor is used, every prepareParams() (executor::update()) call goes through executor selection routine. The idea is to avoid such overhead for a single executor scenarious, which are probably the most common ones. Thus, split the pipeline input two branches: - only single simple executor is used and updated - a VariableExecutor is used and updated. VariableExecutor contains two or more simple executors
- Loading branch information
1 parent
963b1be
commit caa6e7a
Showing
7 changed files
with
233 additions
and
175 deletions.
There are no files selected for viewing
This file contains 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 file contains 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 file contains 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 file contains 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
Oops, something went wrong.