mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-03 23:03:02 +08:00
Dates corrected in copyright headers to reflect original publication date (2018 for OpenCL, 2020 for Level Zero). Signed-off-by: lgotszal <lukasz.gotszald@intel.com>
50 lines
1.6 KiB
C
50 lines
1.6 KiB
C
/*
|
|
* Copyright (C) 2020-2021 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
extern "C" {
|
|
|
|
ZE_APIEXPORT ze_result_t ZE_APICALL
|
|
zeContextCreate_Tracing(ze_driver_handle_t hDriver,
|
|
const ze_context_desc_t *desc,
|
|
ze_context_handle_t *phContext);
|
|
|
|
ZE_APIEXPORT ze_result_t ZE_APICALL
|
|
zeContextDestroy_Tracing(ze_context_handle_t hContext);
|
|
|
|
ZE_APIEXPORT ze_result_t ZE_APICALL
|
|
zeContextGetStatus_Tracing(ze_context_handle_t hContext);
|
|
|
|
ZE_APIEXPORT ze_result_t ZE_APICALL
|
|
zeContextSystemBarrier_Tracing(ze_context_handle_t hContext,
|
|
ze_device_handle_t hDevice);
|
|
|
|
ZE_APIEXPORT ze_result_t ZE_APICALL
|
|
zeContextMakeMemoryResident_Tracing(ze_context_handle_t hContext,
|
|
ze_device_handle_t hDevice,
|
|
void *ptr,
|
|
size_t size);
|
|
|
|
ZE_APIEXPORT ze_result_t ZE_APICALL
|
|
zeContextEvictMemory_Tracing(ze_context_handle_t hContext,
|
|
ze_device_handle_t hDevice,
|
|
void *ptr,
|
|
size_t size);
|
|
|
|
ZE_APIEXPORT ze_result_t ZE_APICALL
|
|
zeContextMakeImageResident_Tracing(ze_context_handle_t hContext,
|
|
ze_device_handle_t hDevice,
|
|
ze_image_handle_t hImage);
|
|
|
|
ZE_APIEXPORT ze_result_t ZE_APICALL
|
|
zeContextEvictImage_Tracing(ze_context_handle_t hContext,
|
|
ze_device_handle_t hDevice,
|
|
ze_image_handle_t hImage);
|
|
|
|
} // extern "C"
|