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