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

Change-Id: I05b5d20bac12935dc6625b94adc3a03c98c19b49 Signed-off-by: Filip Hazubski <filip.hazubski@intel.com>
32 lines
717 B
C++
32 lines
717 B
C++
/*
|
|
* Copyright (C) 2019-2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
#include "shared/source/helpers/constants.h"
|
|
|
|
#include "opencl/source/gen_common/aub_mapper_base.h"
|
|
|
|
#include "engine_node.h"
|
|
|
|
namespace NEO {
|
|
struct TGLLPFamily;
|
|
|
|
template <>
|
|
struct AUBFamilyMapper<TGLLPFamily> {
|
|
enum { device = AubMemDump::DeviceValues::Tgllp };
|
|
|
|
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
|