mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-10 15:12:56 +08:00
Change-Id: Iff5fe62d31fa7b07658cfcf81ebd2c12d47e2b3b Signed-off-by: Maciej Dziuban <maciej.dziuban@intel.com>
29 lines
684 B
C++
29 lines
684 B
C++
/*
|
|
* Copyright (C) 2017-2018 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
#include "runtime/gen_common/aub_mapper_base.h"
|
|
#include "runtime/memory_manager/memory_constants.h"
|
|
|
|
namespace OCLRT {
|
|
struct CNLFamily;
|
|
|
|
template <>
|
|
struct AUBFamilyMapper<CNLFamily> {
|
|
enum { device = AubMemDump::DeviceValues::Cnl };
|
|
|
|
using AubTraits = AubMemDump::Traits<device, MemoryConstants::GfxAddressBits>;
|
|
|
|
static const AubMemDump::LrcaHelper *csTraits[EngineType::NUM_ENGINES];
|
|
|
|
static const MMIOList globalMMIO;
|
|
static const MMIOList *perEngineMMIO[EngineType::NUM_ENGINES];
|
|
|
|
typedef AubMemDump::AubDump<AubTraits> AUB;
|
|
};
|
|
} // namespace OCLRT
|