mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-20 00:24:58 +08:00
Related-To: NEO-5205 Change-Id: I62b7fec89451c640f70028b8d3ecb81f7655225d Signed-off-by: Maciej Plewka <maciej.plewka@intel.com>
37 lines
1.1 KiB
C++
37 lines
1.1 KiB
C++
/*
|
|
* Copyright (C) 2018-2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "shared/source/gen11/aub_mapper.h"
|
|
#include "shared/source/helpers/flat_batch_buffer_helper_hw.inl"
|
|
#include "shared/source/helpers/hw_helper_base.inl"
|
|
#include "shared/source/helpers/hw_helper_bdw_plus.inl"
|
|
#include "shared/source/helpers/hw_helper_bdw_to_icllp.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 <>
|
|
std::string HwHelperHw<Family>::getExtensions() const {
|
|
return "cl_intel_subgroup_local_block_io ";
|
|
}
|
|
|
|
template <>
|
|
uint32_t HwHelperHw<Family>::getDefaultThreadArbitrationPolicy() const {
|
|
return ThreadArbitrationPolicy::RoundRobinAfterDependency;
|
|
}
|
|
|
|
template class HwHelperHw<Family>;
|
|
template class FlatBatchBufferHelperHw<Family>;
|
|
template struct MemorySynchronizationCommands<Family>;
|
|
template struct LriHelper<Family>;
|
|
} // namespace NEO
|