mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-03 14:55:24 +08:00
fix: extend AIL for buffer pooling to ARL
Signed-off-by: Dominik Dabek <dominik.dabek@intel.com>
This commit is contained in:
committed by
Compute-Runtime-Automation
parent
f168a4ab61
commit
5f2dd41f8e
@@ -36,6 +36,12 @@ void AILConfigurationHw<IGFX_ARROWLAKE>::applyExt(RuntimeCapabilityTable &runtim
|
||||
}
|
||||
}
|
||||
|
||||
template <>
|
||||
bool AILConfigurationHw<IGFX_ARROWLAKE>::isBufferPoolEnabled() {
|
||||
auto iterator = applicationsBufferPoolDisabledXe.find(processName);
|
||||
return iterator == applicationsBufferPoolDisabledXe.end();
|
||||
}
|
||||
|
||||
template class AILConfigurationHw<IGFX_ARROWLAKE>;
|
||||
|
||||
} // namespace NEO
|
||||
|
||||
@@ -66,8 +66,8 @@ inline void AILConfigurationHw<IGFX_DG2>::applyExt(RuntimeCapabilityTable &runti
|
||||
|
||||
template <>
|
||||
bool AILConfigurationHw<IGFX_DG2>::isBufferPoolEnabled() {
|
||||
auto iterator = applicationsBufferPoolDisabledDg2.find(processName);
|
||||
return iterator == applicationsBufferPoolDisabledDg2.end();
|
||||
auto iterator = applicationsBufferPoolDisabledXe.find(processName);
|
||||
return iterator == applicationsBufferPoolDisabledXe.end();
|
||||
}
|
||||
|
||||
template <>
|
||||
|
||||
Reference in New Issue
Block a user