mirror of
https://github.com/intel/compute-runtime.git
synced 2025-06-28 17:58:30 +08:00

Resolves: NEO-5017 Change-Id: I29364aa331f802bd298bd08df440aa1e33dd3c4e Signed-off-by: Piotr Zdunowski <piotr.zdunowski@intel.com>
24 lines
428 B
C++
24 lines
428 B
C++
/*
|
|
* Copyright (C) 2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
#include "hw_info_gen12lp.h"
|
|
|
|
namespace NEO {
|
|
|
|
struct RKL;
|
|
|
|
template <>
|
|
struct HwMapper<IGFX_ROCKETLAKE> {
|
|
enum { gfxFamily = IGFX_GEN12LP_CORE };
|
|
|
|
static const char *abbreviation;
|
|
typedef GfxFamilyMapper<static_cast<GFXCORE_FAMILY>(gfxFamily)>::GfxFamily GfxFamily;
|
|
typedef RKL GfxProduct;
|
|
};
|
|
} // namespace NEO
|