2018-01-03 17:54:31 +08:00
|
|
|
/*
|
2020-02-22 16:28:27 +08:00
|
|
|
* Copyright (C) 2018-2020 Intel Corporation
|
2018-01-03 17:54:31 +08:00
|
|
|
*
|
2018-09-18 15:11:08 +08:00
|
|
|
* SPDX-License-Identifier: MIT
|
2018-01-03 17:54:31 +08:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2020-02-23 05:50:57 +08:00
|
|
|
#include "opencl/source/gtpin/gtpin_hw_helper.h"
|
2018-01-03 17:54:31 +08:00
|
|
|
|
2019-03-26 18:59:46 +08:00
|
|
|
namespace NEO {
|
2018-01-03 17:54:31 +08:00
|
|
|
GTPinHwHelper *gtpinHwHelperFactory[IGFX_MAX_CORE] = {};
|
|
|
|
|
|
|
|
GTPinHwHelper >PinHwHelper::get(GFXCORE_FAMILY gfxCore) {
|
|
|
|
return *gtpinHwHelperFactory[gfxCore];
|
|
|
|
}
|
2019-03-26 18:59:46 +08:00
|
|
|
} // namespace NEO
|