mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-19 16:24:18 +08:00
In this mode AUB csr will be created, however, no aub file will be created Related-To: NEO-11097 Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
21 lines
376 B
C++
21 lines
376 B
C++
/*
|
|
* Copyright (C) 2022-2024 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "shared/source/device/device.h"
|
|
|
|
namespace NEO {
|
|
|
|
bool Device::isBlitSplitEnabled() {
|
|
return true;
|
|
}
|
|
|
|
bool Device::isInitDeviceWithFirstSubmissionEnabled(CommandStreamReceiverType csrType) {
|
|
return csrType == CommandStreamReceiverType::hardware;
|
|
}
|
|
|
|
} // namespace NEO
|