mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-22 10:17:01 +08:00
This reverts commit 5f7541084d.
Signed-off-by: Compute-Runtime-Validation <compute-runtime-validation@intel.com>
22 lines
411 B
C++
22 lines
411 B
C++
/*
|
|
* Copyright (C) 2022-2023 Intel Corporation
|
|
*
|
|
* 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;
|
|
}
|
|
|
|
bool Device::isInitDeviceWithFirstSubmissionEnabled() {
|
|
return ultHwConfig.useFirstSubmissionInitDevice;
|
|
}
|
|
|
|
} // namespace NEO
|