mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-06 19:32:25 +08:00
33 lines
765 B
Plaintext
33 lines
765 B
Plaintext
|
|
/*
|
||
|
|
* 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
|