2022-09-08 01:32:16 +08:00
|
|
|
/*
|
2023-01-17 20:25:30 +08:00
|
|
|
* Copyright (C) 2022-2023 Intel Corporation
|
2022-09-08 01:32:16 +08:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "shared/source/device/device.h"
|
|
|
|
#include "shared/test/common/helpers/ult_hw_config.h"
|
|
|
|
namespace NEO {
|
|
|
|
|
|
|
|
bool Device::isBlitSplitEnabled() {
|
|
|
|
return ultHwConfig.useBlitSplit;
|
|
|
|
}
|
|
|
|
|
2023-01-27 20:37:09 +08:00
|
|
|
bool Device::isInitDeviceWithFirstSubmissionEnabled(CommandStreamReceiverType csrType) {
|
|
|
|
return ultHwConfig.useFirstSubmissionInitDevice;
|
|
|
|
}
|
|
|
|
|
2022-09-08 01:32:16 +08:00
|
|
|
} // namespace NEO
|