Revert "fix: use stateless kernel when append memory fill on XeHpc and later"

This reverts commit e233cf5127.

Signed-off-by: Compute-Runtime-Validation <compute-runtime-validation@intel.com>
This commit is contained in:
Compute-Runtime-Validation
2024-07-26 04:32:35 +02:00
committed by Compute-Runtime-Automation
parent e78ad8ed8e
commit d3f4b5b280
3 changed files with 1 additions and 34 deletions

View File

@@ -1929,7 +1929,7 @@ ze_result_t CommandListCoreFamily<gfxCoreFamily>::appendMemoryFill(void *ptr,
ze_event_handle_t hSignalEvent,
uint32_t numWaitEvents,
ze_event_handle_t *phWaitEvents, bool relaxedOrderingDispatch) {
bool isStateless = (this->cmdListHeapAddressModel == NEO::HeapAddressModel::globalStateless) || this->isStatelessBuiltinsEnabled();
bool isStateless = this->cmdListHeapAddressModel == NEO::HeapAddressModel::globalStateless;
const bool isHeapless = this->isHeaplessModeEnabled();
NEO::Device *neoDevice = device->getNEODevice();