mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-23 03:01:20 +08:00
This reverts commit 9fc4663383.
Signed-off-by: Compute-Runtime-Validation <compute-runtime-validation@intel.com>
40 lines
855 B
C++
40 lines
855 B
C++
/*
|
|
* Copyright (C) 2024 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "shared/source/release_helper/release_helper.h"
|
|
#include "shared/source/release_helper/release_helper_base.inl"
|
|
|
|
#include "release_definitions.h"
|
|
|
|
namespace NEO {
|
|
constexpr auto release = ReleaseType::release2001;
|
|
|
|
template <>
|
|
bool ReleaseHelperHw<release>::shouldAdjustDepth() const {
|
|
return true;
|
|
}
|
|
|
|
template <>
|
|
inline bool ReleaseHelperHw<release>::isAuxSurfaceModeOverrideRequired() const {
|
|
return true;
|
|
}
|
|
|
|
template <>
|
|
bool ReleaseHelperHw<release>::isLocalOnlyAllowed() const {
|
|
return false;
|
|
}
|
|
|
|
template <>
|
|
bool ReleaseHelperHw<release>::isBindlessAddressingDisabled() const {
|
|
return false;
|
|
}
|
|
} // namespace NEO
|
|
|
|
#include "shared/source/release_helper/release_helper_common_xe2_hpg.inl"
|
|
|
|
template class NEO::ReleaseHelperHw<NEO::release>;
|