2017-12-21 00:45:38 +01:00
|
|
|
/*
|
2023-02-07 12:53:53 +00:00
|
|
|
* Copyright (C) 2019-2023 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
|
2023-02-07 12:53:53 +00:00
|
|
|
#include "shared/source/helpers/hw_mapper.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
|