-
Notifications
You must be signed in to change notification settings - Fork 64
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
bugfixes for multiple groups and scalar variable transforms #542
Changes from 3 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -1535,6 +1535,16 @@ def add_var_transform(self, var, compat_obj, vert_dim): | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
# If needed, modify vertical dimension for vertical orientation flipping | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
_, vdim = find_vertical_dimension(var.get_dimensions()) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if vdim >= 0: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
vdim_name = vert_dim.split(':')[-1] | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
group_vvar = self.__group.call_list.find_variable(vdim_name) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
vname = group_vvar.get_prop_value('local_name') | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
lindices[vdim] = '1:'+vname | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
rindices[vdim] = '1:'+vname | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if compat_obj.has_vert_transforms: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
rindices[vdim] = vname+':1:-1' | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
# end if | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
# end if | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Do vertical dimensions have to begin at
Suggested change
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. smart! changed. |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
vdim_name = vert_dim.split(':')[-1] | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Isn't this section (1548 - 1554) a repeat of the stuff that was moved inside the There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. good catch - the only code that definitely needed to be moved inside the if block was |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
group_vvar = self.__group.call_list.find_variable(vdim_name) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
vname = group_vvar.get_prop_value('local_name') | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -1614,20 +1624,25 @@ def write(self, outfile, errcode, errmsg, indent): | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
for (var, internal_var) in self.__var_debug_checks: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
stmt = self.write_var_debug_check(var, internal_var, cldicts, outfile, errcode, errmsg, indent+1) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
# Write any reverse (pre-Scheme) transforms. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
outfile.write('! Compute reverse (pre-scheme) transforms', indent+1) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if len(self.__reverse_transforms) > 0: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
outfile.write('! Compute reverse (pre-scheme) transforms', indent+1) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This could be:
Suggested change
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. changed |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
# end if | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
for (dummy, var, rindices, lindices, compat_obj) in self.__reverse_transforms: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
tstmt = self.write_var_transform(var, dummy, rindices, lindices, compat_obj, outfile, indent+1, False) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
# end for | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
# Write the scheme call. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
stmt = 'call {}({})' | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
outfile.write('',indent+1) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
outfile.write('! Call scheme', indent+1) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
outfile.write(stmt.format(self.subroutine_name, my_args), indent+1) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
# Write any forward (post-Scheme) transforms. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
outfile.write('',indent+1) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
outfile.write('! Compute forward (post-scheme) transforms', indent+1) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if len(self.__forward_transforms) > 0: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
outfile.write('! Compute forward (post-scheme) transforms', indent+1) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Also here:
Suggested change
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. changed. |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
# end if | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
for (var, dummy, lindices, rindices, compat_obj) in self.__forward_transforms: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
tstmt = self.write_var_transform(var, dummy, rindices, lindices, compat_obj, outfile, indent+1, True) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
# | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
# end for | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
outfile.write('', indent) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
outfile.write('end if', indent) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -1724,6 +1739,10 @@ def analyze(self, phase, group, scheme_library, suite_vars, level): | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
local_dim = group.call_list.find_variable(standard_name=dim_name, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
any_scope=False) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
# end if | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
# If not found, check the suite level | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if local_dim is None: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
local_dim = group.suite.find_variable(standard_name=dim_name) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
# end if | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if local_dim is None: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
emsg = 'No variable found for vertical loop dimension {}' | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
raise ParseInternalError(emsg.format(self._dim_name)) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What does the
sorted(enumerate(spart_list))
buy here? What is wrong with just going through thespart_list
?If it is some sort new of 'best practice', why here and line 533 but not line 566?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
good question! I had added "sorted" to line 533 on a different branch to keep the use statements in a consistent order, which broke when you use multiple groups (thereby invalidating the whole point of the change of course), so that line became "sorted(enumerate(" and then I just migrated the full change to the other loop for... reasons that made sense at the time.
I'll revert these changes here and will bring in the sorted changes (there are are more than just this one) in a future PR.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
reverted