-
Notifications
You must be signed in to change notification settings - Fork 318
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dp: make dp_queue using externally provided params set
Dp_queue is currently used only as a comp_buffer "shadow" for DP modules. Shadow buffers must have the very same param set as main buffers. Problem: till now the complete vector of params was copied from comp_buffer to dp_queue inm prepare method. Problem is that if anything will change any of params afterwards, the change won't propagate. This commit introduces sharing the param vector between comp_buffer and its shadow Signed-off-by: Marcin Szkudlinski <marcin.szkudlinski@intel.com>
- Loading branch information
1 parent
481b328
commit 39200b5
Showing
3 changed files
with
32 additions
and
24 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