mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-03 06:49:52 +08:00
Remove ReleaseHelper::isDirectSubmissionSupported function. Update ProductHelper::isDirectSubmissionSupported to return correct values. Signed-off-by: Filip Hazubski <filip.hazubski@intel.com>
34 lines
667 B
C++
34 lines
667 B
C++
/*
|
|
* Copyright (C) 2023-2025 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "shared/source/memory_manager/allocation_type.h"
|
|
#include "shared/source/release_helper/release_helper.h"
|
|
|
|
namespace NEO {
|
|
|
|
template <>
|
|
bool ReleaseHelperHw<release>::isDirectSubmissionLightSupported() const {
|
|
return true;
|
|
}
|
|
|
|
template <>
|
|
inline bool ReleaseHelperHw<release>::isBindlessAddressingDisabled() const {
|
|
return false;
|
|
}
|
|
|
|
template <>
|
|
inline bool ReleaseHelperHw<release>::isGlobalBindlessAllocatorEnabled() const {
|
|
return true;
|
|
}
|
|
|
|
template <>
|
|
bool ReleaseHelperHw<release>::getFtrXe2Compression() const {
|
|
return false;
|
|
}
|
|
|
|
} // namespace NEO
|