mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-25 13:33:02 +08:00
21 lines
324 B
C++
21 lines
324 B
C++
/*
|
|
* Copyright (C) 2020-2023 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "opencl/source/command_queue/command_queue.h"
|
|
|
|
namespace NEO {
|
|
|
|
bool CommandQueue::isAssignEngineRoundRobinEnabled() {
|
|
return true;
|
|
}
|
|
|
|
bool CommandQueue::isTimestampWaitEnabled() {
|
|
return true;
|
|
}
|
|
|
|
} // namespace NEO
|