mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-30 01:35:20 +08:00
Change-Id: Ic3857a8cbebb7a7e16eebc25fbd0244f4605c0a8 Related-To: NEO-3016 Signed-off-by: Maciej Dziuban <maciej.dziuban@intel.com>
40 lines
1.2 KiB
C++
40 lines
1.2 KiB
C++
/*
|
|
* Copyright (C) 2017-2019 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "runtime/aub/aub_helper_bdw_plus.inl"
|
|
#include "runtime/helpers/flat_batch_buffer_helper_hw.inl"
|
|
#include "runtime/helpers/hw_helper_bdw_plus.inl"
|
|
#include "runtime/memory_manager/memory_constants.h"
|
|
|
|
namespace NEO {
|
|
typedef BDWFamily Family;
|
|
|
|
template <>
|
|
size_t HwHelperHw<Family>::getMaxBarrierRegisterPerSlice() const {
|
|
return 16;
|
|
}
|
|
|
|
template <>
|
|
void HwHelperHw<Family>::setupHardwareCapabilities(HardwareCapabilities *caps, const HardwareInfo &hwInfo) {
|
|
caps->image3DMaxHeight = 2048;
|
|
caps->image3DMaxWidth = 2048;
|
|
caps->maxMemAllocSize = 2 * MemoryConstants::gigaByte - 8 * MemoryConstants::megaByte;
|
|
caps->isStatelesToStatefullWithOffsetSupported = false;
|
|
}
|
|
|
|
template <>
|
|
void PipeControlHelper<Family>::addPipeControl(LinearStream &commandStream, bool dcFlush) {
|
|
auto pCmd = PipeControlHelper<Family>::addPipeControlBase(commandStream, dcFlush);
|
|
pCmd->setDcFlushEnable(true);
|
|
}
|
|
|
|
template class AubHelperHw<Family>;
|
|
template class HwHelperHw<Family>;
|
|
template class FlatBatchBufferHelperHw<Family>;
|
|
template struct PipeControlHelper<Family>;
|
|
} // namespace NEO
|