mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-08 22:12:59 +08:00
17 lines
364 B
C++
17 lines
364 B
C++
/*
|
|
* Copyright (C) 2018-2022 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "opencl/source/gtpin/gtpin_hw_helper.h"
|
|
|
|
namespace NEO {
|
|
GTPinGfxCoreHelper *gtpinGfxCoreHelperFactory[IGFX_MAX_CORE] = {};
|
|
|
|
GTPinGfxCoreHelper >PinGfxCoreHelper::get(GFXCORE_FAMILY gfxCore) {
|
|
return *gtpinGfxCoreHelperFactory[gfxCore];
|
|
}
|
|
} // namespace NEO
|