mirror of
https://github.com/intel/compute-runtime.git
synced 2025-09-15 13:01:45 +08:00

use HW specific header instead generic one Signed-off-by: Artur Harasimiuk <artur.harasimiuk@intel.com>
33 lines
777 B
C++
33 lines
777 B
C++
/*
|
|
* Copyright (C) 2020-2022 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "shared/source/gen11/hw_cmds.h"
|
|
#include "shared/source/helpers/populate_factory.h"
|
|
|
|
#include "opencl/source/helpers/cl_hw_helper_base.inl"
|
|
#include "opencl/source/helpers/cl_hw_helper_bdw_and_later.inl"
|
|
|
|
namespace NEO {
|
|
|
|
using Family = ICLFamily;
|
|
static auto gfxCore = IGFX_GEN11_CORE;
|
|
|
|
template <>
|
|
void populateFactoryTable<ClHwHelperHw<Family>>() {
|
|
extern ClHwHelper *clHwHelperFactory[IGFX_MAX_CORE];
|
|
clHwHelperFactory[gfxCore] = &ClHwHelperHw<Family>::get();
|
|
}
|
|
|
|
template <>
|
|
cl_version ClHwHelperHw<Family>::getDeviceIpVersion(const HardwareInfo &hwInfo) const {
|
|
return makeDeviceIpVersion(11, 0, 0);
|
|
}
|
|
|
|
template class ClHwHelperHw<Family>;
|
|
|
|
} // namespace NEO
|