/* * Copyright (C) 2020-2021 Intel Corporation * * SPDX-License-Identifier: MIT * */ #include "shared/source/helpers/populate_factory.h" #include "opencl/source/helpers/cl_hw_helper_base.inl" #include "opencl/source/helpers/cl_hw_helper_bdw_plus.inl" #include "hw_cmds.h" namespace NEO { using Family = ICLFamily; static auto gfxCore = IGFX_GEN11_CORE; template <> void populateFactoryTable>() { extern ClHwHelper *clHwHelperFactory[IGFX_MAX_CORE]; clHwHelperFactory[gfxCore] = &ClHwHelperHw::get(); } template class ClHwHelperHw; } // namespace NEO