30 lines
832 B
C++
30 lines
832 B
C++
/*
|
|
* Copyright (C) 2018-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"
|
|
|
|
namespace NEO {
|
|
typedef ICLFamily Family;
|
|
|
|
template <>
|
|
uint32_t HwHelperHw<Family>::getComputeUnitsUsedForScratch(const HardwareInfo *pHwInfo) const {
|
|
return pHwInfo->gtSystemInfo.MaxSubSlicesSupported * pHwInfo->gtSystemInfo.MaxEuPerSubSlice * 8;
|
|
}
|
|
|
|
template <>
|
|
uint32_t HwHelperHw<Family>::getMetricsLibraryGenId() const {
|
|
return static_cast<uint32_t>(MetricsLibraryApi::ClientGen::Gen11);
|
|
}
|
|
|
|
template class AubHelperHw<Family>;
|
|
template class HwHelperHw<Family>;
|
|
template class FlatBatchBufferHelperHw<Family>;
|
|
template struct PipeControlHelper<Family>;
|
|
} // namespace NEO
|