Skip to content

Commit

Permalink
Added isValid flag for teardown detection
Browse files Browse the repository at this point in the history
Signed-off-by: Neil R. Spruit <neil.r.spruit@intel.com>
  • Loading branch information
nrspruit committed Nov 22, 2024
1 parent 771fe88 commit 3a85916
Show file tree
Hide file tree
Showing 10 changed files with 13 additions and 10 deletions.
2 changes: 1 addition & 1 deletion include/ze.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
SPDX-License-Identifier: MIT
@file ze.py
@version v1.12-r1.11.11
@version v1.12-r1.11.12
"""
import platform
Expand Down
2 changes: 1 addition & 1 deletion include/ze_api.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* SPDX-License-Identifier: MIT
*
* @file ze_api.h
* @version v1.12-r1.11.11
* @version v1.12-r1.11.12
*
*/
#ifndef _ZE_API_H
Expand Down
3 changes: 2 additions & 1 deletion include/ze_ddi.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* SPDX-License-Identifier: MIT
*
* @file ze_ddi.h
* @version v1.12-r1.11.11
* @version v1.12-r1.11.12
*
*/
#ifndef _ZE_DDI_H
Expand Down Expand Up @@ -2579,6 +2579,7 @@ typedef struct _ze_dditable_t
typedef struct _ze_dditable_driver_t
{
ze_api_version_t version;
uint8_t isValidFlag;
ze_rtas_builder_exp_dditable_t * RTASBuilderExp;
ze_rtas_parallel_operation_exp_dditable_t * RTASParallelOperationExp;
ze_global_dditable_t * Global;
Expand Down
2 changes: 1 addition & 1 deletion include/ze_ddi_common.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* SPDX-License-Identifier: MIT
*
* @file ze_ddi_common.h
* @version v1.12-r1.11.11
* @version v1.12-r1.11.12
*
*/
#ifndef _ZE_DDI_COMMON_H
Expand Down
2 changes: 1 addition & 1 deletion include/zes.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
SPDX-License-Identifier: MIT
@file zes.py
@version v1.12-r1.11.11
@version v1.12-r1.11.12
"""
import platform
Expand Down
2 changes: 1 addition & 1 deletion include/zes_api.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* SPDX-License-Identifier: MIT
*
* @file zes_api.h
* @version v1.12-r1.11.11
* @version v1.12-r1.11.12
*
*/
#ifndef _ZES_API_H
Expand Down
3 changes: 2 additions & 1 deletion include/zes_ddi.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* SPDX-License-Identifier: MIT
*
* @file zes_ddi.h
* @version v1.12-r1.11.11
* @version v1.12-r1.11.12
*
*/
#ifndef _ZES_DDI_H
Expand Down Expand Up @@ -1987,6 +1987,7 @@ typedef struct _zes_dditable_t
typedef struct _zes_dditable_driver_t
{
ze_api_version_t version;
uint8_t isValidFlag;
zes_global_dditable_t * Global;
zes_device_dditable_t * Device;
zes_device_exp_dditable_t * DeviceExp;
Expand Down
2 changes: 1 addition & 1 deletion include/zet.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
SPDX-License-Identifier: MIT
@file zet.py
@version v1.12-r1.11.11
@version v1.12-r1.11.12
"""
import platform
Expand Down
2 changes: 1 addition & 1 deletion include/zet_api.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* SPDX-License-Identifier: MIT
*
* @file zet_api.h
* @version v1.12-r1.11.11
* @version v1.12-r1.11.12
*
*/
#ifndef _ZET_API_H
Expand Down
3 changes: 2 additions & 1 deletion include/zet_ddi.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* SPDX-License-Identifier: MIT
*
* @file zet_ddi.h
* @version v1.12-r1.11.11
* @version v1.12-r1.11.12
*
*/
#ifndef _ZET_DDI_H
Expand Down Expand Up @@ -1170,6 +1170,7 @@ typedef struct _zet_dditable_t
typedef struct _zet_dditable_driver_t
{
ze_api_version_t version;
uint8_t isValidFlag;
zet_metric_programmable_exp_dditable_t * MetricProgrammableExp;
zet_metric_tracer_exp_dditable_t * MetricTracerExp;
zet_metric_decoder_exp_dditable_t * MetricDecoderExp;
Expand Down

0 comments on commit 3a85916

Please sign in to comment.