Files
compute-runtime/level_zero/tools/source/tracing/tracing_image_imp.h
Brandon Fliflet 27f4bce42f Initial support for oneAPI Level Zero
Change-Id: I221df8427b1844237a4d9d900c58512706b0be0f
2020-03-06 14:53:29 +01:00

25 lines
611 B
C

/*
* Copyright (C) 2020 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#pragma once
extern "C" {
__zedllexport ze_result_t __zecall
zeImageGetProperties_Tracing(ze_device_handle_t hDevice,
const ze_image_desc_t *desc,
ze_image_properties_t *pImageProperties);
__zedllexport ze_result_t __zecall
zeImageCreate_Tracing(ze_device_handle_t hDevice,
const ze_image_desc_t *desc,
ze_image_handle_t *phImage);
__zedllexport ze_result_t __zecall
zeImageDestroy_Tracing(ze_image_handle_t hImage);
}