mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-24 12:23:05 +08:00
fix: disable experimental l0 ipc methods
Related-To: NEO-6893 Signed-off-by: Dominik Dabek <dominik.dabek@intel.com>
This commit is contained in:
committed by
Compute-Runtime-Automation
parent
dba2d369fa
commit
449b82003d
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (C) 2020-2023 Intel Corporation
|
||||
* Copyright (C) 2020-2025 Intel Corporation
|
||||
*
|
||||
* SPDX-License-Identifier: MIT
|
||||
*
|
||||
@@ -234,19 +234,13 @@ ZE_APIEXPORT ze_result_t ZE_APICALL zeMemGetIpcHandleFromFileDescriptorExp(
|
||||
ze_context_handle_t hContext,
|
||||
uint64_t handle,
|
||||
ze_ipc_mem_handle_t *pIpcHandle) {
|
||||
return L0::zeMemGetIpcHandleFromFileDescriptorExp(
|
||||
hContext,
|
||||
handle,
|
||||
pIpcHandle);
|
||||
return ZE_RESULT_ERROR_UNSUPPORTED_FEATURE;
|
||||
}
|
||||
|
||||
ZE_APIEXPORT ze_result_t ZE_APICALL zeMemGetFileDescriptorFromIpcHandleExp(
|
||||
ze_context_handle_t hContext,
|
||||
ze_ipc_mem_handle_t ipcHandle,
|
||||
uint64_t *pHandle) {
|
||||
return L0::zeMemGetFileDescriptorFromIpcHandleExp(
|
||||
hContext,
|
||||
ipcHandle,
|
||||
pHandle);
|
||||
return ZE_RESULT_ERROR_UNSUPPORTED_FEATURE;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user