mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-05 09:09:04 +08:00
Change-Id: If965c79d70392db26597aea4c2f3b7ae2820fe96 Signed-off-by: Maciej Plewka <maciej.plewka@intel.com>
17 lines
333 B
C++
17 lines
333 B
C++
/*
|
|
* Copyright (C) 2018-2019 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "runtime/gtpin/gtpin_hw_helper.h"
|
|
|
|
namespace NEO {
|
|
GTPinHwHelper *gtpinHwHelperFactory[IGFX_MAX_CORE] = {};
|
|
|
|
GTPinHwHelper >PinHwHelper::get(GFXCORE_FAMILY gfxCore) {
|
|
return *gtpinHwHelperFactory[gfxCore];
|
|
}
|
|
} // namespace NEO
|