mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-26 15:03:02 +08:00
Cleaned up files: shared/source/command_stream/command_stream_receiver_hw.h shared/source/compiler_interface/compiler_interface.h shared/source/direct_submission/direct_submission_hw.h shared/source/helpers/dirty_state_helpers.h Related-To: NEO-5548 Signed-off-by: Warchulski, Jaroslaw <jaroslaw.warchulski@intel.com>
23 lines
386 B
C++
23 lines
386 B
C++
/*
|
|
* Copyright (C) 2020-2023 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "shared/source/compiler_interface/compiler_cache.h"
|
|
|
|
#include "opencl/source/command_queue/command_queue.h"
|
|
|
|
namespace NEO {
|
|
|
|
bool CommandQueue::isAssignEngineRoundRobinEnabled() {
|
|
return true;
|
|
}
|
|
|
|
bool CommandQueue::isTimestampWaitEnabled() {
|
|
return true;
|
|
}
|
|
|
|
} // namespace NEO
|