{% for func_key in func_data.keys() %} {% set loop1 = loop %}
Function name: {{func_data[func_key]['funcname']}}
in file: {{func_data[func_key]['filename']}}
with signature: {{func_key[1]|e}}
show numba IR
{% for num, line in func_data[func_key]['python_lines'] %}
{{num}}:
{{func_data[func_key]['python_indent'][num]}}{{line|e}}
{% for ir_line, ir_line_type in func_data[func_key]['ir_lines'][num] %}
{{func_data[func_key]['python_indent'][num]}} {{func_data[func_key]['ir_indent'][num][loop.index0]}}{{ir_line|e}}
{{ir_line_type}}
{% endfor %} {% endfor %}
{% endfor %}