mirror of
https://github.com/intel/compute-runtime.git
synced 2025-09-10 12:53:42 +08:00

This reverts commit d672920121
.
Signed-off-by: Compute-Runtime-Validation <compute-runtime-validation@intel.com>
22 lines
407 B
C++
22 lines
407 B
C++
/*
|
|
* Copyright (C) 2020-2022 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "shared/test/common/helpers/ult_hw_config.h"
|
|
|
|
#include "opencl/source/command_queue/command_queue.h"
|
|
|
|
namespace NEO {
|
|
|
|
bool CommandQueue::isAssignEngineRoundRobinEnabled() {
|
|
return false;
|
|
}
|
|
|
|
bool CommandQueue::isTimestampWaitEnabled() {
|
|
return ultHwConfig.useWaitForTimestamps;
|
|
}
|
|
|
|
} // namespace NEO
|