mirror of
https://github.com/intel/compute-runtime.git
synced 2025-06-28 17:58:30 +08:00

Related-To: NEO-3964 Change-Id: Ib2660e8f7d92fc970172517b3e2ddfd607e09ec1 Signed-off-by: Filip Hazubski <filip.hazubski@intel.com>
28 lines
543 B
C++
28 lines
543 B
C++
/*
|
|
* Copyright (C) 2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "shared/source/helpers/populate_factory.h"
|
|
|
|
#include "opencl/source/helpers/cl_hw_helper_base.inl"
|
|
|
|
#include "hw_cmds.h"
|
|
|
|
namespace NEO {
|
|
|
|
using Family = BDWFamily;
|
|
static auto gfxCore = IGFX_GEN8_CORE;
|
|
|
|
template <>
|
|
void populateFactoryTable<ClHwHelperHw<Family>>() {
|
|
extern ClHwHelper *clHwHelperFactory[IGFX_MAX_CORE];
|
|
clHwHelperFactory[gfxCore] = &ClHwHelperHw<Family>::get();
|
|
}
|
|
|
|
template class ClHwHelperHw<Family>;
|
|
|
|
} // namespace NEO
|