2021-11-12 19:02:17 +08:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2020-2021 Intel Corporation
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "opencl/source/command_queue/command_queue.h"
|
|
|
|
|
|
|
|
namespace NEO {
|
2021-12-09 19:59:52 +08:00
|
|
|
|
2021-11-12 19:02:17 +08:00
|
|
|
bool CommandQueue::isAssignEngineRoundRobinEnabled() {
|
|
|
|
auto assignEngineRoundRobin = false;
|
|
|
|
|
|
|
|
if (DebugManager.flags.EnableCmdQRoundRobindEngineAssign.get() != -1) {
|
|
|
|
assignEngineRoundRobin = DebugManager.flags.EnableCmdQRoundRobindEngineAssign.get();
|
|
|
|
}
|
|
|
|
|
|
|
|
return assignEngineRoundRobin;
|
|
|
|
}
|
2021-12-09 19:59:52 +08:00
|
|
|
|
|
|
|
bool CommandQueue::isTimestampWaitEnabled() {
|
2021-12-19 10:32:39 +08:00
|
|
|
return false;
|
2021-12-09 19:59:52 +08:00
|
|
|
}
|
|
|
|
|
2021-11-12 19:02:17 +08:00
|
|
|
} // namespace NEO
|