mirror of
https://github.com/intel/compute-runtime.git
synced 2025-09-20 13:11:34 +08:00

Related-To: NEO-3677 Change-Id: Ia89ba93eefbb2921ef7d64bde7ed4114a0c78e0d Signed-off-by: Jobczyk, Lukasz <lukasz.jobczyk@intel.com>
31 lines
711 B
C++
31 lines
711 B
C++
/*
|
|
* Copyright (C) 2018-2019 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
#include "core/memory_manager/memory_constants.h"
|
|
#include "runtime/gen_common/aub_mapper_base.h"
|
|
|
|
#include "engine_node.h"
|
|
|
|
namespace NEO {
|
|
struct ICLFamily;
|
|
|
|
template <>
|
|
struct AUBFamilyMapper<ICLFamily> {
|
|
enum { device = AubMemDump::DeviceValues::Icllp };
|
|
|
|
using AubTraits = AubMemDump::Traits<device, MemoryConstants::GfxAddressBits>;
|
|
|
|
static const AubMemDump::LrcaHelper *const csTraits[aub_stream::NUM_ENGINES];
|
|
|
|
static const MMIOList globalMMIO;
|
|
static const MMIOList *perEngineMMIO[aub_stream::NUM_ENGINES];
|
|
|
|
typedef AubMemDump::AubDump<AubTraits> AUB;
|
|
};
|
|
} // namespace NEO
|