mirror of
https://github.com/intel/compute-runtime.git
synced 2025-11-15 10:14:56 +08:00
Explicitly initialize DispatchInfo members
Explicitly initialize objects: - DispatchInfo::dispatchInitCommands - DispatchInfo::dispatchEpilogueCommands Signed-off-by: Filip Hazubski <filip.hazubski@intel.com>
This commit is contained in:
committed by
Compute-Runtime-Automation
parent
e7cca25894
commit
2f12e50b83
@@ -65,8 +65,8 @@ class DispatchInfo {
|
||||
bool peekCanBePartitioned() const { return canBePartitioned; }
|
||||
void setCanBePartitioned(bool canBePartitioned) { this->canBePartitioned = canBePartitioned; }
|
||||
|
||||
RegisteredMethodDispatcher<DispatchCommandMethodT, EstimateCommandsMethodT> dispatchInitCommands;
|
||||
RegisteredMethodDispatcher<DispatchCommandMethodT, EstimateCommandsMethodT> dispatchEpilogueCommands;
|
||||
RegisteredMethodDispatcher<DispatchCommandMethodT, EstimateCommandsMethodT> dispatchInitCommands{};
|
||||
RegisteredMethodDispatcher<DispatchCommandMethodT, EstimateCommandsMethodT> dispatchEpilogueCommands{};
|
||||
|
||||
protected:
|
||||
ClDevice *pClDevice = nullptr;
|
||||
|
||||
Reference in New Issue
Block a user