17 lines
339 B
C++
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 >PinHwHelper::get(GFXCORE_FAMILY gfxCore) {
|
|
return *gtpinHwHelperFactory[gfxCore];
|
|
}
|
|
} // namespace NEO
|