Add multiEngine field to command queue with debug variable to override it.

Change-Id: I3c1e424a7ad545e166e178d1726595e6d9502ca7
This commit is contained in:
Mrozek, Michal
2019-02-12 10:35:22 +01:00
committed by sys_ocldev
parent fbb84476ef
commit 0e7fd2ffed
6 changed files with 28 additions and 0 deletions

View File

@@ -406,6 +406,8 @@ class CommandQueue : public BaseObject<_cl_command_queue> {
return requiresCacheFlushAfterWalker;
}
bool isMultiEngineQueue() { return this->multiEngineQueue; }
// taskCount of last task
uint32_t taskCount = 0;
@@ -456,6 +458,7 @@ class CommandQueue : public BaseObject<_cl_command_queue> {
bool mapDcFlushRequired = false;
bool isSpecialCommandQueue = false;
bool requiresCacheFlushAfterWalker = false;
bool multiEngineQueue = false;
std::unique_ptr<TimestampPacketContainer> timestampPacketContainer;