71 lines
1.7 KiB
C++
71 lines
1.7 KiB
C++
/*
|
|
* Copyright (C) 2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include <level_zero/zet_api.h>
|
|
|
|
ZE_APIEXPORT ze_result_t ZE_APICALL
|
|
zetDeviceGetDebugProperties(
|
|
zet_device_handle_t hDevice,
|
|
zet_device_debug_properties_t *pDebugProperties) {
|
|
return ZE_RESULT_ERROR_UNSUPPORTED_FEATURE;
|
|
}
|
|
|
|
ZE_APIEXPORT ze_result_t ZE_APICALL
|
|
zetDebugAttach(
|
|
zet_device_handle_t hDevice,
|
|
const zet_debug_config_t *config,
|
|
zet_debug_session_handle_t *phDebug) {
|
|
return ZE_RESULT_ERROR_UNSUPPORTED_FEATURE;
|
|
}
|
|
|
|
ZE_APIEXPORT ze_result_t ZE_APICALL
|
|
zetDebugDetach(
|
|
zet_debug_session_handle_t hDebug) {
|
|
return ZE_RESULT_ERROR_UNSUPPORTED_FEATURE;
|
|
}
|
|
|
|
ZE_APIEXPORT ze_result_t ZE_APICALL
|
|
zetDebugReadEvent(
|
|
zet_debug_session_handle_t hDebug,
|
|
uint64_t timeout,
|
|
zet_debug_event_t *event) {
|
|
return ZE_RESULT_ERROR_UNSUPPORTED_FEATURE;
|
|
}
|
|
|
|
ZE_APIEXPORT ze_result_t ZE_APICALL
|
|
zetDebugInterrupt(
|
|
zet_debug_session_handle_t hDebug,
|
|
ze_device_thread_t thread) {
|
|
return ZE_RESULT_ERROR_UNSUPPORTED_FEATURE;
|
|
}
|
|
|
|
ZE_APIEXPORT ze_result_t ZE_APICALL
|
|
zetDebugResume(
|
|
zet_debug_session_handle_t hDebug,
|
|
ze_device_thread_t thread) {
|
|
return ZE_RESULT_ERROR_UNSUPPORTED_FEATURE;
|
|
}
|
|
|
|
ZE_APIEXPORT ze_result_t ZE_APICALL
|
|
zetDebugReadMemory(
|
|
zet_debug_session_handle_t hDebug,
|
|
ze_device_thread_t thread,
|
|
const zet_debug_memory_space_desc_t *desc,
|
|
size_t size,
|
|
void *buffer) {
|
|
return ZE_RESULT_ERROR_UNSUPPORTED_FEATURE;
|
|
}
|
|
|
|
ZE_APIEXPORT ze_result_t ZE_APICALL
|
|
zetDebugWriteMemory(
|
|
zet_debug_session_handle_t hDebug,
|
|
ze_device_thread_t thread,
|
|
const zet_debug_memory_space_desc_t *desc,
|
|
size_t size,
|
|
const void *buffer) {
|
|
return ZE_RESULT_ERROR_UNSUPPORTED_FEATURE;
|
|
} |