From a0d26fb39eb7e7a54084888d56ca034fd17ff889 Mon Sep 17 00:00:00 2001 From: Matt Wala Date: Thu, 9 Jun 2016 11:16:00 -0500 Subject: [PATCH] Fix comment. --- loopy/schedule/device_mapping.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/loopy/schedule/device_mapping.py b/loopy/schedule/device_mapping.py index e1b308cc4..c393fe7c2 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() -- GitLab