mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-08 05:56:36 +08:00
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:
committed by
Compute-Runtime-Automation
parent
6c2ddf1120
commit
1c42b26f41
@@ -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,
|
||||
|
||||
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user