2019-09-18 19:32:33 +02:00
|
|
|
/*
|
2023-02-07 12:53:53 +00:00
|
|
|
* Copyright (C) 2019-2023 Intel Corporation
|
2019-09-18 19:32:33 +02:00
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#pragma once
|
2023-02-07 12:53:53 +00:00
|
|
|
#include "shared/source/helpers/hw_mapper.h"
|
2019-09-18 19:32:33 +02:00
|
|
|
|
|
|
|
|
namespace NEO {
|
|
|
|
|
|
2022-07-25 15:30:11 +00:00
|
|
|
struct Gen12LpFamily;
|
2019-09-18 19:32:33 +02:00
|
|
|
|
|
|
|
|
template <>
|
|
|
|
|
struct GfxFamilyMapper<IGFX_GEN12LP_CORE> {
|
2022-07-25 15:30:11 +00:00
|
|
|
typedef Gen12LpFamily GfxFamily;
|
2019-09-18 19:32:33 +02:00
|
|
|
static const char *name;
|
|
|
|
|
};
|
|
|
|
|
} // namespace NEO
|