compute-runtime/opencl/source/gtpin/gtpin_hw_helper.cpp

17 lines
339 B
C++

/*
* Copyright (C) 2018-2020 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#include "opencl/source/gtpin/gtpin_hw_helper.h"
namespace NEO {
GTPinHwHelper *gtpinHwHelperFactory[IGFX_MAX_CORE] = {};
GTPinHwHelper &GTPinHwHelper::get(GFXCORE_FAMILY gfxCore) {
return *gtpinHwHelperFactory[gfxCore];
}
} // namespace NEO