2020-03-06 11:09:57 +01:00
|
|
|
/*
|
2022-05-16 14:06:56 +00:00
|
|
|
* Copyright (C) 2020-2022 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
|
2022-05-16 14:06:56 +00:00
|
|
|
zeDriverGetTracing(uint32_t *pCount,
|
|
|
|
|
ze_driver_handle_t *phDrivers);
|
2020-03-06 11:09:57 +01:00
|
|
|
|
2020-07-31 18:03:32 -07:00
|
|
|
ZE_APIEXPORT ze_result_t ZE_APICALL
|
2022-05-16 14:06:56 +00:00
|
|
|
zeDriverGetPropertiesTracing(ze_driver_handle_t hDriver,
|
|
|
|
|
ze_driver_properties_t *properties);
|
2020-03-06 11:09:57 +01:00
|
|
|
|
2020-07-31 18:03:32 -07:00
|
|
|
ZE_APIEXPORT ze_result_t ZE_APICALL
|
2022-05-16 14:06:56 +00:00
|
|
|
zeDriverGetApiVersionTracing(ze_driver_handle_t hDrivers,
|
|
|
|
|
ze_api_version_t *version);
|
2020-03-06 11:09:57 +01:00
|
|
|
|
2020-07-31 18:03:32 -07:00
|
|
|
ZE_APIEXPORT ze_result_t ZE_APICALL
|
2022-05-16 14:06:56 +00:00
|
|
|
zeDriverGetIpcPropertiesTracing(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
|
2022-05-16 14:06:56 +00:00
|
|
|
zeDriverGetExtensionPropertiesTracing(ze_driver_handle_t hDriver,
|
|
|
|
|
uint32_t *pCount,
|
|
|
|
|
ze_driver_extension_properties_t *pExtensionProperties);
|
2020-03-06 11:09:57 +01:00
|
|
|
}
|