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

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