feature: is48bResourceNeededForRayTracing specialization for rt encoder

Related-to: NEO-10074

Signed-off-by: Damian Tomczak <damian.tomczak@intel.com>
This commit is contained in:
Damian Tomczak
2024-12-02 15:44:39 +00:00
committed by Compute-Runtime-Automation
parent a6ad9caf6c
commit 98331e7d63
5 changed files with 19 additions and 1 deletions

View File

@@ -508,6 +508,11 @@ uint32_t ProductHelperHw<IGFX_UNKNOWN>::getCacheLineSize() const {
return 0x40;
}
template <>
bool ProductHelperHw<IGFX_UNKNOWN>::is48bResourceNeededForRayTracing() const {
return true;
}
} // namespace NEO
#include "shared/source/os_interface/product_helper.inl"