mirror of
https://github.com/intel/compute-runtime.git
synced 2025-09-15 13:01:45 +08:00
Code clean-up related to small LMEM BAR configuration
Related-To: NEO-4876 Signed-off-by: Slawomir Milczarek <slawomir.milczarek@intel.com>
This commit is contained in:

committed by
Compute-Runtime-Automation

parent
b4444c7660
commit
8a4bf3782a
@ -68,13 +68,5 @@ bool forceBlitterUseForGlobalBuffers(const HardwareInfo &hwInfo, GraphicsAllocat
|
||||
return false;
|
||||
}
|
||||
|
||||
bool obtainBlitterPreference(const HardwareInfo &hwInfo) {
|
||||
return false;
|
||||
}
|
||||
|
||||
LocalMemoryAccessMode getDefaultLocalMemoryAccessMode(const HardwareInfo &hwInfo) {
|
||||
return LocalMemoryAccessMode::Default;
|
||||
}
|
||||
|
||||
} // namespace Gen12LPHelpers
|
||||
} // namespace NEO
|
||||
|
@ -39,8 +39,6 @@ bool isOffsetToSkipSetFFIDGPWARequired(const HardwareInfo &hwInfo);
|
||||
bool isForceEmuInt32DivRemSPWARequired(const HardwareInfo &hwInfo);
|
||||
bool is3DPipelineSelectWARequired(const HardwareInfo &hwInfo);
|
||||
bool forceBlitterUseForGlobalBuffers(const HardwareInfo &hwInfo, GraphicsAllocation *allocation);
|
||||
bool obtainBlitterPreference(const HardwareInfo &hwInfo);
|
||||
LocalMemoryAccessMode getDefaultLocalMemoryAccessMode(const HardwareInfo &hwInfo);
|
||||
|
||||
} // namespace Gen12LPHelpers
|
||||
} // namespace NEO
|
||||
|
@ -98,13 +98,5 @@ bool forceBlitterUseForGlobalBuffers(const HardwareInfo &hwInfo, GraphicsAllocat
|
||||
return false;
|
||||
}
|
||||
|
||||
bool obtainBlitterPreference(const HardwareInfo &hwInfo) {
|
||||
return false;
|
||||
}
|
||||
|
||||
LocalMemoryAccessMode getDefaultLocalMemoryAccessMode(const HardwareInfo &hwInfo) {
|
||||
return LocalMemoryAccessMode::Default;
|
||||
}
|
||||
|
||||
} // namespace Gen12LPHelpers
|
||||
} // namespace NEO
|
||||
|
@ -288,16 +288,6 @@ bool MemorySynchronizationCommands<TGLLPFamily>::isPipeControlPriorToPipelineSel
|
||||
return MemorySynchronizationCommands<TGLLPFamily>::isPipeControlWArequired(hwInfo);
|
||||
}
|
||||
|
||||
template <>
|
||||
bool HwHelperHw<Family>::obtainBlitterPreference(const HardwareInfo &hwInfo) const {
|
||||
return Gen12LPHelpers::obtainBlitterPreference(hwInfo);
|
||||
}
|
||||
|
||||
template <>
|
||||
inline LocalMemoryAccessMode HwHelperHw<Family>::getDefaultLocalMemoryAccessMode(const HardwareInfo &hwInfo) const {
|
||||
return Gen12LPHelpers::getDefaultLocalMemoryAccessMode(hwInfo);
|
||||
}
|
||||
|
||||
template <>
|
||||
void HwHelperHw<TGLLPFamily>::setExtraAllocationData(AllocationData &allocationData, const AllocationProperties &properties, const HardwareInfo &hwInfo) const {
|
||||
HwHelper &hwHelper = HwHelper::get(hwInfo.platform.eRenderCoreFamily);
|
||||
|
Reference in New Issue
Block a user