mirror of
https://github.com/intel/compute-runtime.git
synced 2025-09-15 13:01:45 +08:00

set include path to third_party/aub_stream rename third_party/aub_stream/headers -> third_party/aub_stream/aubstream Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
32 lines
755 B
C++
32 lines
755 B
C++
/*
|
|
* Copyright (C) 2018-2022 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
#include "shared/source/aub/aub_mapper_base.h"
|
|
#include "shared/source/gen9/hw_cmds.h"
|
|
#include "shared/source/helpers/constants.h"
|
|
|
|
#include "aubstream/engine_node.h"
|
|
|
|
namespace NEO {
|
|
struct Gen9Family;
|
|
|
|
template <>
|
|
struct AUBFamilyMapper<Gen9Family> {
|
|
enum { device = AubMemDump::DeviceValues::Skl };
|
|
|
|
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
|