2018-01-03 17:54:31 +08:00
|
|
|
/*
|
2018-09-18 15:11:08 +08:00
|
|
|
* Copyright (C) 2018 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
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "runtime/gtpin/gtpin_hw_helper.h"
|
|
|
|
|
|
|
|
namespace OCLRT {
|
|
|
|
GTPinHwHelper *gtpinHwHelperFactory[IGFX_MAX_CORE] = {};
|
|
|
|
|
|
|
|
GTPinHwHelper >PinHwHelper::get(GFXCORE_FAMILY gfxCore) {
|
|
|
|
return *gtpinHwHelperFactory[gfxCore];
|
|
|
|
}
|
|
|
|
} // namespace OCLRT
|