2017-12-21 00:45:38 +01:00
|
|
|
/*
|
2022-07-25 15:30:11 +00:00
|
|
|
* Copyright (C) 2019-2022 Intel Corporation
|
2017-12-21 00:45:38 +01:00
|
|
|
*
|
2019-03-26 11:59:46 +01:00
|
|
|
* SPDX-License-Identifier: MIT
|
2017-12-21 00:45:38 +01:00
|
|
|
*
|
|
|
|
|
*/
|
2019-03-26 11:59:46 +01:00
|
|
|
|
2017-12-21 00:45:38 +01:00
|
|
|
#pragma once
|
2020-02-23 22:44:01 +01:00
|
|
|
#include "shared/source/helpers/hw_info.h"
|
2017-12-21 00:45:38 +01:00
|
|
|
|
2019-03-26 11:59:46 +01:00
|
|
|
namespace NEO {
|
2017-12-21 00:45:38 +01:00
|
|
|
|
2022-07-25 15:30:11 +00:00
|
|
|
struct Gen9Family;
|
2017-12-21 00:45:38 +01:00
|
|
|
|
|
|
|
|
template <>
|
|
|
|
|
struct GfxFamilyMapper<IGFX_GEN9_CORE> {
|
2022-07-25 15:30:11 +00:00
|
|
|
typedef Gen9Family GfxFamily;
|
2017-12-21 00:45:38 +01:00
|
|
|
static const char *name;
|
|
|
|
|
};
|
2019-03-26 11:59:46 +01:00
|
|
|
} // namespace NEO
|