Files
compute-runtime/shared/source/xe3_core/aub_mapper.h
2025-05-07 15:43:40 +02:00

30 lines
703 B
C++

/*
* Copyright (C) 2025 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#pragma once
#include "shared/source/aub/aub_mapper_base.h"
#include "shared/source/helpers/constants.h"
#include "shared/source/xe3_core/hw_cmds_base.h"
#include "aubstream/engine_node.h"
namespace NEO {
struct Xe3CoreFamily;
template <>
struct AUBFamilyMapper<Xe3CoreFamily> {
using AubTraits = AubMemDump::Traits<MemoryConstants::gfxAddressBits>;
static const AubMemDump::LrcaHelper *const csTraits[aub_stream::NUM_ENGINES];
static const MMIOList globalMMIO;
static const MMIOList *perEngineMMIO[aub_stream::NUM_ENGINES];
using AUB = AubMemDump::AubDump<AubTraits>;
};
} // namespace NEO