mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-08 22:12:59 +08:00
fix: add scratch ptr in implicit args patching for L0 immediate cmdlists
Related-To: NEO-11874 Signed-off-by: Kamil Kopryk <kamil.kopryk@intel.com>
This commit is contained in:
committed by
Compute-Runtime-Automation
parent
922286633b
commit
880aaee16c
@@ -10,7 +10,18 @@
|
||||
namespace NEO {
|
||||
template <typename Family>
|
||||
template <bool heaplessModeEnabled>
|
||||
void EncodeDispatchKernel<Family>::programInlineDataHeapless(uint8_t *inlineDataPtr, EncodeDispatchKernelArgs &args, CommandContainer &container, uint64_t offsetThreadData) {
|
||||
void EncodeDispatchKernel<Family>::programInlineDataHeapless(uint8_t *inlineDataPtr, EncodeDispatchKernelArgs &args, CommandContainer &container, uint64_t offsetThreadData, uint64_t scratchPtr) {
|
||||
}
|
||||
|
||||
template <typename Family>
|
||||
template <bool heaplessModeEnabled>
|
||||
uint64_t EncodeDispatchKernel<Family>::getScratchAddressForImmediatePatching(CommandContainer &container, EncodeDispatchKernelArgs &args) {
|
||||
return 0u;
|
||||
}
|
||||
|
||||
template <typename Family>
|
||||
template <bool heaplessModeEnabled>
|
||||
void EncodeDispatchKernel<Family>::patchScratchAddressInImplicitArgs(ImplicitArgs &implicitArgs, uint64_t scratchAddress, bool scratchPtrRequired) {
|
||||
}
|
||||
|
||||
} // namespace NEO
|
||||
|
||||
Reference in New Issue
Block a user