Files
compute-runtime/opencl/source/dll/command_queue_dll.cpp
Michal Mrozek eedc77e1ec Disable waiting on timestamps.
Not yet ready for full enabling.

Signed-off-by: Michal Mrozek <michal.mrozek@intel.com>
2022-01-14 13:35:14 +01:00

27 lines
561 B
C++

/*
* Copyright (C) 2020-2022 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