Revert "fix: set correct bindless offsets for L0 bindless images extension wi...

This reverts commit b048d0e557.

Signed-off-by: Compute-Runtime-Validation <compute-runtime-validation@intel.com>
This commit is contained in:
Compute-Runtime-Validation
2025-05-09 08:25:47 +02:00
committed by Compute-Runtime-Automation
parent 1d1414febc
commit 9dc734ce44
5 changed files with 25 additions and 63 deletions

View File

@@ -256,10 +256,8 @@ ze_result_t ImageImp::getDeviceOffset(uint64_t *deviceOffset) {
return ZE_RESULT_ERROR_NOT_AVAILABLE;
}
auto bindlessSlot = this->getBindlessSlot();
DEBUG_BREAK_IF(bindlessSlot == nullptr);
*deviceOffset = bindlessSlot->surfaceStateOffset;
DEBUG_BREAK_IF(this->getBindlessSlot() == nullptr);
*deviceOffset = this->getBindlessSlot()->surfaceStateOffset;
return ZE_RESULT_SUCCESS;
}