26 lines
560 B
C++
26 lines
560 B
C++
/*
|
|
* Copyright (C) 2020-2021 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "opencl/source/command_queue/command_queue.h"
|
|
|
|
namespace NEO {
|
|
|
|
bool CommandQueue::isAssignEngineRoundRobinEnabled() {
|
|
auto assignEngineRoundRobin = false;
|
|
|
|
if (DebugManager.flags.EnableCmdQRoundRobindEngineAssign.get() != -1) {
|
|
assignEngineRoundRobin = DebugManager.flags.EnableCmdQRoundRobindEngineAssign.get();
|
|
}
|
|
|
|
return assignEngineRoundRobin;
|
|
}
|
|
|
|
bool CommandQueue::isTimestampWaitEnabled() {
|
|
return false;
|
|
}
|
|
|
|
} // namespace NEO
|