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

Related-To: NEO-4744 Change-Id: I7e574d7cf003ed01467c72e797187c0717bb76f2 Signed-off-by: Milczarek, Slawomir <slawomir.milczarek@intel.com>
24 lines
421 B
C++
24 lines
421 B
C++
/*
|
|
* Copyright (C) 2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
#include "hw_info_gen12lp.h"
|
|
|
|
namespace NEO {
|
|
|
|
struct DG1;
|
|
|
|
template <>
|
|
struct HwMapper<IGFX_DG1> {
|
|
enum { gfxFamily = IGFX_GEN12LP_CORE };
|
|
|
|
static const char *abbreviation;
|
|
using GfxFamily = GfxFamilyMapper<static_cast<GFXCORE_FAMILY>(gfxFamily)>::GfxFamily;
|
|
using GfxProduct = DG1;
|
|
};
|
|
} // namespace NEO
|