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
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#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 true;
|
2021-11-12 11:02:17 +00:00
|
|
|
}
|
2021-12-09 11:59:52 +00:00
|
|
|
|
|
|
|
|
bool CommandQueue::isTimestampWaitEnabled() {
|
2022-03-17 15:55:41 +00:00
|
|
|
return true;
|
2021-12-09 11:59:52 +00:00
|
|
|
}
|
|
|
|
|
|
2024-08-28 10:11:54 +00:00
|
|
|
bool checkIsGpuCopyRequiredForDcFlushMitigation(AllocationType type) {
|
2024-08-30 12:32:49 +00:00
|
|
|
return type != AllocationType::bufferHostMemory;
|
2024-08-28 10:11:54 +00:00
|
|
|
}
|
|
|
|
|
|
2022-01-14 11:49:45 +00:00
|
|
|
} // namespace NEO
|