Files
compute-runtime/opencl/source/gtpin/gtpin_hw_helper.cpp
kamdiedrich d015d3633f Add absolute path to include
Change-Id: Ib0782b4ab8d9a26ec358ecfb57721f4fe8d51b06
2020-02-23 08:47:49 +01:00

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