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