2020-03-06 11:09:57 +01:00
|
|
|
/*
|
2021-05-16 20:51:16 +02:00
|
|
|
* Copyright (C) 2020-2021 Intel Corporation
|
2020-03-06 11:09:57 +01:00
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
extern "C" {
|
|
|
|
|
|
2020-07-31 18:03:32 -07:00
|
|
|
ZE_APIEXPORT ze_result_t ZE_APICALL
|
2020-03-06 11:09:57 +01:00
|
|
|
zeDriverGet_Tracing(uint32_t *pCount,
|
|
|
|
|
ze_driver_handle_t *phDrivers);
|
|
|
|
|
|
2020-07-31 18:03:32 -07:00
|
|
|
ZE_APIEXPORT ze_result_t ZE_APICALL
|
2020-03-06 11:09:57 +01:00
|
|
|
zeDriverGetProperties_Tracing(ze_driver_handle_t hDriver,
|
|
|
|
|
ze_driver_properties_t *properties);
|
|
|
|
|
|
2020-07-31 18:03:32 -07:00
|
|
|
ZE_APIEXPORT ze_result_t ZE_APICALL
|
2020-03-06 11:09:57 +01:00
|
|
|
zeDriverGetApiVersion_Tracing(ze_driver_handle_t hDrivers,
|
|
|
|
|
ze_api_version_t *version);
|
|
|
|
|
|
2020-07-31 18:03:32 -07:00
|
|
|
ZE_APIEXPORT ze_result_t ZE_APICALL
|
2020-07-29 02:45:54 -07:00
|
|
|
zeDriverGetIpcProperties_Tracing(ze_driver_handle_t hDriver,
|
|
|
|
|
ze_driver_ipc_properties_t *pIpcProperties);
|
2020-03-06 11:09:57 +01:00
|
|
|
|
2020-07-31 18:03:32 -07:00
|
|
|
ZE_APIEXPORT ze_result_t ZE_APICALL
|
2020-07-29 02:45:54 -07:00
|
|
|
zeDriverGetExtensionProperties_Tracing(ze_driver_handle_t hDriver,
|
|
|
|
|
uint32_t *pCount,
|
|
|
|
|
ze_driver_extension_properties_t *pExtensionProperties);
|
2020-03-06 11:09:57 +01:00
|
|
|
}
|