mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-21 01:04:57 +08:00
Related-To: NEO-10556, NEO-11553 Signed-off-by: Lukasz Jobczyk <lukasz.jobczyk@intel.com>
16 lines
427 B
C++
16 lines
427 B
C++
/*
|
|
* Copyright (C) 2024 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "shared/source/execution_environment/root_device_environment.h"
|
|
#include "shared/source/gmm_helper/gmm_helper.h"
|
|
#include "shared/source/os_interface/product_helper.h"
|
|
|
|
namespace NEO {
|
|
bool GmmHelper::deferMOCSToPatIndex() const {
|
|
return this->rootDeviceEnvironment.getProductHelper().deferMOCSToPatIndex();
|
|
}
|
|
} // namespace NEO
|