From b393ede8c8e98eeb2bf83e3ed4a767d09d237a31 Mon Sep 17 00:00:00 2001 From: Lionel Landwerlin Date: Thu, 27 Jun 2024 15:01:14 +0300 Subject: [PATCH] intel/ds: remove duplicate arguments MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Lionel Landwerlin Reviewed-by: José Roberto de Souza Part-of: --- src/intel/ds/intel_tracepoints.py | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/intel/ds/intel_tracepoints.py b/src/intel/ds/intel_tracepoints.py index ac49f0e3459..8e090653104 100644 --- a/src/intel/ds/intel_tracepoints.py +++ b/src/intel/ds/intel_tracepoints.py @@ -116,14 +116,14 @@ def define_tracepoints(args): # Blorp operations, Anv & Iris begin_end_tp('blorp', - tp_args=[Arg(type='enum blorp_op', name='op', var='op', c_format='%s', to_prim_type='blorp_op_to_name({})'), - Arg(type='uint32_t', name='width', var='width', c_format='%u'), - Arg(type='uint32_t', name='height', var='height', c_format='%u'), - Arg(type='uint32_t', name='samples', var='samples', c_format='%u'), - Arg(type='enum blorp_shader_pipeline', name='blorp_pipe', var='shader_pipe', c_format='%s', to_prim_type='blorp_shader_pipeline_to_name({})'), - Arg(type='enum isl_format', name='dst_fmt', var='dst_fmt', c_format='%s', to_prim_type='isl_format_get_short_name({})'), - Arg(type='enum isl_format', name='src_fmt', var='src_fmt', c_format='%s', to_prim_type='isl_format_get_short_name({})'), - Arg(type='uint8_t', name='predicated', var='predicated', c_format='%hhu'), + tp_args=[Arg(type='enum blorp_op', var='op', c_format='%s', to_prim_type='blorp_op_to_name({})'), + Arg(type='uint32_t', var='width', c_format='%u'), + Arg(type='uint32_t', var='height', c_format='%u'), + Arg(type='uint32_t', var='samples', c_format='%u'), + Arg(type='enum blorp_shader_pipeline', var='shader_pipe', c_format='%s', to_prim_type='blorp_shader_pipeline_to_name({})'), + Arg(type='enum isl_format', var='dst_fmt', c_format='%s', to_prim_type='isl_format_get_short_name({})'), + Arg(type='enum isl_format', var='src_fmt', c_format='%s', to_prim_type='isl_format_get_short_name({})'), + Arg(type='uint8_t', var='predicated', c_format='%hhu'), ]) # vkCmdWriteBufferMarker*, only for Anv