mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-04 07:14:10 +08:00
Related-To: NEO-2388 Change-Id: I4da92efe7f875f409cd62519a31ed4509b55bda7 Signed-off-by: Jacek Danecki <jacek.danecki@intel.com>
21 lines
316 B
C++
21 lines
316 B
C++
/*
|
|
* Copyright (C) 2018-2019 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
#include "runtime/helpers/hw_info.h"
|
|
|
|
namespace NEO {
|
|
|
|
struct ICLFamily;
|
|
|
|
template <>
|
|
struct GfxFamilyMapper<IGFX_GEN11_CORE> {
|
|
typedef ICLFamily GfxFamily;
|
|
static const char *name;
|
|
};
|
|
} // namespace NEO
|