2020-03-06 18:09:57 +08:00
|
|
|
/*
|
2022-05-16 22:06:56 +08:00
|
|
|
* Copyright (C) 2020-2022 Intel Corporation
|
2020-03-06 18:09:57 +08:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
extern "C" {
|
|
|
|
|
2020-08-01 09:03:32 +08:00
|
|
|
ZE_APIEXPORT ze_result_t ZE_APICALL
|
2022-05-16 22:06:56 +08:00
|
|
|
zeCommandListAppendBarrierTracing(ze_command_list_handle_t hCommandList,
|
|
|
|
ze_event_handle_t hSignalEvent,
|
|
|
|
uint32_t numWaitEvents,
|
|
|
|
ze_event_handle_t *phWaitEvents);
|
2020-07-29 17:45:54 +08:00
|
|
|
|
2020-08-01 09:03:32 +08:00
|
|
|
ZE_APIEXPORT ze_result_t ZE_APICALL
|
2022-05-16 22:06:56 +08:00
|
|
|
zeCommandListAppendMemoryRangesBarrierTracing(ze_command_list_handle_t hCommandList,
|
|
|
|
uint32_t numRanges,
|
|
|
|
const size_t *pRangeSizes,
|
|
|
|
const void **pRanges,
|
|
|
|
ze_event_handle_t hSignalEvent,
|
|
|
|
uint32_t numWaitEvents,
|
|
|
|
ze_event_handle_t *phWaitEvents);
|
2020-03-06 18:09:57 +08:00
|
|
|
}
|