mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-06 02:18:05 +08:00
21 lines
308 B
C++
21 lines
308 B
C++
/*
|
|
* Copyright (C) 2018-2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
#include "helpers/hw_info.h"
|
|
|
|
namespace NEO {
|
|
|
|
struct ICLFamily;
|
|
|
|
template <>
|
|
struct GfxFamilyMapper<IGFX_GEN11_CORE> {
|
|
typedef ICLFamily GfxFamily;
|
|
static const char *name;
|
|
};
|
|
} // namespace NEO
|