/* * Copyright (C) 2020-2022 Intel Corporation * * SPDX-License-Identifier: MIT * */ #include "shared/source/gen9/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 = Gen9Family; static auto gfxCore = IGFX_GEN9_CORE; template <> void populateFactoryTable>() { extern ClHwHelper *clHwHelperFactory[IGFX_MAX_CORE]; clHwHelperFactory[gfxCore] = &ClHwHelperHw::get(); } template <> cl_version ClHwHelperHw::getDeviceIpVersion(const HardwareInfo &hwInfo) const { return makeDeviceIpVersion(9, 0, 0); } template class ClHwHelperHw; } // namespace NEO