mirror of
https://github.com/intel/compute-runtime.git
synced 2025-09-15 13:01:45 +08:00
33 lines
776 B
C++
33 lines
776 B
C++
/*
|
|
* Copyright (C) 2019-2021 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "shared/source/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
|