fix: add missing L0 API entries in global driver dispatch

all ddi entries related to exposed L0 API version should be set to valid ptr

Related-To: NEO-13121
Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
This commit is contained in:
Mateusz Jablonski
2025-04-30 11:04:16 +00:00
committed by Compute-Runtime-Automation
parent 6c2ddf1120
commit 1c42b26f41
3 changed files with 19 additions and 7 deletions

View File

@@ -96,6 +96,12 @@ ze_result_t zeCommandListIsImmediate(
return L0::CommandList::fromHandle(hCommandList)->isImmediate(pIsImmediate);
}
ze_result_t zeCommandListCreateCloneExp(
ze_command_list_handle_t hCommandList,
ze_command_list_handle_t *phClonedCommandList) {
return ZE_RESULT_ERROR_UNSUPPORTED_FEATURE;
}
ze_result_t zeCommandListImmediateAppendCommandListsExp(
ze_command_list_handle_t hCommandListImmediate,
uint32_t numCommandLists,

View File

@@ -1,5 +1,5 @@
/*
* Copyright (C) 2020-2024 Intel Corporation
* Copyright (C) 2020-2025 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
@@ -109,6 +109,12 @@ ze_result_t zeEventQueryKernelTimestampsExt(
return L0::Event::fromHandle(hEvent)->queryKernelTimestampsExt(L0::Device::fromHandle(hDevice), pCount, pResults);
}
ze_result_t zeEventPoolPutIpcHandle(
ze_context_handle_t hContext,
ze_ipc_event_pool_handle_t hIpc) {
return ZE_RESULT_ERROR_UNSUPPORTED_FEATURE;
}
ze_result_t zeEventPoolGetContextHandle(
ze_event_pool_handle_t hEventPool,
ze_context_handle_t *phContext) {