mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-04 23:56:39 +08:00
Change-Id: Ic3857a8cbebb7a7e16eebc25fbd0244f4605c0a8 Related-To: NEO-3016 Signed-off-by: Maciej Dziuban <maciej.dziuban@intel.com>
33 lines
765 B
C++
33 lines
765 B
C++
/*
|
|
* Copyright (C) 2019 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "runtime/aub/aub_helper_base.inl"
|
|
|
|
namespace NEO {
|
|
|
|
template <typename GfxFamily>
|
|
int AubHelperHw<GfxFamily>::getDataHintForPml4Entry() const {
|
|
return AubMemDump::DataTypeHintValues::TraceNotype;
|
|
}
|
|
|
|
template <typename GfxFamily>
|
|
int AubHelperHw<GfxFamily>::getDataHintForPdpEntry() const {
|
|
return AubMemDump::DataTypeHintValues::TraceNotype;
|
|
}
|
|
|
|
template <typename GfxFamily>
|
|
int AubHelperHw<GfxFamily>::getDataHintForPdEntry() const {
|
|
return AubMemDump::DataTypeHintValues::TraceNotype;
|
|
}
|
|
|
|
template <typename GfxFamily>
|
|
int AubHelperHw<GfxFamily>::getDataHintForPtEntry() const {
|
|
return AubMemDump::DataTypeHintValues::TraceNotype;
|
|
}
|
|
|
|
} // namespace NEO
|