compute-runtime/opencl/source/gen12lp/gtpin_setup_gen12lp.cpp

37 lines
808 B
C++
Raw Normal View History

/*
* Copyright (C) 2019-2021 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#include "opencl/source/gtpin/gtpin_hw_helper.h"
#include "opencl/source/gtpin/gtpin_hw_helper.inl"
#include "opencl/source/gtpin/gtpin_hw_helper_bdw_and_later.inl"
#include "ocl_igc_shared/gtpin/gtpin_ocl_interface.h"
namespace NEO {
extern GTPinHwHelper *gtpinHwHelperFactory[IGFX_MAX_CORE];
typedef TGLLPFamily Family;
static const auto gfxFamily = IGFX_GEN12LP_CORE;
template <>
uint32_t GTPinHwHelperHw<Family>::getGenVersion() {
return gtpin::GTPIN_GEN_12_1;
}
template class GTPinHwHelperHw<Family>;
struct GTPinEnableGen12LP {
GTPinEnableGen12LP() {
gtpinHwHelperFactory[gfxFamily] = &GTPinHwHelperHw<Family>::get();
}
};
static GTPinEnableGen12LP gtpinEnable;
} // namespace NEO