mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-03 23:03:02 +08:00
28 lines
1.1 KiB
C
28 lines
1.1 KiB
C
/*
|
|
* Copyright (C) 2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
extern "C" {
|
|
|
|
__zedllexport ze_result_t __zecall
|
|
zeCommandListAppendBarrier_Tracing(ze_command_list_handle_t hCommandList,
|
|
ze_event_handle_t hSignalEvent,
|
|
uint32_t numWaitEvents,
|
|
ze_event_handle_t *phWaitEvents);
|
|
__zedllexport ze_result_t __zecall
|
|
zeCommandListAppendMemoryRangesBarrier_Tracing(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);
|
|
__zedllexport ze_result_t __zecall
|
|
zeDeviceSystemBarrier_Tracing(ze_device_handle_t hDevice);
|
|
}
|