mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-11 16:45:25 +08:00
Related-To: NEO-3964 Change-Id: Ib2660e8f7d92fc970172517b3e2ddfd607e09ec1 Signed-off-by: Filip Hazubski <filip.hazubski@intel.com>
19 lines
320 B
C++
19 lines
320 B
C++
/*
|
|
* Copyright (C) 2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "opencl/source/helpers/cl_hw_helper.h"
|
|
|
|
namespace NEO {
|
|
|
|
ClHwHelper *clHwHelperFactory[IGFX_MAX_CORE] = {};
|
|
|
|
ClHwHelper &ClHwHelper::get(GFXCORE_FAMILY gfxCore) {
|
|
return *clHwHelperFactory[gfxCore];
|
|
}
|
|
|
|
} // namespace NEO
|