diff --git a/loopy/schedule/device_mapping.py b/loopy/schedule/device_mapping.py index e1b308cc4f6d247dd2dce786cbb990ac4a3f4907..c393fe7c2754fd883dda1e69ff7d64c7ade123bb 100644 --- a/loopy/schedule/device_mapping.py +++ b/loopy/schedule/device_mapping.py @@ -439,8 +439,8 @@ def augment_domain_for_temporary_promotion( domain = domain.set_dim_name( isl.dim_type.set, orig_dim + t_idx, new_iname) if orig_temporary.is_local: - # If the temporary is tagged local, then loads / stores can be done - # in parallel. + # If the temporary is has local scope, then loads / stores can be + # done in parallel. from loopy.kernel.data import AutoFitLocalIndexTag iname_to_tag[new_iname] = AutoFitLocalIndexTag()