mirror of
https://github.com/intel/compute-runtime.git
synced 2025-09-15 13:01:45 +08:00

This reverts commit b81380a879
.
Signed-off-by: Compute-Runtime-Validation <compute-runtime-validation@intel.com>
27 lines
560 B
C++
27 lines
560 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 true;
|
|
}
|
|
|
|
} // namespace NEO
|