2021-11-12 19:02:17 +08:00
|
|
|
/*
|
2022-06-27 15:25:29 +08:00
|
|
|
* Copyright (C) 2020-2022 Intel Corporation
|
2021-11-12 19:02:17 +08:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2021-12-09 19:59:52 +08:00
|
|
|
#include "shared/test/common/helpers/ult_hw_config.h"
|
|
|
|
|
2021-11-12 19:02:17 +08:00
|
|
|
#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() {
|
2022-06-27 15:25:29 +08:00
|
|
|
return false;
|
2021-11-12 19:02:17 +08:00
|
|
|
}
|
2021-12-09 19:59:52 +08:00
|
|
|
|
|
|
|
bool CommandQueue::isTimestampWaitEnabled() {
|
|
|
|
return ultHwConfig.useWaitForTimestamps;
|
|
|
|
}
|
|
|
|
|
2021-11-12 19:02:17 +08:00
|
|
|
} // namespace NEO
|