2021-11-12 11:02:17 +00:00
|
|
|
/*
|
2024-07-12 12:46:06 +00:00
|
|
|
* Copyright (C) 2020-2024 Intel Corporation
|
2021-11-12 11:02:17 +00:00
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
2021-12-09 11:59:52 +00:00
|
|
|
#include "shared/test/common/helpers/ult_hw_config.h"
|
|
|
|
|
|
2021-11-12 11:02:17 +00:00
|
|
|
#include "opencl/source/command_queue/command_queue.h"
|
|
|
|
|
|
|
|
|
|
namespace NEO {
|
2021-12-09 11:59:52 +00:00
|
|
|
|
2021-11-12 11:02:17 +00:00
|
|
|
bool CommandQueue::isAssignEngineRoundRobinEnabled() {
|
2022-06-27 07:25:29 +00:00
|
|
|
return false;
|
2021-11-12 11:02:17 +00:00
|
|
|
}
|
2021-12-09 11:59:52 +00:00
|
|
|
|
|
|
|
|
bool CommandQueue::isTimestampWaitEnabled() {
|
|
|
|
|
return ultHwConfig.useWaitForTimestamps;
|
|
|
|
|
}
|
|
|
|
|
|
2024-08-28 10:11:54 +00:00
|
|
|
bool checkIsGpuCopyRequiredForDcFlushMitigation(AllocationType type) {
|
2024-10-31 08:57:43 +00:00
|
|
|
return ultHwConfig.useGpuCopyForDcFlushMitigation;
|
2024-08-28 10:11:54 +00:00
|
|
|
}
|
|
|
|
|
|
2021-11-12 11:02:17 +00:00
|
|
|
} // namespace NEO
|