We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 25c49bc commit dba5c7fCopy full SHA for dba5c7f
loopy/codegen/loop.py
@@ -302,8 +302,8 @@ def set_up_hw_parallel_loops(
302
other_iname for other_iname in inames_in_subkernel
303
if (kernel.iname_tags_of_type(other_iname, UniqueInameTag)
304
and other_iname != iname
305
- and any(_tag.key == tag.key
306
- for _tag in kernel.iname_tags_of_type(
+ and any(tag_.key == tag.key
+ for tag_ in kernel.iname_tags_of_type(
307
other_iname, InameImplementationTag)))]
308
309
# {{{ 'implement' hardware axis boundaries
0 commit comments