Implement fence creation flag

Related-To: NEO-6242

Signed-off-by: Zbigniew Zdanowicz <zbigniew.zdanowicz@intel.com>
This commit is contained in:
Zbigniew Zdanowicz
2022-03-17 09:43:17 +00:00
committed by Compute-Runtime-Automation
parent bb753784cc
commit e4d8dfcdd9
6 changed files with 54 additions and 21 deletions

View File

@@ -1,5 +1,5 @@
/*
* Copyright (C) 2020-2021 Intel Corporation
* Copyright (C) 2020-2022 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
@@ -38,5 +38,5 @@ zeFenceQueryStatus(
ZE_APIEXPORT ze_result_t ZE_APICALL
zeFenceReset(
ze_fence_handle_t hFence) {
return L0::Fence::fromHandle(hFence)->reset();
return L0::Fence::fromHandle(hFence)->reset(false);
}